diff --git a/.github/dependencies.txt b/.github/dependencies.txt index e34e573765..d6e2b1ac7b 100644 --- a/.github/dependencies.txt +++ b/.github/dependencies.txt @@ -35,6 +35,7 @@ libxslt-dev nodejs npm nss +poppler-utils postgis postgresql postgresql-dev diff --git a/.github/workflows/build_images.yml b/.github/workflows/build_images.yml index bf8cbe70f2..77629c0a4b 100644 --- a/.github/workflows/build_images.yml +++ b/.github/workflows/build_images.yml @@ -41,7 +41,7 @@ jobs: trivy_skip_files: /app/config/key.pem,/app/docker/sftp/ssh_host_ed25519_key,/app/docker/sftp/ssh_host_rsa_key,/app/spec/fixtures/files/health/secret.key build-args: | BUILD_TAG=3.1.6-alpine3.20 - BUNDLER_VERSION=2.5.17 + BUNDLER_VERSION=2.5.23 tags: | type=sha,prefix=githash- type=ref,event=branch,prefix=branch- diff --git a/.github/workflows/container_setup/action.yml b/.github/workflows/container_setup/action.yml index 0fda26f3f3..530e12f3f8 100644 --- a/.github/workflows/container_setup/action.yml +++ b/.github/workflows/container_setup/action.yml @@ -58,7 +58,7 @@ runs: - name: Install gems shell: bash run: | - gem install bundler --version=2.5.17 + gem install bundler --version=2.5.23 bundle config set --local without 'production staging' bundle install --jobs 10 --retry 3 diff --git a/Gemfile b/Gemfile index 21a3866136..0dc361f417 100644 --- a/Gemfile +++ b/Gemfile @@ -175,7 +175,7 @@ gem 'rubyXL', require: false gem 'soundex', require: false # for HMIS 6.11 + exports that use SHA-256 of soundex # PDF Exports -gem 'combine_pdf' +gem 'pdfunite' gem 'grover' gem 'whenever', require: false diff --git a/Gemfile.lock b/Gemfile.lock index a8a9ff3fec..5f4c933840 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -713,6 +713,7 @@ GEM parser (3.3.5.0) ast (~> 2.4.1) racc + pdfunite (0.6.0) pg (1.5.6) pghero (3.6.1) activerecord (>= 6.1) @@ -987,7 +988,7 @@ GEM net-ssh (>= 2.8.0) ssrf_filter (1.0.8) stackprof (0.2.26) - stringio (3.1.1) + stringio (3.1.2) strong_migrations (1.8.0) activerecord (>= 5.2) sync (0.5.0) @@ -1137,7 +1138,6 @@ DEPENDENCIES census_api! charlock_holmes coffee-rails - combine_pdf composite_primary_keys! cuprite curb @@ -1215,6 +1215,7 @@ DEPENDENCIES paper_trail parallel paranoia (~> 2.0) + pdfunite pg pg_fixtures! pghero diff --git a/app/controllers/admin/talentlms_controller.rb b/app/controllers/admin/talentlms_controller.rb index c6bb884ff8..ea8f98fd1b 100644 --- a/app/controllers/admin/talentlms_controller.rb +++ b/app/controllers/admin/talentlms_controller.rb @@ -59,6 +59,7 @@ def site_config_scope def site_config_params params.require(:grda_warehouse_config).permit( :number_lms_courses_required, + :default_lms_email_to_warehouse_email, ) end @@ -67,6 +68,7 @@ def config_params :subdomain, :api_key, :create_new_accounts, + :allow_automatic_redirect_to_course, ) end end diff --git a/app/controllers/concerns/health_careplan.rb b/app/controllers/concerns/health_careplan.rb index 85fc3c084d..6964380487 100644 --- a/app/controllers/concerns/health_careplan.rb +++ b/app/controllers/concerns/health_careplan.rb @@ -62,7 +62,7 @@ def careplan_pdf_coversheet wait_until: 'networkidle0', print_background: true, } - CombinePDF.parse(Grover.new(wrap_in_html(coversheet), **grover_options).to_pdf, allow_optional_content: true) + PdfGenerator.merge_inline_pdfs(Grover.new(wrap_in_html(coversheet), **grover_options).to_pdf) end def careplan_pdf_full @@ -99,7 +99,7 @@ def careplan_pdf_full wait_until: 'networkidle0', print_background: true, } - CombinePDF.parse(Grover.new(wrap_in_html(full_careplan), **grover_options).to_pdf, allow_optional_content: true) + PdfGenerator.merge_inline_pdfs(Grover.new(wrap_in_html(full_careplan), **grover_options).to_pdf) end def careplan_pdf_pctp @@ -138,7 +138,7 @@ def careplan_pdf_pctp print_background: true, } - CombinePDF.parse(Grover.new(wrap_in_html(pctp), **grover_options).to_pdf, allow_optional_content: true) + PdfGenerator.merge_inline_pdfs(Grover.new(wrap_in_html(pctp), **grover_options).to_pdf) end private def wrap_in_html(content) @@ -154,7 +154,7 @@ def careplan_combine_pdf_object # If we already have a document with a signature, use that to try and avoid massive duplication if (health_file_id = @careplan.most_appropriate_pdf_id) if (health_file = Health::HealthFile.find(health_file_id)) - return CombinePDF.parse(health_file.content, allow_optional_content: true) + return PdfGenerator.merge_inline_pdfs(health_file.content) end end @@ -168,7 +168,7 @@ def careplan_combine_pdf_object end @cha = @patient.comprehensive_health_assessments.recent.first - pdf = CombinePDF.new + pdf = [] pdf << careplan_pdf_coversheet @@ -188,10 +188,10 @@ def careplan_combine_pdf_object pdf << careplan_pdf_full - pdf << CombinePDF.parse(@careplan.health_file.content, allow_optional_content: true) if @careplan.health_file.present? - pdf << CombinePDF.parse(@cha.health_file.content, allow_optional_content: true) if @cha.present? && @cha.health_file.present? && @cha.health_file.content_type == 'application/pdf' - pdf << CombinePDF.parse(@form.health_file.content, allow_optional_content: true) if @form.present? && @form.is_a?(Health::SelfSufficiencyMatrixForm) && @form.health_file.present? - pdf + pdf << PdfGenerator.merge_inline_pdfs(@careplan.health_file.content) if @careplan.health_file.present? + pdf << PdfGenerator.merge_inline_pdfs(@cha.health_file.content) if @cha.present? && @cha.health_file.present? && @cha.health_file.content_type == 'application/pdf' + pdf << PdfGenerator.merge_inline_pdfs(@form.health_file.content) if @form.present? && @form.is_a?(Health::SelfSufficiencyMatrixForm) && @form.health_file.present? + PdfGenerator.merge_inline_pdfs(pdf) end end end diff --git a/app/controllers/health/aco_signature_requests_controller.rb b/app/controllers/health/aco_signature_requests_controller.rb index cfd2aeae7d..1c209acd87 100644 --- a/app/controllers/health/aco_signature_requests_controller.rb +++ b/app/controllers/health/aco_signature_requests_controller.rb @@ -42,7 +42,7 @@ def edit def download_careplan pdf = careplan_combine_pdf_object file_name = 'care_plan' - send_data pdf.to_pdf, filename: "#{file_name}.pdf", type: 'application/pdf' + send_data pdf, filename: "#{file_name}.pdf", type: 'application/pdf' end # Build and send a PCP signing request and team member based on the values submitted diff --git a/app/controllers/health/careplans_controller.rb b/app/controllers/health/careplans_controller.rb index 26b93ea1fb..722656c816 100644 --- a/app/controllers/health/careplans_controller.rb +++ b/app/controllers/health/careplans_controller.rb @@ -58,7 +58,7 @@ def index def show pdf = careplan_combine_pdf_object file_name = "care_plan_#{@careplan.updated_at.to_fs(:db)}" - send_data pdf.to_pdf, filename: "#{file_name}.pdf", type: 'application/pdf' + send_data pdf, filename: "#{file_name}.pdf", type: 'application/pdf' end def edit @@ -119,7 +119,7 @@ def update def coversheet pdf = careplan_pdf_coversheet file_name = "care_plan_coversheet_#{@careplan.updated_at.to_fs(:db)}" - send_data pdf.to_pdf, filename: "#{file_name}.pdf", type: 'application/pdf' + send_data pdf, filename: "#{file_name}.pdf", type: 'application/pdf' end def pctp @@ -127,7 +127,7 @@ def pctp pdf = careplan_pdf_coversheet pdf << careplan_pdf_pctp file_name = "care_plan_pctp_#{@careplan.updated_at.to_fs(:db)}" - send_data pdf.to_pdf, filename: "#{file_name}.pdf", type: 'application/pdf' + send_data pdf, filename: "#{file_name}.pdf", type: 'application/pdf' end def form_url diff --git a/app/controllers/user_training_controller.rb b/app/controllers/user_training_controller.rb index c19fed8c55..12b8da6b50 100644 --- a/app/controllers/user_training_controller.rb +++ b/app/controllers/user_training_controller.rb @@ -61,27 +61,26 @@ def index end course_url = lms.course_url(config, course_id, redirect_url, logout_talentlms_url) - course_redirects << course_url + course_redirects << { course: course, url: course_url } configs_with_required_courses << config end end account_exists_in_all_configs = config_logins.values.all?(true) - number_configs_with_courses_to_complete = configs_with_required_courses.uniq.count - # If we only have one config with trainings required, send the user directly to the training portal - if course_redirects.present? && number_configs_with_courses_to_complete == 1 + # If the user only has one required training course to complete, and that course's config + # allows automatic redirects, send them directly to the training portal + if course_redirects.present? && course_redirects.count == 1 && course_redirects.first[:course].config.allow_automatic_redirect_to_course # redirect to the course training - redirect_to course_redirects.first, allow_other_host: true + redirect_to course_redirects.first[:url], allow_other_host: true return - # If the user has an account in all configs and has no trainings left to complete, allow them to navigate the warehouse + # If the user has an active account in all configs and has no trainings left to complete, allow them to navigate the warehouse elsif account_exists_in_all_configs && course_redirects.blank? # All trainings are completed and the user has an account in all training configs redirect_to after_sign_in_path_for(current_user) return end - # At least one config requires an account to be created for this user or multiple configs have been - # identified as requiring trainings. Send the user to the captive portal for additional training options. + # For all other cases, send the user to the captive portal render 'required_trainings' rescue RuntimeError => e @message = e.message diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index cb83cf0577..6bdc092160 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -492,4 +492,14 @@ def bracket_small_population(value, mask: true) bracket.first end end + + # Provides a generic mechanism to show an action menu if there is more than one item, button, if only one + # Expects an array of objects called items in the following format + # [{ link_to: { path: '/hud_reports/aprs/new?filter%5Bactive_roi%5D=false...'}, icon: :copy, label: 'Clone report' }, { link_to: { path: '/hud_reports/aprs/111', method: :delete }, icon: :cross, label: 'Delete' }] + def action_menu_or_button(items:) + return if items.empty? + return render('/common/action_menu', items: items) if items.many? + + render('/common/action_button', item: items.sole) + end end diff --git a/app/jobs/health/process_enrollment_changes_job.rb b/app/jobs/health/process_enrollment_changes_job.rb index 71b5ffb9f1..452cbd5c1b 100644 --- a/app/jobs/health/process_enrollment_changes_job.rb +++ b/app/jobs/health/process_enrollment_changes_job.rb @@ -71,6 +71,8 @@ def perform(enrollment_id) disenroll_patient(transaction, referral, file_date) disenrolled_patients += 1 end + rescue Health::MedicaidIdConflict + errors << conflict_message(transaction) end enrollment.changes.each do |transaction| @@ -139,7 +141,6 @@ def perform(enrollment_id) update_patient_referrals(referral.patient, transaction) updated_patients += 1 end - rescue Health::MedicaidIdConflict # The conflict prevents us from knowing the audit action errors << conflict_message(transaction) diff --git a/app/models/concerns/hud_concerns/client.rb b/app/models/concerns/hud_concerns/client.rb index 4b57becad2..e245fbd26a 100644 --- a/app/models/concerns/hud_concerns/client.rb +++ b/app/models/concerns/hud_concerns/client.rb @@ -58,6 +58,9 @@ def race_multi end # Per the data standards, only look to RaceNone if we don't have a more specific response gm << self.RaceNone if gm.empty? && self.RaceNone.in?([8, 9, 99]) + # set to '99' (Data not collected). This should only occur if the field is missing or we have data that doesn't + # match a known race code, including codes for Client doesn't know, Prefers not to answer, and Data not collected + gm << HudUtility2024.race_field_name_to_id[:RaceNone] if gm.empty? end end @@ -70,6 +73,9 @@ def race_multi_include_race_none end # Always include RaceNone data gm << self.RaceNone if self.RaceNone.in?([8, 9, 99]) + # set to '99' (Data not collected). This should only occur if the field is missing or we have data that doesn't + # match a known race code, including codes for Client doesn't know, Prefers not to answer, and Data not collected + gm << HudUtility2024.race_field_name_to_id[:RaceNone] if gm.empty? end end diff --git a/app/models/concerns/hud_reports/incomes.rb b/app/models/concerns/hud_reports/incomes.rb index 24e8f7942a..6b49258b42 100644 --- a/app/models/concerns/hud_reports/incomes.rb +++ b/app/models/concerns/hud_reports/incomes.rb @@ -203,14 +203,22 @@ module HudReports::Incomes { 'Adults with Missing Income Information' => a_t[:annual_assessment_expected].eq(true). and(a_t[:annual_assessment_in_window].eq(true)). - and(a_t["income_total_at_#{suffix}"].eq(99). - or(a_t["income_total_at_#{suffix}"].eq(nil))), + and(a_t["income_from_any_source_at_#{suffix}".to_sym].eq(nil). + or(a_t["income_from_any_source_at_#{suffix}"].eq(99)). + or( + a_t["income_total_at_#{suffix}"].eq(nil). + and( + # Responses of 8 & 9 are expected to have total income nil. + # These are filtered out to prevent duplicates. They are captured in a different row. + a_t["income_from_any_source_at_#{suffix}"].not_in([8, 9]), + ), + )), }, ) else responses.merge!( { - 'Adults with Missing Income Information' => a_t["income_total_at_#{suffix}"].eq(99). + 'Adults with Missing Income Information' => a_t["income_from_any_source_at_#{suffix}"].eq(99). or(a_t["income_total_at_#{suffix}"].eq(nil)), }, ) diff --git a/app/models/concerns/hud_reports/start_to_move_in_question.rb b/app/models/concerns/hud_reports/start_to_move_in_question.rb index 506badb92f..2f2d7ae36e 100644 --- a/app/models/concerns/hud_reports/start_to_move_in_question.rb +++ b/app/models/concerns/hud_reports/start_to_move_in_question.rb @@ -67,12 +67,15 @@ def start_to_move_in_lengths cond = lengths.fetch(label).and(a_t[:hoh_move_in_date].between(@report.start_date..@report.end_date)) [label, cond] end + # This is the largest amount of days being reported on so we can set a limit in the total. + max_days_in_query = 730 + # Make sure totals only include time to move in dates within the ranges being reported on ret.merge( - 'Total (persons moved into housing)' => a_t[:hoh_move_in_date].between(@report.start_date..@report.end_date), + 'Total (persons moved into housing)' => a_t[:hoh_move_in_date].between(@report.start_date..@report.end_date).and(a_t[:time_to_move_in].between(0..max_days_in_query)), 'Average length of time to housing' => :average, 'Persons who were exited without move-in' => a_t[:hoh_move_in_date].eq(nil), - 'Total persons' => Arel.sql('1=1'), + 'Total persons' => a_t[:time_to_move_in].between(0..max_days_in_query).or(a_t[:hoh_move_in_date].eq(nil)), ).freeze end end diff --git a/app/models/concerns/hud_reports/sub_populations_by_subsidy_type_question.rb b/app/models/concerns/hud_reports/sub_populations_by_subsidy_type_question.rb index d04030348a..57217e7829 100644 --- a/app/models/concerns/hud_reports/sub_populations_by_subsidy_type_question.rb +++ b/app/models/concerns/hud_reports/sub_populations_by_subsidy_type_question.rb @@ -38,7 +38,8 @@ def sub_populations_by_subsidy_type_question(question:, members:, sub_pops: sub_ end sheet.update_cell_members( cell: [cols[col_index], 13], - members: scope, + # We only want clients captured in the rows above. Filter the scope to clients with a valid subsidy type + members: scope.where(HudUtility2024.rental_subsidy_types.keys.include?(a_t[:exit_destination_subsidy_type])), ) end end diff --git a/app/models/grda_warehouse/auth_policies/destination_client_policy.rb b/app/models/grda_warehouse/auth_policies/destination_client_policy.rb index 7d21a37aa0..82ede72551 100644 --- a/app/models/grda_warehouse/auth_policies/destination_client_policy.rb +++ b/app/models/grda_warehouse/auth_policies/destination_client_policy.rb @@ -17,6 +17,9 @@ class GrdaWarehouse::AuthPolicies::DestinationClientPolicy < GrdaWarehouse::Auth method_name = :"#{permission}?" define_method(method_name) do client.source_clients.any? do |source_client| + # Skip sources that are also destinations. This shouldn't be necessary but avoids SystemStackError on bad data + next if source_client.destination?(strict: true) + user.policy_for(source_client).send(method_name) end end @@ -27,7 +30,7 @@ class GrdaWarehouse::AuthPolicies::DestinationClientPolicy < GrdaWarehouse::Auth def validate_resource!(arg) ensure_arg_type!(arg, GrdaWarehouse::Hud::Client) - raise ArgumentError 'Must be a destination client' unless arg.destination? + raise ArgumentError 'Must be a destination client' unless arg.destination?(strict: true) end def client diff --git a/app/models/grda_warehouse/auth_policies/source_client_policy.rb b/app/models/grda_warehouse/auth_policies/source_client_policy.rb index 4fc1be609f..35324683da 100644 --- a/app/models/grda_warehouse/auth_policies/source_client_policy.rb +++ b/app/models/grda_warehouse/auth_policies/source_client_policy.rb @@ -74,6 +74,8 @@ def client results end + BASIC_CLIENT_PII_PERMS = Set.new([:can_view_client_name, :can_view_client_photo, :can_view_full_dob]).freeze + # Window data sources are a deprecated legacy client data sharing mechanic, replaced by a System Collection when using Access Controls-based permissions def add_legacy_data_source_permissions(results) # is this a user with legacy role-based perms? @@ -83,7 +85,33 @@ def add_legacy_data_source_permissions(results) # is the client in a window data source? return unless context.legacy_window_data_source_ids.include?(client.data_source_id) - # check roi if the window config requires release (the "can_*_with_roi" permissions are not relevant in this case) + # Legacy visibility rules for client attributes: + # If a user has either 'can_view_clients' or 'can_search_all_clients' permission, AND they + # have another permission (like viewing names), then the user is granted that permission + # for ANY client in window data sources, bypassing ROI requirements. + # + # For example: A user with both 'can_view_clients' and 'can_view_name' permissions can + # see names of all clients in window data sources, regardless of the client's ROI. + # + # Historical context: This behavior comes from the legacy role-based system where client + # visibility was considered "global" if the user could access clients in either "search" + # or "view" contexts, but only for "window" data sources. + if legacy_permissions.include?(:can_view_clients) + # all the legacy perms apply to the client + results.merge(legacy_permissions) + # early return since there's no point in checking ROI + return + elsif legacy_permissions.include?(:can_search_all_clients) + # The can_search_all_clients confers a reduced set or permissions. This is more restricted + # than the historic permissions. This is okay since search has limited client details. + # + # Notes + # - The client search controller (ClientAccessControl::ClientsController) also requires can_search_window || can_use_strict_search. We aren't enforcing that here. + # - See the searchable_to method in the Client extension (drivers/client_access_control/extensions/grda_warehouse/hud/client_extension.rb) which includes all clients in the search scope if the user has the can_search_all_clients permission + results.merge(legacy_permissions & BASIC_CLIENT_PII_PERMS) + end + + # check ROI if the window config requires release (the "can_*_with_roi" permissions are not relevant in this case) return if context.legacy_window_access_requires_release? && !roi_authorized? results.merge(legacy_permissions) diff --git a/app/models/grda_warehouse/client_roi_authorization.rb b/app/models/grda_warehouse/client_roi_authorization.rb index ced5049b0e..af4131928a 100644 --- a/app/models/grda_warehouse/client_roi_authorization.rb +++ b/app/models/grda_warehouse/client_roi_authorization.rb @@ -14,6 +14,8 @@ class ClientRoiAuthorization < GrdaWarehouseBase PARTIAL_STATUS = 'partial'.freeze FULL_STATUS = 'full'.freeze + scope :with_invalid_client, -> { left_outer_joins(:destination_client).where(c_t[:id].eq(nil)) } + def active?(date: Date.current) case status when PARTIAL_STATUS, FULL_STATUS diff --git a/app/models/grda_warehouse/hud/client.rb b/app/models/grda_warehouse/hud/client.rb index eecf1670b1..db624c8a80 100644 --- a/app/models/grda_warehouse/hud/client.rb +++ b/app/models/grda_warehouse/hud/client.rb @@ -1325,7 +1325,7 @@ def presented_with_family?(after: nil, before: nil) end def policy_class - if destination? + if destination?(strict: true) GrdaWarehouse::AuthPolicies::DestinationClientPolicy else GrdaWarehouse::AuthPolicies::SourceClientPolicy @@ -1545,7 +1545,12 @@ def service_history_invalidated? processed_service_history.blank? end - def destination? + def destination?(strict: false) + # conditional check on data source. This is optional as side-effects are unknown + if strict + return false unless data_source_id.in?(GrdaWarehouse::DataSource.destination_data_source_ids) + end + source_clients.size.positive? end diff --git a/app/models/grda_warehouse/tasks/generate_client_roi_authorizations_task.rb b/app/models/grda_warehouse/tasks/generate_client_roi_authorizations_task.rb index 337a4bce09..f8679dc1ca 100644 --- a/app/models/grda_warehouse/tasks/generate_client_roi_authorizations_task.rb +++ b/app/models/grda_warehouse/tasks/generate_client_roi_authorizations_task.rb @@ -13,16 +13,20 @@ def self.perform(...) end # @param client_ids [Array, nil] client ids to rebuild. Rebuild all clients if nil - def perform(client_ids: nil) + # @param batch_size [Integer] number of records to process in each batch + def perform(client_ids: nil, batch_size: 500) with_lock do scope = destination_client_scope scope = scope.where(id: client_ids) unless client_ids.nil? - scope.find_in_batches do |batch| + scope.find_in_batches(batch_size: batch_size) do |batch| values = [] + missing_ids = [] batch.each do |client| result = process_client(client) + missing_ids << client.id if result.nil? values << result if result end + GrdaWarehouse::ClientRoiAuthorization.import( values, on_duplicate_key_update: { @@ -30,11 +34,15 @@ def perform(client_ids: nil) columns: values.first&.keys&.excluding(:destination_client_id), }, ) - # cleanup orphans - orphan_scope = GrdaWarehouse::ClientRoiAuthorization. - where.not(destination_client_id: destination_client_scope.select(:id)) - orphan_scope = orphan_scope.where(destination_client_id: client_ids) if client_ids - orphan_scope.delete_all + + # cleanup auth records for clients that have lost ROI status (but client still exists). This might be due to data correction rather than revocation + GrdaWarehouse::ClientRoiAuthorization.where(destination_client: missing_ids).delete_all + end + + # cleanup orphaned auth records where the client record no-longer exists at all + orphan_ids = GrdaWarehouse::ClientRoiAuthorization.with_invalid_client.pluck(:id) + orphan_ids.each_slice(batch_size) do |ids| + GrdaWarehouse::ClientRoiAuthorization.where(id: ids).delete_all end end end diff --git a/app/models/grda_warehouse/utility.rb b/app/models/grda_warehouse/utility.rb index ca98bf321a..a9b25a1b23 100644 --- a/app/models/grda_warehouse/utility.rb +++ b/app/models/grda_warehouse/utility.rb @@ -195,6 +195,7 @@ def self.fix_sequences def self.modifier(model) cascade_models = [ + GrdaWarehouse::File, GrdaWarehouse::DataSource, GrdaWarehouse::Hud::Client, GrdaWarehouse::Hud::Project, diff --git a/app/models/pdf_generator.rb b/app/models/pdf_generator.rb index 901d389ed6..4e961c8be4 100644 --- a/app/models/pdf_generator.rb +++ b/app/models/pdf_generator.rb @@ -16,6 +16,10 @@ def perform(html:, file_name: 'output', options: {}, pdf_data: nil) true end + def self.render_pdf(...) + new.render_pdf(...) + end + def render_pdf(html, options: {}) grover_options = { display_url: root_url, @@ -69,4 +73,22 @@ def self.html(controller:, user:, template: nil, layout: false, assigns:, partia ) end end + + # A helper method to wrap up some weirdness of Pdfunite needing a block if the objects aren't file paths + # Pdfunite requires files to be merged thusly: Pdfunite.join(['path/file_1.pdf', 'path/file_2.pdf']) + # and inline objects to be merged thusly: Pdfunite.join([pdf_1, pdf_2]) { |pdf| pdf } + # If you we end up needing to do something fancy in the block, we can extend this further, but keeping the two methods + # will enforce some standardization + # @param [Array] pdf_objects An array of binary inline versions of the PDFs such as you get by reading a PDF file or + # calling .to_pdf on a Grover object. + # @return [String] string representation of a PDF object + def self.merge_inline_pdfs(pdf_objects) + Pdfunite.join(pdf_objects) { |pdf| pdf } + end + + # @param [Array] files An array of paths to PDF files. + # @return [String] string representation of a PDF object + def self.merge_pdf_files(files) + Pdfunite.join(files) + end end diff --git a/app/models/simple_reports/report_instance.rb b/app/models/simple_reports/report_instance.rb index 1adb860118..23918d808d 100644 --- a/app/models/simple_reports/report_instance.rb +++ b/app/models/simple_reports/report_instance.rb @@ -27,6 +27,15 @@ def cell(cell_name) report_cells.where(name: cell_name).first end + def running? + return false if started_at.present? && started_at < 24.hours.ago + return false if started_at.blank? && created_at < 24.hours.ago + return false if failed? + return false if completed? + + ! completed? + end + def completed? status == 'completed' end diff --git a/app/models/talentlms/facade.rb b/app/models/talentlms/facade.rb index 37efda9b4d..d1aecc2a98 100644 --- a/app/models/talentlms/facade.rb +++ b/app/models/talentlms/facade.rb @@ -49,6 +49,7 @@ def lms_username # @return [String] email address to be used for generated users in TalentLMS def lms_email return @user.talent_lms_email if @user.talent_lms_email.present? + return @user.email if @user.email.present? && GrdaWarehouse::Config.get(:default_lms_email_to_warehouse_email) "#{lms_username}@#{ENV['FQDN']}" end @@ -82,12 +83,12 @@ def login(api) api_data.present? end - # Syncronize the user's local data with taht found in the config (subdomain) + # Get the account data for the user from the API # # @param api [Integer] Config ID for the config record that contains information about the subdomain where the user's account will be synced with the local data # @param login [Integer] Nullable ID for the Login record that contains local information about the user we are syncronizing. # @return [JSON] Account data returned from the API, nil if no account data is available - def sync_lms_account(api, login) + def get_lms_account_data(api, login) username = lms_username email_address = lms_email @@ -99,6 +100,17 @@ def sync_lms_account(api, login) # Talent does not have a record associated with this email address, check the default username. If we generated an # account for this user prior to allowing emails to be set, we should be able to find it this way. result ||= lms_find_user_by_username(api, username) + + result + end + + # Syncronize the user's local data with taht found in the config (subdomain) + # + # @param api [Integer] Config ID for the config record that contains information about the subdomain where the user's account will be synced with the local data + # @param login [Integer] Nullable ID for the Login record that contains local information about the user we are syncronizing. + # @return [JSON] Account data returned from the API, nil if no account data is available or account is inactive + def sync_lms_account(api, login) + result = get_lms_account_data(api, login) # Talent does not have a record associated with this user, create an account for them. result ||= create_account(api) @@ -115,10 +127,25 @@ def sync_lms_account(api, login) # With this saved, out local data will be synced with that in Talent for this user. create_or_update_local_login(api, result) if result.present? end + # Return nil when the user is not active. This will have the interface work as if the user was not found + # and could not be created (e.g. force a redirect to the captive portal) + return nil unless active_user?(api, login, result) result end + # Return whether or not a user is active in a config + # + # @param api [Integer] Config ID for the config record that contains information about the subdomain where the user's account will be synced with the local data + # @param login [Integer] Nullable ID for the Login record that contains local information about the user we are syncronizing. + # @param api_resonse [JSON] include JSON data here to bypass API lookup. Including this data will prevent additional API calls. + # @return [JSON] Account data returned from the API, nil if no account data is available or account is inactive + def active_user?(api, login = nil, api_response = nil) + login = Login.find_by(config: api, user: @user) unless login.present? + api_response = get_lms_account_data(api, login) unless api_response.present? + api_response.present? && api_response['status'].downcase == 'active' + end + # Set the locally stored data for an lmls account # # @param api [Integer] Config ID for the config record that contains information about the subdomain where the user's account exists @@ -311,6 +338,10 @@ def any_training_required? training_required << training_required?(course.config, course.courseid) end + # No training is required if there are no training courses required of this user. + # This can occur when all courses (default or assigned) are inactive. + return false if training_required.empty? + # If a number of courses required to be completed is set, use that, otherwise, all courses are required to be completed. # IF number_courses_required is -1, all courses are required number_courses_required = GrdaWarehouse::Config.get(:number_lms_courses_required) diff --git a/app/views/admin/talentlms/_form.haml b/app/views/admin/talentlms/_form.haml index 3a3764ae6f..63bf19b395 100644 --- a/app/views/admin/talentlms/_form.haml +++ b/app/views/admin/talentlms/_form.haml @@ -1,3 +1,4 @@ = f.input :subdomain = f.input :api_key, label: 'API Key' -= f.input :create_new_accounts, label: 'Allow creation of new accounts' \ No newline at end of file += f.input :create_new_accounts, label: 'Allow creation of new accounts', hint: 'This will allow accounts to be automatically generated if they do not already exists in the LMS system.' += f.input :allow_automatic_redirect_to_course, label: 'Allow automatic course redirects', hint: 'When checked, users who only need to complete one course will be immediately redirected to TalentLMS upon login to the warehouse. When unchecked or if a user needs to complete more than one course, a summary page will direct users to complete course with links to TalentLMS.' diff --git a/app/views/admin/talentlms/index.haml b/app/views/admin/talentlms/index.haml index ea187f9242..8a75cb76a5 100644 --- a/app/views/admin/talentlms/index.haml +++ b/app/views/admin/talentlms/index.haml @@ -12,6 +12,7 @@ .well = simple_form_for @site_configs, url: update_site_config_admin_talentlms_path(@site_configs), method: :post, remote: true do |f| = f.input :number_lms_courses_required, as: :select_two, collection: GrdaWarehouse::Config.available_number_lms_courses_required, input_html: {class: :jRemoteSubmit}, label: 'TalentLMS Courses Completion Requirement' + = f.input :default_lms_email_to_warehouse_email, input_html: {class: :jRemoteSubmit}, label: 'Use warehouse email by default', hint: "When the TalentLMS email field is blank for a user, default to using the user's warehouse email address" .h2 Subdomians .well @@ -26,6 +27,7 @@ %tr %th Subdomain %th Can Create New Accounts in TalentLMS + %th Allow Automatic Course Redirect %th %tbody - @configs.each do |config| @@ -35,6 +37,9 @@ %td - if config.create_new_accounts %i.icon-checkmark + %td + - if config.allow_automatic_redirect_to_course + %i.icon-checkmark %td - if config.courses.count == 0 .float-right @@ -93,13 +98,13 @@ url: form.attr('action'), success: function(e) { console.debug('success') - var html = '
Course completion requirement saved successfully.
'; + var html = '
TalentLMS configuration saved successfully.
'; $('.utility').html(html); $('.jAjaxSave').delay(5000).fadeOut(250); }, error: function(e) { console.debug('fail') - var html = '
Failed to save course completion requirement.
'; + var html = '
Failed to save TalentLMS configuration.
'; $('.utility').html(html); $('.jAjaxSave').delay(5000).fadeOut(250); } diff --git a/app/views/common/_action_button.haml b/app/views/common/_action_button.haml new file mode 100644 index 0000000000..86dd71c4fa --- /dev/null +++ b/app/views/common/_action_button.haml @@ -0,0 +1,13 @@ +- classes = ['btn', 'btn-sm'] +- if item.dig(:link_to, :method) == :delete + - classes << 'btn-danger' + - item[:icon] ||= :cross +- else + - classes << 'btn-secondary' +- if item[:label].blank? + - classes << 'btn-icon-only' +- path = item.dig(:link_to, :path) += link_to(path, **item[:link_to].reverse_merge({class: classes})) do + - if item[:icon].present? + %i{class: "icon-#{item[:icon]}"} + = item[:label] diff --git a/app/views/common/_action_menu.haml b/app/views/common/_action_menu.haml new file mode 100644 index 0000000000..305f91aef4 --- /dev/null +++ b/app/views/common/_action_menu.haml @@ -0,0 +1,16 @@ +.dropdown.ml-auto + %button.btn.btn-sm.btn-outline-secondary.dropdown-toggle{ type: :button, data: { toggle: :dropdown}, aria: { expanded: false }} + Actions + %i.ml-2.icon-angle-down + .dropdown-menu.options(aria-label="Actions") + %ul.list-unstyled.m-0 + - items.each do |item| + - classes = ['dropdown-item'] + - if item.dig(:link_to, :method) == :delete + - item[:icon] ||= :cross + - path = item.dig(:link_to, :path) + %li + = link_to(path, **item[:link_to].reverse_merge({class: classes})) do + - if item[:icon].present? + %i{class: "icon-#{item[:icon]} mr-2"} + = item[:label] diff --git a/app/views/common/background_report/_history_table.haml b/app/views/common/background_report/_history_table.haml index 4725a95495..a1a5be403d 100644 --- a/app/views/common/background_report/_history_table.haml +++ b/app/views/common/background_report/_history_table.haml @@ -8,7 +8,7 @@ %th Status %th Options %th Requested - %th + %th Actions %tbody.report-listing.warehouse-reports__completed - @reports.each do |report| %tr @@ -25,8 +25,11 @@ = report.created_at .text-sm.text-muted by #{report.user&.name} %td - = link_to report.show_path, method: :delete, class: 'btn btn-sm btn-danger btn-icon-only', data: {confirm: "Are you sure you want to delete this report?"} do - %i.icon-cross + - filter = report.options + - items = [{ link_to: { path: "#{report.index_path}?#{{filters: filter}.to_query}"}, class: ['btn', 'btn-sm', 'btn-secondary', 'btn-icon-only'], icon: :copy, label: 'New report from this universe'}] + - unless report.running? + - items << { link_to: { path: report.show_path, method: :delete, data: {confirm: "Are you sure you want to delete this report?"}}, class: ['btn', 'btn-sm', 'btn-danger', 'btn-icon-only'], label: 'Delete report'} + = action_menu_or_button(items: items) = render 'common/pagination_bottom', item_name: 'report' - else .none-found No reports found. diff --git a/app/views/hud_reports/_reports.haml b/app/views/hud_reports/_reports.haml index a2ece54314..a11d43757d 100644 --- a/app/views/hud_reports/_reports.haml +++ b/app/views/hud_reports/_reports.haml @@ -12,7 +12,7 @@ %th{style: 'width: 20%;'} Status %th{style: 'width: 40%;'} Limits %th Included Questions - %th Delete + %th Actions %tbody - @reports.each do |report| %tr @@ -35,9 +35,12 @@ - else = link_to question_label, path_for_question_result(question, report: report), class: 'btn btn-secondary btn-sm mb-2 ml-2', data: { toggle: :tooltip, title: @generator.describe_table(question), html: 'true' } %td + - filter = report.options + - items = [{ link_to: { path: "#{path_for_new}?#{{filter: filter}.to_query}"}, class: ['btn', 'btn-sm', 'btn-secondary'], icon: :copy, label: 'New report from this universe'}] - unless report.running? - = link_to path_for_report(report), method: :delete, class: 'btn btn-sm btn-danger btn-icon-only', data: { confirm: 'Are you sure you want to delete this report?' } do - %i.icon-cross + - items << { link_to: { path: path_for_report(report), method: :delete, data: {confirm: "Are you sure you want to delete this report?"}}, class: ['btn', 'btn-sm', 'btn-danger'], label: 'Delete report'} + = action_menu_or_button(items: items) + = render 'common/pagination_bottom', item_name: 'report' - else %p.none-found No reports found diff --git a/app/views/user_training/required_trainings.haml b/app/views/user_training/required_trainings.haml index c39663afc0..ea9241daa3 100644 --- a/app/views/user_training/required_trainings.haml +++ b/app/views/user_training/required_trainings.haml @@ -30,6 +30,10 @@ %p Domain: = link_to config.domain, "https://#{config.domain}" + - if ! lms.active_user?(config) + .font-italic + %i.icon-warning + No active account found in this domain .table-responsive %table.table.table-striped %thead diff --git a/app/views/users/_access_control_table.haml b/app/views/users/_access_control_table.haml index fce2b32a45..5a10a569e1 100644 --- a/app/views/users/_access_control_table.haml +++ b/app/views/users/_access_control_table.haml @@ -1,4 +1,4 @@ -- access_controls = user.access_controls.preload(:role, :collection, :user_group) +- access_controls = user.access_controls.preload(:role, :collection, :user_group).joins(:role, :collection, :user_group) - if access_controls.empty? %p.none-found #{user.name} has not been granted any access. diff --git a/config/initializers/yabeda.rb b/config/initializers/yabeda.rb index 01a25d4fad..e1e8f9f2d7 100644 --- a/config/initializers/yabeda.rb +++ b/config/initializers/yabeda.rb @@ -1,7 +1,6 @@ Yabeda.configure do default_tag :rails_env, Rails.env default_tag :app, 'warehouse' - default_tag :job, ENV.fetch('CONTAINER_VARIANT', 'unknown-job-set-CONTAINER_VARIANT-env-var') default_tag :tenant, ENV.fetch('CLIENT', 'unknown-client-set-CLIENT-env-var') - default_tag :instance, ENV.fetch('FQDN', 'unknown-instance-set-FQDN-env-var') + default_tag :fqdn, ENV.fetch('FQDN', 'unknown-instance-set-FQDN-env-var') end diff --git a/db/migrate/20241211202350_add_enrollment_location_map_permission.rb b/db/migrate/20241211202350_add_enrollment_location_map_permission.rb new file mode 100644 index 0000000000..cb582bef22 --- /dev/null +++ b/db/migrate/20241211202350_add_enrollment_location_map_permission.rb @@ -0,0 +1,10 @@ +class AddEnrollmentLocationMapPermission < ActiveRecord::Migration[7.0] + def up + Hmis::Role.ensure_permissions_exist + Hmis::Role.reset_column_information + end + + def down + remove_column :hmis_roles, :can_view_enrollment_location_map + end +end diff --git a/db/structure.sql b/db/structure.sql index 73abe49213..df1b2e282b 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -344,6 +344,7 @@ CREATE TABLE public.activity_logs ( -- CREATE SEQUENCE public.activity_logs_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -386,6 +387,7 @@ CREATE TABLE public.agencies_consent_limits ( -- CREATE SEQUENCE public.agencies_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -444,90 +446,6 @@ CREATE TABLE public.ar_internal_metadata ( ); --- --- Name: building_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.building_contacts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: building_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.building_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: buildings_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.buildings_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: client_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.client_contacts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: client_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.client_notes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: client_opportunity_match_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.client_opportunity_match_contacts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: client_opportunity_matches_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.client_opportunity_matches_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: client_service_history; Type: TABLE; Schema: public; Owner: - -- @@ -557,18 +475,6 @@ CREATE TABLE public.client_service_history ( ); --- --- Name: clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: clients_unduplicated; Type: TABLE; Schema: public; Owner: - -- @@ -639,18 +545,6 @@ CREATE SEQUENCE public.collections_id_seq ALTER SEQUENCE public.collections_id_seq OWNED BY public.collections.id; --- --- Name: configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.configs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: consent_limits; Type: TABLE; Schema: public; Owner: - -- @@ -685,54 +579,6 @@ CREATE SEQUENCE public.consent_limits_id_seq ALTER SEQUENCE public.consent_limits_id_seq OWNED BY public.consent_limits.id; --- --- Name: contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.contacts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: data_sources_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.data_sources_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: date_of_birth_quality_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.date_of_birth_quality_codes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: deidentified_clients_xlsxes_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.deidentified_clients_xlsxes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: delayed_jobs; Type: TABLE; Schema: public; Owner: - -- @@ -758,6 +604,7 @@ CREATE TABLE public.delayed_jobs ( -- CREATE SEQUENCE public.delayed_jobs_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -772,114 +619,6 @@ CREATE SEQUENCE public.delayed_jobs_id_seq ALTER SEQUENCE public.delayed_jobs_id_seq OWNED BY public.delayed_jobs.id; --- --- Name: disabling_conditions_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.disabling_conditions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: discharge_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.discharge_statuses_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: domestic_violence_survivors_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.domestic_violence_survivors_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: entity_view_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.entity_view_permissions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: ethnicities_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.ethnicities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: external_referrals_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.external_referrals_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: file_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.file_tags_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: funding_source_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.funding_source_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: funding_sources_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.funding_sources_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: glacier_archives; Type: TABLE; Schema: public; Owner: - -- @@ -959,42 +698,6 @@ CREATE SEQUENCE public.glacier_vaults_id_seq ALTER SEQUENCE public.glacier_vaults_id_seq OWNED BY public.glacier_vaults.id; --- --- Name: has_developmental_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.has_developmental_disabilities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: has_hivaids_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.has_hivaids_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: has_mental_health_problems_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.has_mental_health_problems_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: hmis_access_controls; Type: TABLE; Schema: public; Owner: - -- @@ -1205,36 +908,37 @@ CREATE TABLE public.hmis_roles ( can_manage_own_client_files boolean DEFAULT false NOT NULL, can_view_any_nonconfidential_client_files boolean DEFAULT false NOT NULL, can_view_any_confidential_client_files boolean DEFAULT false NOT NULL, - can_manage_client_files boolean DEFAULT false NOT NULL, can_audit_clients boolean DEFAULT false NOT NULL, can_delete_clients boolean DEFAULT false NOT NULL, - can_delete_assessments boolean DEFAULT false, - can_view_project boolean DEFAULT false, + can_delete_assessments boolean DEFAULT false NOT NULL, + can_view_unenrolled_clients boolean DEFAULT false, can_manage_incoming_referrals boolean DEFAULT false, can_manage_outgoing_referrals boolean DEFAULT false, can_manage_denied_referrals boolean DEFAULT false, - can_impersonate_users boolean DEFAULT false, - can_audit_users boolean DEFAULT false, - can_view_client_name boolean DEFAULT false, - can_view_client_contact_info boolean DEFAULT false, - can_view_client_photo boolean DEFAULT false, - can_view_hud_chronic_status boolean DEFAULT false, - can_view_limited_enrollment_details boolean DEFAULT false, - can_view_open_enrollment_summary boolean DEFAULT false, can_enroll_clients boolean DEFAULT false, - can_audit_enrollments boolean DEFAULT false, + can_view_open_enrollment_summary boolean DEFAULT false, + can_view_project boolean DEFAULT false, + can_view_hud_chronic_status boolean DEFAULT false, can_merge_clients boolean DEFAULT false, can_split_households boolean DEFAULT false, can_transfer_enrollments boolean DEFAULT false, - can_manage_forms boolean DEFAULT false, + can_view_limited_enrollment_details boolean DEFAULT false, + can_impersonate_users boolean DEFAULT false, + can_audit_users boolean DEFAULT false, can_configure_data_collection boolean DEFAULT false, - can_administrate_config boolean DEFAULT false, + can_audit_enrollments boolean DEFAULT false, can_manage_scan_cards boolean DEFAULT false, can_view_client_alerts boolean DEFAULT false, can_manage_client_alerts boolean DEFAULT false, can_manage_external_form_submissions boolean DEFAULT false, + can_view_client_name boolean DEFAULT false, + can_view_client_contact_info boolean DEFAULT false, + can_view_client_photo boolean DEFAULT false, + can_manage_forms boolean DEFAULT false, + can_administrate_config boolean DEFAULT false, can_view_units boolean DEFAULT false, - can_manage_units boolean DEFAULT false + can_manage_units boolean DEFAULT false, + can_view_enrollment_location_map boolean DEFAULT false ); @@ -1385,42 +1089,6 @@ CREATE SEQUENCE public.hmis_user_groups_id_seq ALTER SEQUENCE public.hmis_user_groups_id_seq OWNED BY public.hmis_user_groups.id; --- --- Name: housing_attributes_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.housing_attributes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: housing_media_links_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.housing_media_links_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: imported_clients_csvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.imported_clients_csvs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: imports; Type: TABLE; Schema: public; Owner: - -- @@ -1476,6 +1144,7 @@ CREATE TABLE public.letsencrypt_plugin_challenges ( -- CREATE SEQUENCE public.letsencrypt_plugin_challenges_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -1507,6 +1176,7 @@ CREATE TABLE public.letsencrypt_plugin_settings ( -- CREATE SEQUENCE public.letsencrypt_plugin_settings_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -1599,102 +1269,6 @@ CREATE SEQUENCE public.login_activities_id_seq ALTER SEQUENCE public.login_activities_id_seq OWNED BY public.login_activities.id; --- --- Name: match_census_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.match_census_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: match_decision_reasons_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.match_decision_reasons_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: match_decisions_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.match_decisions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: match_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.match_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: match_mitigation_reasons_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.match_mitigation_reasons_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: match_prioritizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.match_prioritizations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: match_progress_updates_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.match_progress_updates_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: match_routes_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.match_routes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: messages; Type: TABLE; Schema: public; Owner: - -- @@ -1718,6 +1292,7 @@ CREATE TABLE public.messages ( -- CREATE SEQUENCE public.messages_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -1732,54 +1307,6 @@ CREATE SEQUENCE public.messages_id_seq ALTER SEQUENCE public.messages_id_seq OWNED BY public.messages.id; --- --- Name: mitigation_reasons_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.mitigation_reasons_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: name_quality_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.name_quality_codes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: neighborhood_interests_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.neighborhood_interests_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: neighborhoods_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.neighborhoods_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: nicknames; Type: TABLE; Schema: public; Owner: - -- @@ -1811,42 +1338,6 @@ CREATE SEQUENCE public.nicknames_id_seq ALTER SEQUENCE public.nicknames_id_seq OWNED BY public.nicknames.id; --- --- Name: non_hmis_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.non_hmis_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: non_hmis_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.non_hmis_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.notifications_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: oauth_access_grants; Type: TABLE; Schema: public; Owner: - -- @@ -2024,54 +1515,6 @@ CREATE SEQUENCE public.old_passwords_id_seq ALTER SEQUENCE public.old_passwords_id_seq OWNED BY public.old_passwords.id; --- --- Name: opportunities_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.opportunities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: opportunity_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.opportunity_contacts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: opportunity_properties_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.opportunity_properties_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: outreach_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.outreach_histories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: pghero_query_stats; Type: TABLE; Schema: public; Owner: - -- @@ -2116,119 +1559,16 @@ CREATE TABLE public.pghero_space_stats ( database text, schema text, relation text, - size bigint, - captured_at timestamp without time zone -); - - --- --- Name: pghero_space_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.pghero_space_stats_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: pghero_space_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.pghero_space_stats_id_seq OWNED BY public.pghero_space_stats.id; - - --- --- Name: physical_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.physical_disabilities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: program_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.program_contacts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: program_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.program_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: programs_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.programs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: project_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.project_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: project_programs_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.project_programs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: reissue_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.reissue_requests_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; + size bigint, + captured_at timestamp without time zone +); -- --- Name: rejected_matches_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: pghero_space_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- -CREATE SEQUENCE public.rejected_matches_id_seq +CREATE SEQUENCE public.pghero_space_stats_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -2237,15 +1577,10 @@ CREATE SEQUENCE public.rejected_matches_id_seq -- --- Name: report_definitions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: pghero_space_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- -CREATE SEQUENCE public.report_definitions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER SEQUENCE public.pghero_space_stats_id_seq OWNED BY public.pghero_space_stats.id; -- @@ -2329,18 +1664,6 @@ CREATE SEQUENCE public.report_results_summaries_id_seq ALTER SEQUENCE public.report_results_summaries_id_seq OWNED BY public.report_results_summaries.id; --- --- Name: reporting_decisions_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.reporting_decisions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: reports; Type: TABLE; Schema: public; Owner: - -- @@ -2377,18 +1700,6 @@ CREATE SEQUENCE public.reports_id_seq ALTER SEQUENCE public.reports_id_seq OWNED BY public.reports.id; --- --- Name: requirements_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.requirements_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: roles; Type: TABLE; Schema: public; Owner: - -- @@ -2539,9 +1850,8 @@ CREATE TABLE public.roles ( can_search_own_clients boolean DEFAULT false, can_view_confidential_project_names boolean DEFAULT false, can_report_on_confidential_projects boolean DEFAULT false, - can_edit_assigned_project_groups boolean DEFAULT false, can_view_chronic_tab boolean DEFAULT false, - can_view_confidential_enrollment_details boolean DEFAULT false, + can_edit_assigned_project_groups boolean DEFAULT false, can_configure_cohorts boolean DEFAULT false, can_add_cohort_clients boolean DEFAULT false, can_manage_cohort_data boolean DEFAULT false, @@ -2551,19 +1861,19 @@ CREATE TABLE public.roles ( can_manage_inactive_cohort_clients boolean DEFAULT false, can_view_deleted_cohort_clients boolean DEFAULT false, can_view_cohort_client_changes_report boolean DEFAULT false, - system boolean DEFAULT false NOT NULL, can_approve_careplan boolean DEFAULT false, can_manage_inbound_api_configurations boolean DEFAULT false, can_view_client_enrollments_with_roi boolean DEFAULT false, - can_edit_collections boolean DEFAULT false, can_search_clients_with_roi boolean DEFAULT false, can_see_confidential_files boolean DEFAULT false, - can_edit_own_client_notes boolean DEFAULT false, - can_publish_reports boolean DEFAULT false, can_edit_theme boolean DEFAULT false, + system boolean DEFAULT false NOT NULL, + can_edit_collections boolean DEFAULT false, + can_publish_reports boolean DEFAULT false, + deleted_at timestamp without time zone, + can_edit_own_client_notes boolean DEFAULT false, can_view_client_name boolean DEFAULT false, can_view_client_photo boolean DEFAULT false, - deleted_at timestamp without time zone, can_view_project_locations boolean DEFAULT false, can_view_supplemental_client_data boolean DEFAULT false, can_edit_cohort_columns boolean DEFAULT false @@ -2575,6 +1885,7 @@ CREATE TABLE public.roles ( -- CREATE SEQUENCE public.roles_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -2589,18 +1900,6 @@ CREATE SEQUENCE public.roles_id_seq ALTER SEQUENCE public.roles_id_seq OWNED BY public.roles.id; --- --- Name: rules_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.rules_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: - -- @@ -2610,42 +1909,6 @@ CREATE TABLE public.schema_migrations ( ); --- --- Name: service_rules_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.service_rules_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: services_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: shelter_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.shelter_histories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: similarity_metrics; Type: TABLE; Schema: public; Owner: - -- @@ -2683,90 +1946,6 @@ CREATE SEQUENCE public.similarity_metrics_id_seq ALTER SEQUENCE public.similarity_metrics_id_seq OWNED BY public.similarity_metrics.id; --- --- Name: social_security_number_quality_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.social_security_number_quality_codes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: stalled_responses_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.stalled_responses_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: sub_program_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.sub_program_contacts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: sub_programs_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.sub_programs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: subgrantee_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.subgrantee_contacts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: subgrantee_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.subgrantee_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: subgrantees_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.subgrantees_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: taggings; Type: TABLE; Schema: public; Owner: - -- @@ -2819,6 +1998,7 @@ CREATE TABLE public.tags ( -- CREATE SEQUENCE public.tags_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -2971,18 +2151,6 @@ CREATE SEQUENCE public.two_factors_memorized_devices_id_seq ALTER SEQUENCE public.two_factors_memorized_devices_id_seq OWNED BY public.two_factors_memorized_devices.id; --- --- Name: unavailable_as_candidate_fors_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.unavailable_as_candidate_fors_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: unique_names; Type: TABLE; Schema: public; Owner: - -- @@ -3014,18 +2182,6 @@ CREATE SEQUENCE public.unique_names_id_seq ALTER SEQUENCE public.unique_names_id_seq OWNED BY public.unique_names.id; --- --- Name: units_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.units_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: uploads; Type: TABLE; Schema: public; Owner: - -- @@ -3068,39 +2224,6 @@ CREATE SEQUENCE public.uploads_id_seq ALTER SEQUENCE public.uploads_id_seq OWNED BY public.uploads.id; --- --- Name: user_access_controls; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.user_access_controls ( - id bigint NOT NULL, - access_control_id bigint, - user_id bigint, - deleted_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - --- --- Name: user_access_controls_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.user_access_controls_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: user_access_controls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.user_access_controls_id_seq OWNED BY public.user_access_controls.id; - - -- -- Name: user_group_members; Type: TABLE; Schema: public; Owner: - -- @@ -3187,6 +2310,7 @@ CREATE TABLE public.user_roles ( -- CREATE SEQUENCE public.user_roles_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -3281,6 +2405,7 @@ CREATE TABLE public.users ( -- CREATE SEQUENCE public.users_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -3321,6 +2446,7 @@ CREATE TABLE public.versions ( -- CREATE SEQUENCE public.versions_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -3335,30 +2461,6 @@ CREATE SEQUENCE public.versions_id_seq ALTER SEQUENCE public.versions_id_seq OWNED BY public.versions.id; --- --- Name: veteran_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.veteran_statuses_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: vouchers_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.vouchers_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: warehouse_alerts; Type: TABLE; Schema: public; Owner: - -- @@ -3393,18 +2495,6 @@ CREATE SEQUENCE public.warehouse_alerts_id_seq ALTER SEQUENCE public.warehouse_alerts_id_seq OWNED BY public.warehouse_alerts.id; --- --- Name: weighting_rules_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.weighting_rules_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -- -- Name: access_control_uploads id; Type: DEFAULT; Schema: public; Owner: - -- @@ -3762,13 +2852,6 @@ ALTER TABLE ONLY public.unique_names ALTER COLUMN id SET DEFAULT nextval('public ALTER TABLE ONLY public.uploads ALTER COLUMN id SET DEFAULT nextval('public.uploads_id_seq'::regclass); --- --- Name: user_access_controls id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.user_access_controls ALTER COLUMN id SET DEFAULT nextval('public.user_access_controls_id_seq'::regclass); - - -- -- Name: user_group_members id; Type: DEFAULT; Schema: public; Owner: - -- @@ -4235,14 +3318,6 @@ ALTER TABLE ONLY public.uploads ADD CONSTRAINT uploads_pkey PRIMARY KEY (id); --- --- Name: user_access_controls user_access_controls_pkey; Type: CONSTRAINT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.user_access_controls - ADD CONSTRAINT user_access_controls_pkey PRIMARY KEY (id); - - -- -- Name: user_group_members user_group_members_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- @@ -4830,20 +3905,6 @@ CREATE INDEX index_two_factors_memorized_devices_on_user_id ON public.two_factor CREATE INDEX index_uploads_on_deleted_at ON public.uploads USING btree (deleted_at); --- --- Name: index_user_access_controls_on_access_control_id; Type: INDEX; Schema: public; Owner: - --- - -CREATE INDEX index_user_access_controls_on_access_control_id ON public.user_access_controls USING btree (access_control_id); - - --- --- Name: index_user_access_controls_on_user_id; Type: INDEX; Schema: public; Owner: - --- - -CREATE INDEX index_user_access_controls_on_user_id ON public.user_access_controls USING btree (user_id); - - -- -- Name: index_user_group_members_on_user_group_id; Type: INDEX; Schema: public; Owner: - -- @@ -5084,8 +4145,249 @@ ALTER TABLE ONLY public.oauth_access_tokens SET search_path TO "$user", public; INSERT INTO "schema_migrations" (version) VALUES +('20160615125048'), +('20160616140826'), +('20160628182622'), +('20160701172807'), +('20160705145733'), +('20160708134220'), +('20160708140847'), +('20160708172039'), +('20160708174624'), +('20160708180500'), +('20160711124428'), +('20160711132731'), +('20160711143807'), +('20160711144914'), +('20160722162801'), +('20160725151439'), +('20160726210214'), +('20160829142445'), +('20160829155417'), +('20160906154014'), +('20160907123023'), +('20160907185535'), +('20160921165937'), +('20161005204310'), +('20161006160330'), +('20161012152230'), +('20161012161240'), +('20161103123424'), +('20161107160154'), +('20161111151851'), +('20161111181757'), +('20161111205317'), +('20161119003439'), +('20161213140009'), +('20161214144658'), +('20161215163027'), +('20161216003217'), +('20161219184752'), +('20170505132237'), +('20170517200539'), +('20170619210146'), +('20170619235354'), +('20170627154145'), +('20170627182531'), +('20170703125950'), +('20170705123919'), +('20170721143408'), +('20170721143409'), +('20170726141503'), +('20170731202132'), +('20170801194526'), +('20170815161947'), +('20170830180506'), +('20170830223244'), +('20170901153110'), +('20170922130841'), +('20170922183847'), +('20170927131448'), +('20170928194909'), +('20171004172953'), +('20171023174425'), +('20171024183915'), +('20171025122843'), +('20171026201120'), +('20171026203139'), +('20171027124054'), +('20171027192753'), +('20171102123227'), +('20171108145620'), +('20171108184341'), +('20171115185203'), +('20171121011445'), +('20171204133242'), +('20171204164243'), +('20180203234329'), +('20180211172808'), +('20180226145540'), +('20180301214751'), +('20180403182327'), +('20180410152130'), +('20180413221626'), +('20180416160927'), +('20180416213522'), +('20180419165841'), +('20180504140026'), +('20180511004923'), +('20180521172429'), +('20180521190108'), +('20180530200118'), +('20180601185917'), +('20180612175806'), +('20180613133940'), +('20180627165639'), +('20180629134948'), +('20180629135738'), +('20180629145712'), +('20180710174713'), +('20180716141934'), +('20180716181011'), +('20180722112728'), +('20180801164521'), +('20180810210623'), +('20181001172617'), +('20181012132645'), +('20181024200910'), +('20181024231159'), +('20181025123951'), +('20181025135153'), +('20181030144345'), +('20181030203357'), +('20181031172440'), +('20181105154441'), +('20181128180134'), +('20181211174411'), +('20190129210815'), +('20190327174142'), +('20190327192234'), +('20190417142558'), +('20190717133521'), +('20190717134445'), +('20190717164100'), +('20190717185326'), +('20190801193258'), +('20190802144446'), +('20190802150742'), +('20190813124815'), +('20190821125609'), +('20190828190416'), +('20190911124324'), +('20190916190551'), +('20191008130933'), +('20191008132105'), +('20191008163710'), +('20191011122814'), +('20191012175639'), +('20191012223328'), +('20191014153813'), +('20191015142006'), +('20191017230529'), +('20191021191814'), +('20191021194633'), +('20191022140448'), +('20191022181527'), +('20191104165453'), +('20191104165454'), +('20191104165455'), +('20191104165456'), +('20191104165457'), +('20191104165458'), +('20191105181656'), +('20191115192256'), +('20191124135043'), +('20191124135304'), +('20191227161954'), +('20191230140045'), +('20200104160008'), +('20200207133048'), +('20200212135100'), +('20200212142604'), +('20200212152652'), +('20200217163759'), +('20200217164324'), +('20200219145902'), +('20200325201541'), +('20200327222948'), +('20200328122429'), +('20200330180135'), +('20200401161139'), +('20200402002149'), +('20200410003006'), +('20200612150045'), +('20200709125338'), +('20200716133200'), +('20200720151331'), +('20200720221319'), +('20200724181711'), +('20200728185654'), +('20201105132926'), +('20201216141634'), +('20201217155258'), +('20201221141550'), +('20201221183603'), +('20210105183208'), +('20210203195412'), +('20210205193320'), +('20210206022724'), +('20210301141302'), +('20210315191809'), +('20210315200648'), +('20210317190501'), +('20210317215206'), +('20210402181911'), +('20210419203457'), +('20210506185609'), +('20210506185752'), +('20210507151459'), +('20210518132857'), +('20210607135335'), +('20210616141644'), +('20210616142134'), +('20210617140852'), +('20210618123018'), +('20210622204223'), +('20210719143827'), +('20210819132153'), +('20220127152605'), +('20220216174239'), +('20220309140327'), +('20220314183405'), +('20220518143528'), +('20220609133835'), +('20220613211706'), +('20220613212850'), +('20220615155458'), +('20220621144511'), +('20220714144937'), +('20220822134957'), +('20220914124822'), +('20221028165550'), +('20221101155734'), +('20221101182012'), +('20221102141424'), +('20221103165106'), +('20221103165625'), +('20221130180430'), +('20230130213746'), +('20230130215326'), +('20230217151359'), +('20230217151360'), +('20230217201904'), +('20230223204644'), +('20230227221846'), +('20230313152950'), +('20230321123918'), +('20230322195141'), +('20230322204908'), +('20230328150855'), +('20230330161305'), +('20230412142430'), +('20230418170053'), ('20230420195221'), ('20230424123118'), +('20230426170051'), ('20230429102609'), ('20230429112926'), ('20230429112954'), @@ -5164,6 +4466,7 @@ INSERT INTO "schema_migrations" (version) VALUES ('20241101132053'), ('20241101132207'), ('20241203185952'), -('20241205185449'); +('20241205185449'), +('20241211202350'); diff --git a/db/views/analytics_client_piis_v01.sql b/db/views/analytics_client_piis_v01.sql new file mode 100644 index 0000000000..5615a94272 --- /dev/null +++ b/db/views/analytics_client_piis_v01.sql @@ -0,0 +1,11 @@ +SELECT "id", + "data_source_id", + "PersonalID", + "FirstName", + "MiddleName", + "LastName", + "NameSuffix", + "SSN", + "DOB" +FROM "Client" +WHERE "DateDeleted" is NULL diff --git a/db/views/analytics_clients_v02.sql b/db/views/analytics_clients_v02.sql new file mode 100644 index 0000000000..cc18742efe --- /dev/null +++ b/db/views/analytics_clients_v02.sql @@ -0,0 +1,45 @@ +SELECT +"id", +"data_source_id", +"PersonalID", +"NameDataQuality", +"SSNDataQuality", +"DOBDataQuality", +"AmIndAKNative", +"Asian", +"BlackAfAmerican", +"HispanicLatinaeo", +"MidEastNAfrican", +"NativeHIPacific", +"White", +"RaceNone", +"AdditionalRaceEthnicity", +"Woman", +"Man", +"NonBinary", +"CulturallySpecific", +"Transgender", +"Questioning", +"DifferentIdentity", +"GenderNone", +"DifferentIdentityText", +"VeteranStatus", +"YearEnteredService", +"YearSeparated", +"WorldWarII", +"KoreanWar", +"VietnamWar", +"DesertStorm", +"AfghanistanOEF", +"IraqOIF", +"IraqOND", +"OtherTheater", +"MilitaryBranch", +"DischargeStatus", +"DateCreated", +"DateUpdated", +"UserID", +"DateDeleted", +"ExportID" + + FROM "Client" WHERE "DateDeleted" is NULL diff --git a/db/warehouse/migrate/20241106163541_add_file_to_cde.rb b/db/warehouse/migrate/20241106163541_add_file_to_cde.rb new file mode 100644 index 0000000000..78e9b313ac --- /dev/null +++ b/db/warehouse/migrate/20241106163541_add_file_to_cde.rb @@ -0,0 +1,13 @@ +# Copyright 2016 - 2024 Green River Data Analysis, LLC +# +# License detail: https://github.com/greenriver/hmis-warehouse/blob/production/LICENSE.md +# + +class AddFileToCde < ActiveRecord::Migration[7.0] + def change + # use safety_assured (ignore StrongMigrations) here because validating a column full of nulls should still be fast + safety_assured do + add_reference :CustomDataElements, :value_file, null: true, foreign_key: { to_table: :files } + end + end +end diff --git a/db/warehouse/migrate/20241213204702_update_analytics_clients_to_version_2.rb b/db/warehouse/migrate/20241213204702_update_analytics_clients_to_version_2.rb new file mode 100644 index 0000000000..2d3c0ea34d --- /dev/null +++ b/db/warehouse/migrate/20241213204702_update_analytics_clients_to_version_2.rb @@ -0,0 +1,5 @@ +class UpdateAnalyticsClientsToVersion2 < ActiveRecord::Migration[7.0] + def change + update_view 'analytics.clients', version: 2, revert_to_version: 1 + end +end diff --git a/db/warehouse/migrate/20241213204837_create_analytics_client_piis.rb b/db/warehouse/migrate/20241213204837_create_analytics_client_piis.rb new file mode 100644 index 0000000000..87c0ba2d8b --- /dev/null +++ b/db/warehouse/migrate/20241213204837_create_analytics_client_piis.rb @@ -0,0 +1,5 @@ +class CreateAnalyticsClientPiis < ActiveRecord::Migration[7.0] + def change + create_view 'analytics.client_piis' + end +end diff --git a/db/warehouse/migrate/20241216184819_talent_configuration_flags.rb b/db/warehouse/migrate/20241216184819_talent_configuration_flags.rb new file mode 100644 index 0000000000..10931c9488 --- /dev/null +++ b/db/warehouse/migrate/20241216184819_talent_configuration_flags.rb @@ -0,0 +1,6 @@ +class TalentConfigurationFlags < ActiveRecord::Migration[7.0] + def change + add_column :configs, :default_lms_email_to_warehouse_email, :boolean + add_column :talentlms_configs, :allow_automatic_redirect_to_course, :boolean, default: true + end +end diff --git a/db/warehouse_structure.sql b/db/warehouse_structure.sql index b28ed7fc2d..baae2de17a 100644 --- a/db/warehouse_structure.sql +++ b/db/warehouse_structure.sql @@ -16,6 +16,13 @@ SET row_security = off; CREATE SCHEMA analytics; +-- +-- Name: hmis; Type: SCHEMA; Schema: -; Owner: - +-- + +CREATE SCHEMA hmis; + + -- -- Name: fuzzystrmatch; Type: EXTENSION; Schema: -; Owner: - -- @@ -150,8 +157,8 @@ CREATE TYPE public.record_type AS ENUM ( CREATE FUNCTION public.f_unaccent(text) RETURNS text LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE - AS $_$ -SELECT public.unaccent('public.unaccent', $1) -- schema-qualify function and dictionary + AS $_$ +SELECT public.unaccent('public.unaccent', $1) -- schema-qualify function and dictionary $_$; @@ -161,116 +168,116 @@ $_$; CREATE FUNCTION public.service_history_service_insert_trigger() RETURNS trigger LANGUAGE plpgsql - AS $$ - BEGIN - IF ( NEW.date BETWEEN DATE '2050-01-01' AND DATE '2050-12-31' ) THEN - INSERT INTO service_history_services_2050 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2049-01-01' AND DATE '2049-12-31' ) THEN - INSERT INTO service_history_services_2049 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2048-01-01' AND DATE '2048-12-31' ) THEN - INSERT INTO service_history_services_2048 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2047-01-01' AND DATE '2047-12-31' ) THEN - INSERT INTO service_history_services_2047 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2046-01-01' AND DATE '2046-12-31' ) THEN - INSERT INTO service_history_services_2046 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2045-01-01' AND DATE '2045-12-31' ) THEN - INSERT INTO service_history_services_2045 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2044-01-01' AND DATE '2044-12-31' ) THEN - INSERT INTO service_history_services_2044 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2043-01-01' AND DATE '2043-12-31' ) THEN - INSERT INTO service_history_services_2043 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2042-01-01' AND DATE '2042-12-31' ) THEN - INSERT INTO service_history_services_2042 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2041-01-01' AND DATE '2041-12-31' ) THEN - INSERT INTO service_history_services_2041 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2040-01-01' AND DATE '2040-12-31' ) THEN - INSERT INTO service_history_services_2040 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2039-01-01' AND DATE '2039-12-31' ) THEN - INSERT INTO service_history_services_2039 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2038-01-01' AND DATE '2038-12-31' ) THEN - INSERT INTO service_history_services_2038 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2037-01-01' AND DATE '2037-12-31' ) THEN - INSERT INTO service_history_services_2037 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2036-01-01' AND DATE '2036-12-31' ) THEN - INSERT INTO service_history_services_2036 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2035-01-01' AND DATE '2035-12-31' ) THEN - INSERT INTO service_history_services_2035 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2034-01-01' AND DATE '2034-12-31' ) THEN - INSERT INTO service_history_services_2034 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2033-01-01' AND DATE '2033-12-31' ) THEN - INSERT INTO service_history_services_2033 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2032-01-01' AND DATE '2032-12-31' ) THEN - INSERT INTO service_history_services_2032 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2031-01-01' AND DATE '2031-12-31' ) THEN - INSERT INTO service_history_services_2031 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2030-01-01' AND DATE '2030-12-31' ) THEN - INSERT INTO service_history_services_2030 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2029-01-01' AND DATE '2029-12-31' ) THEN - INSERT INTO service_history_services_2029 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2028-01-01' AND DATE '2028-12-31' ) THEN - INSERT INTO service_history_services_2028 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2027-01-01' AND DATE '2027-12-31' ) THEN - INSERT INTO service_history_services_2027 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2026-01-01' AND DATE '2026-12-31' ) THEN - INSERT INTO service_history_services_2026 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2025-01-01' AND DATE '2025-12-31' ) THEN - INSERT INTO service_history_services_2025 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2024-01-01' AND DATE '2024-12-31' ) THEN - INSERT INTO service_history_services_2024 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2023-01-01' AND DATE '2023-12-31' ) THEN - INSERT INTO service_history_services_2023 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2022-01-01' AND DATE '2022-12-31' ) THEN - INSERT INTO service_history_services_2022 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2021-01-01' AND DATE '2021-12-31' ) THEN - INSERT INTO service_history_services_2021 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2020-01-01' AND DATE '2020-12-31' ) THEN - INSERT INTO service_history_services_2020 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2019-01-01' AND DATE '2019-12-31' ) THEN - INSERT INTO service_history_services_2019 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2018-01-01' AND DATE '2018-12-31' ) THEN - INSERT INTO service_history_services_2018 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2017-01-01' AND DATE '2017-12-31' ) THEN - INSERT INTO service_history_services_2017 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2016-01-01' AND DATE '2016-12-31' ) THEN - INSERT INTO service_history_services_2016 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2015-01-01' AND DATE '2015-12-31' ) THEN - INSERT INTO service_history_services_2015 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2014-01-01' AND DATE '2014-12-31' ) THEN - INSERT INTO service_history_services_2014 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2013-01-01' AND DATE '2013-12-31' ) THEN - INSERT INTO service_history_services_2013 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2012-01-01' AND DATE '2012-12-31' ) THEN - INSERT INTO service_history_services_2012 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2011-01-01' AND DATE '2011-12-31' ) THEN - INSERT INTO service_history_services_2011 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2010-01-01' AND DATE '2010-12-31' ) THEN - INSERT INTO service_history_services_2010 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2009-01-01' AND DATE '2009-12-31' ) THEN - INSERT INTO service_history_services_2009 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2008-01-01' AND DATE '2008-12-31' ) THEN - INSERT INTO service_history_services_2008 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2007-01-01' AND DATE '2007-12-31' ) THEN - INSERT INTO service_history_services_2007 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2006-01-01' AND DATE '2006-12-31' ) THEN - INSERT INTO service_history_services_2006 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2005-01-01' AND DATE '2005-12-31' ) THEN - INSERT INTO service_history_services_2005 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2004-01-01' AND DATE '2004-12-31' ) THEN - INSERT INTO service_history_services_2004 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2003-01-01' AND DATE '2003-12-31' ) THEN - INSERT INTO service_history_services_2003 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2002-01-01' AND DATE '2002-12-31' ) THEN - INSERT INTO service_history_services_2002 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2001-01-01' AND DATE '2001-12-31' ) THEN - INSERT INTO service_history_services_2001 VALUES (NEW.*); - ELSIF ( NEW.date BETWEEN DATE '2000-01-01' AND DATE '2000-12-31' ) THEN - INSERT INTO service_history_services_2000 VALUES (NEW.*); - - ELSE - INSERT INTO service_history_services_remainder VALUES (NEW.*); - END IF; - RETURN NULL; - END; + AS $$ + BEGIN + IF ( NEW.date BETWEEN DATE '2050-01-01' AND DATE '2050-12-31' ) THEN + INSERT INTO service_history_services_2050 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2049-01-01' AND DATE '2049-12-31' ) THEN + INSERT INTO service_history_services_2049 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2048-01-01' AND DATE '2048-12-31' ) THEN + INSERT INTO service_history_services_2048 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2047-01-01' AND DATE '2047-12-31' ) THEN + INSERT INTO service_history_services_2047 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2046-01-01' AND DATE '2046-12-31' ) THEN + INSERT INTO service_history_services_2046 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2045-01-01' AND DATE '2045-12-31' ) THEN + INSERT INTO service_history_services_2045 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2044-01-01' AND DATE '2044-12-31' ) THEN + INSERT INTO service_history_services_2044 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2043-01-01' AND DATE '2043-12-31' ) THEN + INSERT INTO service_history_services_2043 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2042-01-01' AND DATE '2042-12-31' ) THEN + INSERT INTO service_history_services_2042 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2041-01-01' AND DATE '2041-12-31' ) THEN + INSERT INTO service_history_services_2041 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2040-01-01' AND DATE '2040-12-31' ) THEN + INSERT INTO service_history_services_2040 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2039-01-01' AND DATE '2039-12-31' ) THEN + INSERT INTO service_history_services_2039 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2038-01-01' AND DATE '2038-12-31' ) THEN + INSERT INTO service_history_services_2038 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2037-01-01' AND DATE '2037-12-31' ) THEN + INSERT INTO service_history_services_2037 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2036-01-01' AND DATE '2036-12-31' ) THEN + INSERT INTO service_history_services_2036 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2035-01-01' AND DATE '2035-12-31' ) THEN + INSERT INTO service_history_services_2035 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2034-01-01' AND DATE '2034-12-31' ) THEN + INSERT INTO service_history_services_2034 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2033-01-01' AND DATE '2033-12-31' ) THEN + INSERT INTO service_history_services_2033 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2032-01-01' AND DATE '2032-12-31' ) THEN + INSERT INTO service_history_services_2032 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2031-01-01' AND DATE '2031-12-31' ) THEN + INSERT INTO service_history_services_2031 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2030-01-01' AND DATE '2030-12-31' ) THEN + INSERT INTO service_history_services_2030 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2029-01-01' AND DATE '2029-12-31' ) THEN + INSERT INTO service_history_services_2029 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2028-01-01' AND DATE '2028-12-31' ) THEN + INSERT INTO service_history_services_2028 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2027-01-01' AND DATE '2027-12-31' ) THEN + INSERT INTO service_history_services_2027 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2026-01-01' AND DATE '2026-12-31' ) THEN + INSERT INTO service_history_services_2026 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2025-01-01' AND DATE '2025-12-31' ) THEN + INSERT INTO service_history_services_2025 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2024-01-01' AND DATE '2024-12-31' ) THEN + INSERT INTO service_history_services_2024 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2023-01-01' AND DATE '2023-12-31' ) THEN + INSERT INTO service_history_services_2023 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2022-01-01' AND DATE '2022-12-31' ) THEN + INSERT INTO service_history_services_2022 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2021-01-01' AND DATE '2021-12-31' ) THEN + INSERT INTO service_history_services_2021 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2020-01-01' AND DATE '2020-12-31' ) THEN + INSERT INTO service_history_services_2020 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2019-01-01' AND DATE '2019-12-31' ) THEN + INSERT INTO service_history_services_2019 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2018-01-01' AND DATE '2018-12-31' ) THEN + INSERT INTO service_history_services_2018 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2017-01-01' AND DATE '2017-12-31' ) THEN + INSERT INTO service_history_services_2017 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2016-01-01' AND DATE '2016-12-31' ) THEN + INSERT INTO service_history_services_2016 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2015-01-01' AND DATE '2015-12-31' ) THEN + INSERT INTO service_history_services_2015 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2014-01-01' AND DATE '2014-12-31' ) THEN + INSERT INTO service_history_services_2014 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2013-01-01' AND DATE '2013-12-31' ) THEN + INSERT INTO service_history_services_2013 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2012-01-01' AND DATE '2012-12-31' ) THEN + INSERT INTO service_history_services_2012 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2011-01-01' AND DATE '2011-12-31' ) THEN + INSERT INTO service_history_services_2011 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2010-01-01' AND DATE '2010-12-31' ) THEN + INSERT INTO service_history_services_2010 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2009-01-01' AND DATE '2009-12-31' ) THEN + INSERT INTO service_history_services_2009 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2008-01-01' AND DATE '2008-12-31' ) THEN + INSERT INTO service_history_services_2008 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2007-01-01' AND DATE '2007-12-31' ) THEN + INSERT INTO service_history_services_2007 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2006-01-01' AND DATE '2006-12-31' ) THEN + INSERT INTO service_history_services_2006 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2005-01-01' AND DATE '2005-12-31' ) THEN + INSERT INTO service_history_services_2005 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2004-01-01' AND DATE '2004-12-31' ) THEN + INSERT INTO service_history_services_2004 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2003-01-01' AND DATE '2003-12-31' ) THEN + INSERT INTO service_history_services_2003 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2002-01-01' AND DATE '2002-12-31' ) THEN + INSERT INTO service_history_services_2002 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2001-01-01' AND DATE '2001-12-31' ) THEN + INSERT INTO service_history_services_2001 VALUES (NEW.*); + ELSIF ( NEW.date BETWEEN DATE '2000-01-01' AND DATE '2000-12-31' ) THEN + INSERT INTO service_history_services_2000 VALUES (NEW.*); + + ELSE + INSERT INTO service_history_services_remainder VALUES (NEW.*); + END IF; + RETURN NULL; + END; $$; @@ -699,29 +706,52 @@ CREATE TABLE public."Client" ( -- --- Name: clients; Type: VIEW; Schema: analytics; Owner: - +-- Name: client_piis; Type: VIEW; Schema: analytics; Owner: - -- -CREATE VIEW analytics.clients AS - SELECT "PersonalID", +CREATE VIEW analytics.client_piis AS + SELECT id, + data_source_id, + "PersonalID", "FirstName", "MiddleName", "LastName", "NameSuffix", - "NameDataQuality", "SSN", + "DOB" + FROM public."Client" + WHERE ("DateDeleted" IS NULL); + + +-- +-- Name: clients; Type: VIEW; Schema: analytics; Owner: - +-- + +CREATE VIEW analytics.clients AS + SELECT id, + data_source_id, + "PersonalID", + "NameDataQuality", "SSNDataQuality", - "DOB", "DOBDataQuality", "AmIndAKNative", "Asian", "BlackAfAmerican", - "NativeHIOtherPacific", + "HispanicLatinaeo", + "MidEastNAfrican", + "NativeHIPacific", "White", "RaceNone", - "Ethnicity", - "Gender", - "OtherGender", + "AdditionalRaceEthnicity", + "Woman", + "Man", + "NonBinary", + "CulturallySpecific", + "Transgender", + "Questioning", + "DifferentIdentity", + "GenderNone", + "DifferentIdentityText", "VeteranStatus", "YearEnteredService", "YearSeparated", @@ -739,107 +769,7 @@ CREATE VIEW analytics.clients AS "DateUpdated", "UserID", "DateDeleted", - "ExportID", - data_source_id, - id, - disability_verified_on, - housing_assistance_network_released_on, - sync_with_cas, - dmh_eligible, - va_eligible, - hues_eligible, - hiv_positive, - housing_release_status, - chronically_homeless_for_cas, - us_citizen, - asylee, - ineligible_immigrant, - lifetime_sex_offender, - meth_production_conviction, - family_member, - child_in_household, - ha_eligible, - api_update_in_process, - api_update_started_at, - api_last_updated_at, - creator_id, - cspech_eligible, - consent_form_signed_on, - vispdat_prioritization_days_homeless, - generate_history_pdf, - congregate_housing, - sober_housing, - consent_form_id, - rrh_assessment_score, - ssvf_eligible, - rrh_desired, - youth_rrh_desired, - rrh_assessment_contact_info, - rrh_assessment_collected_at, - source_hash, - generate_manual_history_pdf, - requires_wheelchair_accessibility, - required_number_of_bedrooms, - required_minimum_occupancy, - requires_elevator_access, - neighborhood_interests, - verified_veteran_status, - interested_in_set_asides, - consent_expires_on, - pending_date_deleted, - cas_match_override, - vash_eligible, - consented_coc_codes, - income_maximization_assistance_requested, - income_total_monthly, - pending_subsidized_housing_placement, - pathways_domestic_violence, - rrh_th_desired, - sro_ok, - pathways_other_accessibility, - pathways_disabled_housing, - evicted, - dv_rrh_desired, - health_prioritized, - demographic_dirty, - "encrypted_FirstName", - "encrypted_FirstName_iv", - "encrypted_MiddleName", - "encrypted_MiddleName_iv", - "encrypted_LastName", - "encrypted_LastName_iv", - "encrypted_SSN", - "encrypted_SSN_iv", - "encrypted_NameSuffix", - "encrypted_NameSuffix_iv", - soundex_first, - soundex_last, - "Female", - "Male", - "GenderOther", - "Transgender", - "Questioning", - "GenderNone", - "NativeHIPacific", - "NoSingleGender", - tc_hat_additional_days_homeless, - pronouns, - sexual_orientation, - health_housing_navigator_id, - encampment_decomissioned, - va_verified_veteran, - "HispanicLatinaeo", - "MidEastNAfrican", - "AdditionalRaceEthnicity", - "Woman", - "Man", - "NonBinary", - "CulturallySpecific", - "DifferentIdentity", - "DifferentIdentityText", - search_name_full, - search_name_last, - lock_version + "ExportID" FROM public."Client" WHERE ("DateDeleted" IS NULL); @@ -1471,6 +1401,7 @@ CREATE TABLE public."CurrentLivingSituation" ( pending_date_deleted timestamp without time zone, source_hash character varying, "CLSSubsidyType" integer, + "CurrentLivingSituation2022" integer, verified_by_project_id bigint ); @@ -1502,6 +1433,7 @@ CREATE VIEW analytics.current_living_situations AS pending_date_deleted, source_hash, "CLSSubsidyType", + "CurrentLivingSituation2022", verified_by_project_id FROM public."CurrentLivingSituation" WHERE ("DateDeleted" IS NULL); @@ -1824,7 +1756,8 @@ CREATE TABLE public."CustomDataElements" ( "UserID" character varying(32) NOT NULL, "DateCreated" timestamp without time zone NOT NULL, "DateUpdated" timestamp without time zone NOT NULL, - "DateDeleted" timestamp without time zone + "DateDeleted" timestamp without time zone, + value_file_id bigint ); @@ -2411,6 +2344,7 @@ CREATE TABLE public."Enrollment" ( "PreferredLanguageDifferent" character varying, "VAMCStation" character varying, lock_version integer DEFAULT 0 NOT NULL, + "LivingSituation2022" integer, project_pk bigint ); @@ -2558,6 +2492,7 @@ CREATE VIEW analytics.enrollments AS "PreferredLanguageDifferent", "VAMCStation", lock_version, + "LivingSituation2022", project_pk FROM public."Enrollment" WHERE ("DateDeleted" IS NULL); @@ -2686,6 +2621,7 @@ CREATE TABLE public."Exit" ( source_hash character varying, pending_date_deleted timestamp without time zone, "DestinationSubsidyType" integer, + "Destination2022" integer, auto_exited timestamp without time zone ); @@ -2756,6 +2692,7 @@ CREATE VIEW analytics.exits AS source_hash, pending_date_deleted, "DestinationSubsidyType", + "Destination2022", auto_exited FROM public."Exit" WHERE ("DateDeleted" IS NULL); @@ -3019,8 +2956,8 @@ CREATE TABLE public.hmis_form_definitions ( created_at timestamp(6) without time zone NOT NULL, updated_at timestamp(6) without time zone NOT NULL, title character varying NOT NULL, - external_form_object_key character varying, deleted_at timestamp without time zone, + external_form_object_key character varying, backup_definition jsonb, managed_in_version_control boolean DEFAULT false ); @@ -3061,8 +2998,8 @@ CREATE VIEW analytics.hmis_form_definitions AS created_at, updated_at, title, - external_form_object_key, deleted_at, + external_form_object_key, backup_definition, managed_in_version_control FROM public.hmis_form_definitions @@ -3094,9 +3031,9 @@ CREATE TABLE public.hmis_form_processors ( current_living_situation_id integer, ce_assessment_id bigint, ce_event_id bigint, - backup_values jsonb, owner_type character varying NOT NULL, owner_id bigint NOT NULL, + backup_values jsonb, clh_location_id bigint ); @@ -3126,9 +3063,9 @@ CREATE VIEW analytics.hmis_form_processors AS current_living_situation_id, ce_assessment_id, ce_event_id, - backup_values, owner_type, owner_id, + backup_values, clh_location_id FROM public.hmis_form_processors; @@ -4060,67 +3997,70 @@ CREATE VIEW analytics.youth_education_statuses AS -- --- Name: Affiliation_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public."Affiliation_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: Affiliation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public."Affiliation_id_seq" OWNED BY public."Affiliation".id; - - --- --- Name: AssessmentQuestions_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public."AssessmentQuestions_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: AssessmentQuestions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public."AssessmentQuestions_id_seq" OWNED BY public."AssessmentQuestions".id; - - --- --- Name: AssessmentResults_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public."AssessmentResults_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: AssessmentResults_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_clients; Type: TABLE; Schema: public; Owner: - -- -ALTER SEQUENCE public."AssessmentResults_id_seq" OWNED BY public."AssessmentResults".id; +CREATE TABLE public.hmis_2022_clients ( + id bigint NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +) +PARTITION BY HASH (importer_log_id); -- --- Name: Assessment_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- -CREATE SEQUENCE public."Assessment_id_seq" +CREATE SEQUENCE public.hmis_2022_clients_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -4129,74 +4069,277 @@ CREATE SEQUENCE public."Assessment_id_seq" -- --- Name: Assessment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- -ALTER SEQUENCE public."Assessment_id_seq" OWNED BY public."Assessment".id; +ALTER SEQUENCE public.hmis_2022_clients_id_seq OWNED BY public.hmis_2022_clients.id; -- --- Name: CEParticipation_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_0; Type: TABLE; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CEParticipation_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +CREATE TABLE hmis.hmis_2022_clients_partitioned_0 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); -- --- Name: CEParticipation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_1; Type: TABLE; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CEParticipation_id_seq" OWNED BY public."CEParticipation".id; +CREATE TABLE hmis.hmis_2022_clients_partitioned_1 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); -- --- Name: Client_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_10; Type: TABLE; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."Client_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +CREATE TABLE hmis.hmis_2022_clients_partitioned_10 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); -- --- Name: Client_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_11; Type: TABLE; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."Client_id_seq" OWNED BY public."Client".id; +CREATE TABLE hmis.hmis_2022_clients_partitioned_11 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); -- --- Name: ClientUnencrypted; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_12; Type: TABLE; Schema: hmis; Owner: - -- -CREATE TABLE public."ClientUnencrypted" ( +CREATE TABLE hmis.hmis_2022_clients_partitioned_12 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, "PersonalID" character varying, - "FirstName" character varying(150), - "MiddleName" character varying(150), - "LastName" character varying(150), - "NameSuffix" character varying(50), + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, "NameDataQuality" integer, "SSN" character varying, - "SSNDataQuality" integer, + "SSNDataQuality" character varying, "DOB" date, - "DOBDataQuality" integer, + "DOBDataQuality" character varying, "AmIndAKNative" integer, "Asian" integer, "BlackAfAmerican" integer, - "NativeHIOtherPacific" integer, + "NativeHIPacific" integer, "White" integer, "RaceNone" integer, "Ethnicity" integer, - "Gender" integer, - "OtherGender" character varying(50), + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, "VeteranStatus" integer, "YearEnteredService" integer, "YearSeparated" integer, @@ -4215,56434 +4358,335605 @@ CREATE TABLE public."ClientUnencrypted" ( "UserID" character varying, "DateDeleted" timestamp without time zone, "ExportID" character varying, - data_source_id integer, - id integer DEFAULT nextval('public."Client_id_seq"'::regclass) NOT NULL, - disability_verified_on timestamp without time zone, - housing_assistance_network_released_on timestamp without time zone, - sync_with_cas boolean DEFAULT false NOT NULL, - dmh_eligible boolean DEFAULT false NOT NULL, - va_eligible boolean DEFAULT false NOT NULL, - hues_eligible boolean DEFAULT false NOT NULL, - hiv_positive boolean DEFAULT false NOT NULL, - housing_release_status character varying, - chronically_homeless_for_cas boolean DEFAULT false NOT NULL, - us_citizen boolean DEFAULT false NOT NULL, - asylee boolean DEFAULT false NOT NULL, - ineligible_immigrant boolean DEFAULT false NOT NULL, - lifetime_sex_offender boolean DEFAULT false NOT NULL, - meth_production_conviction boolean DEFAULT false NOT NULL, - family_member boolean DEFAULT false NOT NULL, - child_in_household boolean DEFAULT false NOT NULL, - ha_eligible boolean DEFAULT false NOT NULL, - api_update_in_process boolean DEFAULT false NOT NULL, - api_update_started_at timestamp without time zone, - api_last_updated_at timestamp without time zone, - creator_id integer, - cspech_eligible boolean DEFAULT false, - consent_form_signed_on date, - vispdat_prioritization_days_homeless integer, - generate_history_pdf boolean DEFAULT false, - congregate_housing boolean DEFAULT false, - sober_housing boolean DEFAULT false, - consent_form_id integer, - rrh_assessment_score integer, - ssvf_eligible boolean DEFAULT false NOT NULL, - rrh_desired boolean DEFAULT false NOT NULL, - youth_rrh_desired boolean DEFAULT false NOT NULL, - rrh_assessment_contact_info character varying, - rrh_assessment_collected_at timestamp without time zone, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, source_hash character varying, - generate_manual_history_pdf boolean DEFAULT false NOT NULL, - requires_wheelchair_accessibility boolean DEFAULT false, - required_number_of_bedrooms integer DEFAULT 1, - required_minimum_occupancy integer DEFAULT 1, - requires_elevator_access boolean DEFAULT false, - neighborhood_interests jsonb DEFAULT '[]'::jsonb NOT NULL, - verified_veteran_status character varying, - interested_in_set_asides boolean DEFAULT false, - consent_expires_on date, - pending_date_deleted timestamp without time zone, - cas_match_override date, - vash_eligible boolean DEFAULT false, - consented_coc_codes jsonb DEFAULT '[]'::jsonb, - income_maximization_assistance_requested boolean DEFAULT false NOT NULL, - income_total_monthly integer, - pending_subsidized_housing_placement boolean DEFAULT false NOT NULL, - pathways_domestic_violence boolean DEFAULT false NOT NULL, - rrh_th_desired boolean DEFAULT false NOT NULL, - sro_ok boolean DEFAULT false NOT NULL, - pathways_other_accessibility boolean DEFAULT false NOT NULL, - pathways_disabled_housing boolean DEFAULT false NOT NULL, - evicted boolean DEFAULT false NOT NULL, - dv_rrh_desired boolean DEFAULT false, - health_prioritized character varying, - demographic_dirty boolean DEFAULT true, - "encrypted_FirstName" character varying, - "encrypted_FirstName_iv" character varying, - "encrypted_MiddleName" character varying, - "encrypted_MiddleName_iv" character varying, - "encrypted_LastName" character varying, - "encrypted_LastName_iv" character varying, - "encrypted_SSN" character varying, - "encrypted_SSN_iv" character varying, - "encrypted_NameSuffix" character varying, - "encrypted_NameSuffix_iv" character varying, - soundex_first character varying, - soundex_last character varying + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true ); -- --- Name: CurrentLivingSituation_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_13; Type: TABLE; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CurrentLivingSituation_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +CREATE TABLE hmis.hmis_2022_clients_partitioned_13 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); -- --- Name: CurrentLivingSituation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_14; Type: TABLE; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CurrentLivingSituation_id_seq" OWNED BY public."CurrentLivingSituation".id; +CREATE TABLE hmis.hmis_2022_clients_partitioned_14 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); -- --- Name: CustomAssessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_15; Type: TABLE; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CustomAssessments_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +CREATE TABLE hmis.hmis_2022_clients_partitioned_15 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); -- --- Name: CustomAssessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_16; Type: TABLE; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CustomAssessments_id_seq" OWNED BY public."CustomAssessments".id; +CREATE TABLE hmis.hmis_2022_clients_partitioned_16 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); -- --- Name: CustomCaseNote; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_17; Type: TABLE; Schema: hmis; Owner: - -- -CREATE TABLE public."CustomCaseNote" ( - id bigint NOT NULL, - "CustomCaseNoteID" character varying NOT NULL, - "PersonalID" character varying NOT NULL, - "EnrollmentID" character varying, - data_source_id bigint NOT NULL, - content text NOT NULL, - "UserID" character varying, +CREATE TABLE hmis.hmis_2022_clients_partitioned_17 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, "DateCreated" timestamp without time zone, "DateUpdated" timestamp without time zone, + "UserID" character varying, "DateDeleted" timestamp without time zone, - information_date date + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true ); -- --- Name: CustomCaseNote_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_18; Type: TABLE; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CustomCaseNote_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +CREATE TABLE hmis.hmis_2022_clients_partitioned_18 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); -- --- Name: CustomCaseNote_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_19; Type: TABLE; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CustomCaseNote_id_seq" OWNED BY public."CustomCaseNote".id; +CREATE TABLE hmis.hmis_2022_clients_partitioned_19 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); -- --- Name: CustomClientAddress_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_2; Type: TABLE; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CustomClientAddress_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +CREATE TABLE hmis.hmis_2022_clients_partitioned_2 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); -- --- Name: CustomClientAddress_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_20; Type: TABLE; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CustomClientAddress_id_seq" OWNED BY public."CustomClientAddress".id; +CREATE TABLE hmis.hmis_2022_clients_partitioned_20 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); -- --- Name: CustomClientAssessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_clients_partitioned_21; Type: TABLE; Schema: hmis; Owner: - -- -CREATE TABLE public."CustomClientAssessments" ( - id bigint NOT NULL, - "CustomClientAssessmentID" character varying NOT NULL, - "PersonalID" character varying NOT NULL, - "UserID" character varying(32) NOT NULL, - "InformationDate" date NOT NULL, - data_source_id integer, - "DateCreated" timestamp without time zone NOT NULL, - "DateUpdated" timestamp without time zone NOT NULL, - "DateDeleted" timestamp without time zone -); +CREATE TABLE hmis.hmis_2022_clients_partitioned_21 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_22; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_22 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_23; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_23 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_24; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_24 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_25; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_25 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_26; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_26 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_27; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_27 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_28; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_28 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_29; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_29 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_3; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_3 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_30; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_30 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_31; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_31 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_32; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_32 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_33; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_33 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_34; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_34 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_35; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_35 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_36; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_36 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_37; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_37 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_38; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_38 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_39; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_39 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_4; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_4 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_40; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_40 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_41; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_41 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_42; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_42 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_43; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_43 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_44; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_44 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_45; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_45 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_46; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_46 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_47; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_47 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_48; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_48 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_49; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_49 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_5; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_5 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_50; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_50 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_51; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_51 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_52; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_52 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_53; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_53 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_54; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_54 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_55; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_55 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_56; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_56 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_57; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_57 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_58; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_58 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_59; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_59 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_6; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_6 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_60; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_60 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_61; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_61 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_62; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_62 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_63; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_63 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_64; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_64 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_65; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_65 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_66; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_66 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_67; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_67 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_68; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_68 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_69; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_69 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_7; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_7 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_70; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_70 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_8; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_8 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_clients_partitioned_9; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_clients_partitioned_9 ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_enrollments ( + id bigint NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +) +PARTITION BY HASH (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_enrollments_id_seq OWNED BY public.hmis_2022_enrollments.id; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_0 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_1 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_10 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_11 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_12 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_13 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_14 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_15 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_16 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_17 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_18 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_19 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_2 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_20 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_21 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_22 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_23 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_24 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_25 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_26 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_27 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_28 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_29 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_3 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_30 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_31 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_32 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_33 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_34 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_35 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_36 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_37 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_38 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_39 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_4 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_40 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_41 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_42 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_43 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_44 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_45 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_46 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_47 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_48 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_49 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_5 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_50 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_51 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_52 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_53 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_54 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_55 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_56 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_57 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_58 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_59 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_6 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_60 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_61 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_62 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_63 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_64 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_65 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_66 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_67 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_68 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_69 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_7 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_70 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_8 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_enrollments_partitioned_9 ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_exits ( + id bigint NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +) +PARTITION BY HASH (importer_log_id); + + +-- +-- Name: hmis_2022_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_exits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_exits_id_seq OWNED BY public.hmis_2022_exits.id; + + +-- +-- Name: hmis_2022_exits_partitioned_0; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_0 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_1; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_1 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_10; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_10 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_11; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_11 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_12; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_12 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_13; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_13 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_14; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_14 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_15; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_15 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_16; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_16 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_17; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_17 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_18; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_18 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_19; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_19 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_2; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_2 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_20; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_20 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_21; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_21 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_22; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_22 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_23; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_23 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_24; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_24 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_25; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_25 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_26; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_26 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_27; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_27 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_28; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_28 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_29; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_29 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_3; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_3 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_30; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_30 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_31; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_31 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_32; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_32 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_33; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_33 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_34; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_34 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_35; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_35 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_36; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_36 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_37; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_37 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_38; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_38 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_39; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_39 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_4; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_4 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_40; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_40 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_41; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_41 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_42; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_42 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_43; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_43 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_44; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_44 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_45; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_45 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_46; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_46 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_47; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_47 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_48; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_48 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_49; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_49 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_5; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_5 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_50; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_50 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_51; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_51 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_52; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_52 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_53; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_53 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_54; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_54 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_55; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_55 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_56; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_56 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_57; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_57 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_58; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_58 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_59; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_59 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_6; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_6 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_60; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_60 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_61; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_61 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_62; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_62 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_63; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_63 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_64; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_64 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_65; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_65 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_66; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_66 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_67; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_67 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_68; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_68 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_69; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_69 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_7; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_7 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_70; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_70 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_8; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_8 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exits_partitioned_9; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_exits_partitioned_9 ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_services ( + id bigint NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +) +PARTITION BY HASH (importer_log_id); + + +-- +-- Name: hmis_2022_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_services_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_services_id_seq OWNED BY public.hmis_2022_services.id; + + +-- +-- Name: hmis_2022_services_partitioned_0; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_0 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_1; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_1 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_10; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_10 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_11; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_11 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_12; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_12 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_13; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_13 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_14; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_14 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_15; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_15 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_16; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_16 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_17; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_17 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_18; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_18 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_19; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_19 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_2; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_2 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_20; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_20 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_21; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_21 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_22; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_22 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_23; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_23 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_24; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_24 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_25; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_25 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_26; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_26 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_27; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_27 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_28; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_28 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_29; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_29 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_3; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_3 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_30; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_30 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_31; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_31 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_32; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_32 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_33; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_33 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_34; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_34 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_35; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_35 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_36; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_36 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_37; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_37 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_38; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_38 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_39; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_39 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_4; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_4 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_40; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_40 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_41; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_41 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_42; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_42 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_43; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_43 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_44; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_44 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_45; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_45 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_46; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_46 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_47; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_47 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_48; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_48 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_49; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_49 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_5; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_5 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_50; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_50 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_51; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_51 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_52; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_52 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_53; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_53 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_54; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_54 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_55; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_55 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_56; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_56 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_57; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_57 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_58; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_58 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_59; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_59 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_6; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_6 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_60; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_60 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_61; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_61 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_62; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_62 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_63; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_63 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_64; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_64 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_65; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_65 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_66; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_66 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_67; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_67 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_68; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_68 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_69; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_69 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_7; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_7 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_70; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_70 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_8; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_8 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_services_partitioned_9; Type: TABLE; Schema: hmis; Owner: - +-- + +CREATE TABLE hmis.hmis_2022_services_partitioned_9 ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: Affiliation_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Affiliation_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Affiliation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Affiliation_id_seq" OWNED BY public."Affiliation".id; + + +-- +-- Name: AssessmentQuestions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."AssessmentQuestions_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: AssessmentQuestions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."AssessmentQuestions_id_seq" OWNED BY public."AssessmentQuestions".id; + + +-- +-- Name: AssessmentResults_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."AssessmentResults_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: AssessmentResults_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."AssessmentResults_id_seq" OWNED BY public."AssessmentResults".id; + + +-- +-- Name: Assessment_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Assessment_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Assessment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Assessment_id_seq" OWNED BY public."Assessment".id; + + +-- +-- Name: CEParticipation_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CEParticipation_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CEParticipation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CEParticipation_id_seq" OWNED BY public."CEParticipation".id; + + +-- +-- Name: Client_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Client_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Client_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Client_id_seq" OWNED BY public."Client".id; + + +-- +-- Name: ClientUnencrypted; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public."ClientUnencrypted" ( + "PersonalID" character varying, + "FirstName" character varying(150), + "MiddleName" character varying(150), + "LastName" character varying(150), + "NameSuffix" character varying(50), + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" integer, + "DOB" date, + "DOBDataQuality" integer, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIOtherPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Gender" integer, + "OtherGender" character varying(50), + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer, + id integer DEFAULT nextval('public."Client_id_seq"'::regclass) NOT NULL, + disability_verified_on timestamp without time zone, + housing_assistance_network_released_on timestamp without time zone, + sync_with_cas boolean DEFAULT false NOT NULL, + dmh_eligible boolean DEFAULT false NOT NULL, + va_eligible boolean DEFAULT false NOT NULL, + hues_eligible boolean DEFAULT false NOT NULL, + hiv_positive boolean DEFAULT false NOT NULL, + housing_release_status character varying, + chronically_homeless_for_cas boolean DEFAULT false NOT NULL, + us_citizen boolean DEFAULT false NOT NULL, + asylee boolean DEFAULT false NOT NULL, + ineligible_immigrant boolean DEFAULT false NOT NULL, + lifetime_sex_offender boolean DEFAULT false NOT NULL, + meth_production_conviction boolean DEFAULT false NOT NULL, + family_member boolean DEFAULT false NOT NULL, + child_in_household boolean DEFAULT false NOT NULL, + ha_eligible boolean DEFAULT false NOT NULL, + api_update_in_process boolean DEFAULT false NOT NULL, + api_update_started_at timestamp without time zone, + api_last_updated_at timestamp without time zone, + creator_id integer, + cspech_eligible boolean DEFAULT false, + consent_form_signed_on date, + vispdat_prioritization_days_homeless integer, + generate_history_pdf boolean DEFAULT false, + congregate_housing boolean DEFAULT false, + sober_housing boolean DEFAULT false, + consent_form_id integer, + rrh_assessment_score integer, + ssvf_eligible boolean DEFAULT false NOT NULL, + rrh_desired boolean DEFAULT false NOT NULL, + youth_rrh_desired boolean DEFAULT false NOT NULL, + rrh_assessment_contact_info character varying, + rrh_assessment_collected_at timestamp without time zone, + source_hash character varying, + generate_manual_history_pdf boolean DEFAULT false NOT NULL, + requires_wheelchair_accessibility boolean DEFAULT false, + required_number_of_bedrooms integer DEFAULT 1, + required_minimum_occupancy integer DEFAULT 1, + requires_elevator_access boolean DEFAULT false, + neighborhood_interests jsonb DEFAULT '[]'::jsonb NOT NULL, + verified_veteran_status character varying, + interested_in_set_asides boolean DEFAULT false, + consent_expires_on date, + pending_date_deleted timestamp without time zone, + cas_match_override date, + vash_eligible boolean DEFAULT false, + consented_coc_codes jsonb DEFAULT '[]'::jsonb, + income_maximization_assistance_requested boolean DEFAULT false NOT NULL, + income_total_monthly integer, + pending_subsidized_housing_placement boolean DEFAULT false NOT NULL, + pathways_domestic_violence boolean DEFAULT false NOT NULL, + rrh_th_desired boolean DEFAULT false NOT NULL, + sro_ok boolean DEFAULT false NOT NULL, + pathways_other_accessibility boolean DEFAULT false NOT NULL, + pathways_disabled_housing boolean DEFAULT false NOT NULL, + evicted boolean DEFAULT false NOT NULL, + dv_rrh_desired boolean DEFAULT false, + health_prioritized character varying, + demographic_dirty boolean DEFAULT true, + "encrypted_FirstName" character varying, + "encrypted_FirstName_iv" character varying, + "encrypted_MiddleName" character varying, + "encrypted_MiddleName_iv" character varying, + "encrypted_LastName" character varying, + "encrypted_LastName_iv" character varying, + "encrypted_SSN" character varying, + "encrypted_SSN_iv" character varying, + "encrypted_NameSuffix" character varying, + "encrypted_NameSuffix_iv" character varying, + soundex_first character varying, + soundex_last character varying +); + + +-- +-- Name: CurrentLivingSituation_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CurrentLivingSituation_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CurrentLivingSituation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CurrentLivingSituation_id_seq" OWNED BY public."CurrentLivingSituation".id; + + +-- +-- Name: CustomAssessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CustomAssessments_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CustomAssessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CustomAssessments_id_seq" OWNED BY public."CustomAssessments".id; + + +-- +-- Name: CustomCaseNote; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public."CustomCaseNote" ( + id bigint NOT NULL, + "CustomCaseNoteID" character varying NOT NULL, + "PersonalID" character varying NOT NULL, + "EnrollmentID" character varying, + data_source_id bigint NOT NULL, + content text NOT NULL, + "UserID" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "DateDeleted" timestamp without time zone, + information_date date +); + + +-- +-- Name: CustomCaseNote_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CustomCaseNote_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CustomCaseNote_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CustomCaseNote_id_seq" OWNED BY public."CustomCaseNote".id; + + +-- +-- Name: CustomClientAddress_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CustomClientAddress_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CustomClientAddress_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CustomClientAddress_id_seq" OWNED BY public."CustomClientAddress".id; + + +-- +-- Name: CustomClientAssessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public."CustomClientAssessments" ( + id bigint NOT NULL, + "CustomClientAssessmentID" character varying NOT NULL, + "PersonalID" character varying NOT NULL, + "UserID" character varying(32) NOT NULL, + "InformationDate" date NOT NULL, + data_source_id integer, + "DateCreated" timestamp without time zone NOT NULL, + "DateUpdated" timestamp without time zone NOT NULL, + "DateDeleted" timestamp without time zone +); + + +-- +-- Name: CustomClientAssessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CustomClientAssessments_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CustomClientAssessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CustomClientAssessments_id_seq" OWNED BY public."CustomClientAssessments".id; + + +-- +-- Name: CustomClientContactPoint_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CustomClientContactPoint_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CustomClientContactPoint_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CustomClientContactPoint_id_seq" OWNED BY public."CustomClientContactPoint".id; + + +-- +-- Name: CustomClientName_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CustomClientName_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CustomClientName_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CustomClientName_id_seq" OWNED BY public."CustomClientName".id; + + +-- +-- Name: CustomDataElementDefinitions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CustomDataElementDefinitions_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CustomDataElementDefinitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CustomDataElementDefinitions_id_seq" OWNED BY public."CustomDataElementDefinitions".id; + + +-- +-- Name: CustomDataElements_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CustomDataElements_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CustomDataElements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CustomDataElements_id_seq" OWNED BY public."CustomDataElements".id; + + +-- +-- Name: CustomProjectAssessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public."CustomProjectAssessments" ( + id bigint NOT NULL, + "CustomProjectAssessmentID" character varying NOT NULL, + "ProjectID" character varying NOT NULL, + "UserID" character varying(32) NOT NULL, + "InformationDate" date NOT NULL, + data_source_id integer, + "DateCreated" timestamp without time zone NOT NULL, + "DateUpdated" timestamp without time zone NOT NULL, + "DateDeleted" timestamp without time zone +); + + +-- +-- Name: CustomProjectAssessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CustomProjectAssessments_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CustomProjectAssessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CustomProjectAssessments_id_seq" OWNED BY public."CustomProjectAssessments".id; + + +-- +-- Name: CustomServiceCategories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CustomServiceCategories_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CustomServiceCategories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CustomServiceCategories_id_seq" OWNED BY public."CustomServiceCategories".id; + + +-- +-- Name: CustomServiceTypes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CustomServiceTypes_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CustomServiceTypes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CustomServiceTypes_id_seq" OWNED BY public."CustomServiceTypes".id; + + +-- +-- Name: CustomServices_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."CustomServices_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: CustomServices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."CustomServices_id_seq" OWNED BY public."CustomServices".id; + + +-- +-- Name: Disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Disabilities_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Disabilities_id_seq" OWNED BY public."Disabilities".id; + + +-- +-- Name: EmploymentEducation_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."EmploymentEducation_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: EmploymentEducation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."EmploymentEducation_id_seq" OWNED BY public."EmploymentEducation".id; + + +-- +-- Name: EnrollmentCoC_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."EnrollmentCoC_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: EnrollmentCoC_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."EnrollmentCoC_id_seq" OWNED BY public."EnrollmentCoC".id; + + +-- +-- Name: Enrollment_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Enrollment_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Enrollment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Enrollment_id_seq" OWNED BY public."Enrollment".id; + + +-- +-- Name: Event_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Event_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Event_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Event_id_seq" OWNED BY public."Event".id; + + +-- +-- Name: Exit_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Exit_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Exit_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Exit_id_seq" OWNED BY public."Exit".id; + + +-- +-- Name: Export_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Export_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Export_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Export_id_seq" OWNED BY public."Export".id; + + +-- +-- Name: Funder_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Funder_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Funder_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Funder_id_seq" OWNED BY public."Funder".id; + + +-- +-- Name: Geography; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public."Geography" ( + "GeographyID" character varying, + "ProjectID" character varying, + "CoCCode" character varying(50), + "PrincipalSite" integer, + "Geocode" character varying(50), + "Address1" character varying, + "City" character varying, + "State" character varying(2), + "ZIP" character varying(10), + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying(100), + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer, + id integer NOT NULL, + "InformationDate" date, + "Address2" character varying, + "GeographyType" integer, + source_hash character varying, + geocode_override character varying(6), + geography_type_override integer, + information_date_override date, + pending_date_deleted timestamp without time zone +); + + +-- +-- Name: Geography_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Geography_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Geography_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Geography_id_seq" OWNED BY public."Geography".id; + + +-- +-- Name: HMISParticipation_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."HMISParticipation_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: HMISParticipation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."HMISParticipation_id_seq" OWNED BY public."HMISParticipation".id; + + +-- +-- Name: HealthAndDV_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."HealthAndDV_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: HealthAndDV_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."HealthAndDV_id_seq" OWNED BY public."HealthAndDV".id; + + +-- +-- Name: IncomeBenefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."IncomeBenefits_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: IncomeBenefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."IncomeBenefits_id_seq" OWNED BY public."IncomeBenefits".id; + + +-- +-- Name: Inventory_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Inventory_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Inventory_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Inventory_id_seq" OWNED BY public."Inventory".id; + + +-- +-- Name: Organization_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Organization_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Organization_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Organization_id_seq" OWNED BY public."Organization".id; + + +-- +-- Name: ProjectCoC_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."ProjectCoC_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ProjectCoC_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."ProjectCoC_id_seq" OWNED BY public."ProjectCoC".id; + + +-- +-- Name: Project_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Project_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Project_id_seq" OWNED BY public."Project".id; + + +-- +-- Name: Services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."Services_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: Services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."Services_id_seq" OWNED BY public."Services".id; + + +-- +-- Name: Site; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public."Site" AS + SELECT "GeographyID", + "ProjectID", + "CoCCode", + "PrincipalSite", + "Geocode", + "Address1", + "City", + "State", + "ZIP", + "DateCreated", + "DateUpdated", + "UserID", + "DateDeleted", + "ExportID", + data_source_id, + id, + "InformationDate", + "Address2", + "GeographyType", + source_hash + FROM public."Geography"; + + +-- +-- Name: User_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."User_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: User_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."User_id_seq" OWNED BY public."User".id; + + +-- +-- Name: YouthEducationStatus_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public."YouthEducationStatus_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: YouthEducationStatus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public."YouthEducationStatus_id_seq" OWNED BY public."YouthEducationStatus".id; + + +-- +-- Name: ac_hmis_projects_import_attempts; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ac_hmis_projects_import_attempts ( + id bigint NOT NULL, + status character varying DEFAULT 'init'::character varying NOT NULL, + etag character varying NOT NULL, + key text NOT NULL, + result jsonb DEFAULT '{}'::jsonb NOT NULL, + attempted_at timestamp without time zone NOT NULL +); + + +-- +-- Name: COLUMN ac_hmis_projects_import_attempts.etag; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.ac_hmis_projects_import_attempts.etag IS 'fingerprint of the file'; + + +-- +-- Name: COLUMN ac_hmis_projects_import_attempts.key; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.ac_hmis_projects_import_attempts.key IS 'path in an s3 bucket to the file'; + + +-- +-- Name: COLUMN ac_hmis_projects_import_attempts.attempted_at; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.ac_hmis_projects_import_attempts.attempted_at IS 'last time an import was attempted'; + + +-- +-- Name: ac_hmis_projects_import_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ac_hmis_projects_import_attempts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ac_hmis_projects_import_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ac_hmis_projects_import_attempts_id_seq OWNED BY public.ac_hmis_projects_import_attempts.id; + + +-- +-- Name: ad_hoc_batches; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ad_hoc_batches ( + id integer NOT NULL, + ad_hoc_data_source_id integer, + description character varying NOT NULL, + uploaded_count integer, + matched_count integer, + started_at timestamp without time zone, + completed_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + import_errors character varying, + file character varying, + name character varying, + size character varying, + content_type character varying, + content bytea, + user_id integer +); + + +-- +-- Name: ad_hoc_batches_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ad_hoc_batches_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ad_hoc_batches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ad_hoc_batches_id_seq OWNED BY public.ad_hoc_batches.id; + + +-- +-- Name: ad_hoc_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ad_hoc_clients ( + id integer NOT NULL, + ad_hoc_data_source_id integer, + client_id integer, + matching_client_ids jsonb, + batch_id integer, + first_name character varying, + middle_name character varying, + last_name character varying, + ssn character varying, + dob date, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: ad_hoc_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ad_hoc_clients_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ad_hoc_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ad_hoc_clients_id_seq OWNED BY public.ad_hoc_clients.id; + + +-- +-- Name: ad_hoc_data_sources; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ad_hoc_data_sources ( + id integer NOT NULL, + name character varying NOT NULL, + short_name character varying, + description character varying, + active boolean DEFAULT true NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + user_id bigint +); + + +-- +-- Name: ad_hoc_data_sources_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ad_hoc_data_sources_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ad_hoc_data_sources_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ad_hoc_data_sources_id_seq OWNED BY public.ad_hoc_data_sources.id; + + +-- +-- Name: administrative_events; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.administrative_events ( + id integer NOT NULL, + user_id integer NOT NULL, + date date NOT NULL, + title character varying NOT NULL, + description character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: administrative_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.administrative_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: administrative_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.administrative_events_id_seq OWNED BY public.administrative_events.id; + + +-- +-- Name: anomalies; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.anomalies ( + id integer NOT NULL, + client_id integer, + submitted_by integer, + description character varying, + status character varying NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +-- +-- Name: anomalies_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.anomalies_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: anomalies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.anomalies_id_seq OWNED BY public.anomalies.id; + + +-- +-- Name: ansd_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ansd_enrollments ( + id bigint NOT NULL, + report_id bigint, + enrollment_id bigint, + project_name character varying, + project_type integer, + household_id character varying, + household_type character varying, + prior_living_situation_category character varying, + entry_date date, + move_in_date date, + exit_date date, + adjusted_exit_date date, + exit_type character varying, + destination integer, + destination_text character varying, + relationship character varying, + personal_id character varying, + age integer, + gender character varying, + primary_race character varying, + race_list character varying, + ethnicity character varying, + ce_entry_date date, + ce_referral_date date, + ce_referral_id character varying, + return_date date, + deleted_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + destination_client_id integer, + relationship_to_hoh integer, + placed_date date, + project_id_integer bigint, + project_id bigint +); + + +-- +-- Name: ansd_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ansd_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ansd_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ansd_enrollments_id_seq OWNED BY public.ansd_enrollments.id; + + +-- +-- Name: ansd_events; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ansd_events ( + id bigint NOT NULL, + enrollment_id bigint, + event_id character varying, + event_date date, + event character varying, + location character varying, + project_name character varying, + project_type character varying, + referral_result integer, + result_date date, + deleted_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + personal_id character varying, + source_enrollment_id character varying +); + + +-- +-- Name: ansd_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ansd_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ansd_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ansd_events_id_seq OWNED BY public.ansd_events.id; + + +-- +-- Name: api_client_data_source_ids; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.api_client_data_source_ids ( + id integer NOT NULL, + warehouse_id character varying, + id_in_data_source character varying, + site_id_in_data_source integer, + data_source_id integer, + client_id integer, + last_contact date, + temporary_high_priority boolean DEFAULT false NOT NULL +); + + +-- +-- Name: api_client_data_source_ids_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.api_client_data_source_ids_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: api_client_data_source_ids_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.api_client_data_source_ids_id_seq OWNED BY public.api_client_data_source_ids.id; + + +-- +-- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ar_internal_metadata ( + key character varying NOT NULL, + value character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: assessment_answer_lookups; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.assessment_answer_lookups ( + id bigint NOT NULL, + assessment_question character varying, + response_code character varying, + response_text character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + data_source_id integer +); + + +-- +-- Name: assessment_answer_lookups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.assessment_answer_lookups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: assessment_answer_lookups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.assessment_answer_lookups_id_seq OWNED BY public.assessment_answer_lookups.id; + + +-- +-- Name: available_file_tags; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.available_file_tags ( + id integer NOT NULL, + name character varying, + "group" character varying, + included_info character varying, + weight integer DEFAULT 0, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + document_ready boolean DEFAULT false, + notification_trigger boolean DEFAULT false, + consent_form boolean DEFAULT false, + note character varying, + full_release boolean DEFAULT false NOT NULL, + requires_effective_date boolean DEFAULT false NOT NULL, + requires_expiration_date boolean DEFAULT false NOT NULL, + required_for character varying, + coc_available boolean DEFAULT false NOT NULL, + verified_homeless_history boolean DEFAULT false NOT NULL, + ce_self_report_certification boolean DEFAULT false NOT NULL +); + + +-- +-- Name: available_file_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.available_file_tags_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: available_file_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.available_file_tags_id_seq OWNED BY public.available_file_tags.id; + + +-- +-- Name: lookups_ethnicities; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.lookups_ethnicities ( + id bigint NOT NULL, + value integer NOT NULL, + text character varying NOT NULL +); + + +-- +-- Name: bi_lookups_ethnicities; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.bi_lookups_ethnicities AS + SELECT id, + value, + text + FROM public.lookups_ethnicities; + + +-- +-- Name: bo_configs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.bo_configs ( + id integer NOT NULL, + data_source_id integer, + "user" character varying, + encrypted_pass character varying, + encrypted_pass_iv character varying, + url character varying, + server character varying, + client_lookup_cuid character varying, + touch_point_lookup_cuid character varying, + subject_response_lookup_cuid character varying, + site_touch_point_map_cuid character varying, + disability_verification_cuid character varying, + disability_touch_point_id integer, + disability_touch_point_question_id integer +); + + +-- +-- Name: bo_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.bo_configs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: bo_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.bo_configs_id_seq OWNED BY public.bo_configs.id; + + +-- +-- Name: boston_project_scorecard_reports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.boston_project_scorecard_reports ( + id bigint NOT NULL, + project_id bigint, + project_group_id bigint, + status character varying DEFAULT 'pending'::character varying, + user_id bigint, + start_date date NOT NULL, + end_date date NOT NULL, + apr_id bigint, + project_type integer, + period_start_date date, + period_end_date date, + secondary_reviewer_id bigint, + started_at timestamp without time zone, + completed_at timestamp without time zone, + sent_at timestamp without time zone, + deleted_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + initial_goals_pass boolean, + initial_goals_notes character varying, + timeliness_pass boolean, + timeliness_notes character varying, + independent_living_pass boolean, + independent_living_notes character varying, + management_oversight_pass boolean, + management_oversight_notes character varying, + prioritization_pass boolean, + prioritization_notes character varying, + rrh_exits_to_ph double precision, + psh_stayers_or_to_ph double precision, + increased_stayer_employment_income double precision, + increased_stayer_other_income double precision, + increased_leaver_employment_income double precision, + increased_leaver_other_income double precision, + days_to_lease_up integer, + pii_error_rate double precision, + ude_error_rate double precision, + income_and_housing_error_rate double precision, + invoicing integer, + actual_households_served integer, + amount_agency_spent double precision, + returned_funds double precision, + average_utilization_rate double precision, + subpopulations_served jsonb, + practices_housing_first boolean, + vulnerable_subpopulations_served jsonb, + barrier_id_process boolean, + plan_to_address_barriers boolean, + contracted_budget double precision, + archive character varying, + required_match_percent_met boolean, + increased_employment_income double precision, + increased_other_income double precision, + invoicing_timeliness integer, + invoicing_accuracy integer, + no_concern integer, + materials_concern integer, + lms_completed boolean, + self_certified boolean, + days_to_lease_up_comparison integer, + comparison_apr_id bigint +); + + +-- +-- Name: boston_project_scorecard_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.boston_project_scorecard_reports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: boston_project_scorecard_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.boston_project_scorecard_reports_id_seq OWNED BY public.boston_project_scorecard_reports.id; + + +-- +-- Name: boston_report_configs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.boston_report_configs ( + id bigint NOT NULL, + total_color character varying, + breakdown_1_color_0 character varying, + breakdown_2_color_0 character varying, + breakdown_3_color_0 character varying, + breakdown_4_color_0 character varying, + breakdown_1_color_1 character varying, + breakdown_2_color_1 character varying, + breakdown_3_color_1 character varying, + breakdown_4_color_1 character varying, + breakdown_1_color_2 character varying, + breakdown_2_color_2 character varying, + breakdown_3_color_2 character varying, + breakdown_4_color_2 character varying, + breakdown_1_color_3 character varying, + breakdown_2_color_3 character varying, + breakdown_3_color_3 character varying, + breakdown_4_color_3 character varying, + breakdown_1_color_4 character varying, + breakdown_2_color_4 character varying, + breakdown_3_color_4 character varying, + breakdown_4_color_4 character varying, + breakdown_1_color_5 character varying, + breakdown_2_color_5 character varying, + breakdown_3_color_5 character varying, + breakdown_4_color_5 character varying, + breakdown_1_color_6 character varying, + breakdown_2_color_6 character varying, + breakdown_3_color_6 character varying, + breakdown_4_color_6 character varying, + breakdown_1_color_7 character varying, + breakdown_2_color_7 character varying, + breakdown_3_color_7 character varying, + breakdown_4_color_7 character varying, + breakdown_1_color_8 character varying, + breakdown_2_color_8 character varying, + breakdown_3_color_8 character varying, + breakdown_4_color_8 character varying, + breakdown_1_color_9 character varying, + breakdown_2_color_9 character varying, + breakdown_3_color_9 character varying, + breakdown_4_color_9 character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: boston_report_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.boston_report_configs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: boston_report_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.boston_report_configs_id_seq OWNED BY public.boston_report_configs.id; + + +-- +-- Name: cas_availabilities; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cas_availabilities ( + id integer NOT NULL, + client_id integer NOT NULL, + available_at timestamp without time zone NOT NULL, + unavailable_at timestamp without time zone, + part_of_a_family boolean DEFAULT false NOT NULL, + age_at_available_at integer +); + + +-- +-- Name: cas_availabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cas_availabilities_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cas_availabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cas_availabilities_id_seq OWNED BY public.cas_availabilities.id; + + +-- +-- Name: cas_ce_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cas_ce_assessments ( + id bigint NOT NULL, + cas_client_id bigint, + cas_non_hmis_assessment_id bigint, + hmis_client_id bigint, + program_id bigint, + assessment_date date, + assessment_location character varying, + assessment_type integer, + assessment_level integer, + assessment_status integer, + assessment_created_at timestamp without time zone, + assessment_updated_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: cas_ce_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cas_ce_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cas_ce_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cas_ce_assessments_id_seq OWNED BY public.cas_ce_assessments.id; + + +-- +-- Name: cas_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cas_enrollments ( + id integer NOT NULL, + client_id integer, + enrollment_id integer, + entry_date date, + exit_date date, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + history json +); + + +-- +-- Name: cas_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cas_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cas_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cas_enrollments_id_seq OWNED BY public.cas_enrollments.id; + + +-- +-- Name: cas_houseds; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cas_houseds ( + id integer NOT NULL, + client_id integer NOT NULL, + cas_client_id integer NOT NULL, + match_id integer NOT NULL, + housed_on date NOT NULL, + inactivated boolean DEFAULT false +); + + +-- +-- Name: cas_houseds_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cas_houseds_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cas_houseds_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cas_houseds_id_seq OWNED BY public.cas_houseds.id; + + +-- +-- Name: cas_non_hmis_client_histories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cas_non_hmis_client_histories ( + id integer NOT NULL, + cas_client_id integer NOT NULL, + available_on date NOT NULL, + unavailable_on date, + part_of_a_family boolean DEFAULT false NOT NULL, + age_at_available_on integer +); + + +-- +-- Name: cas_non_hmis_client_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cas_non_hmis_client_histories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cas_non_hmis_client_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cas_non_hmis_client_histories_id_seq OWNED BY public.cas_non_hmis_client_histories.id; + + +-- +-- Name: cas_programs_to_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cas_programs_to_projects ( + id bigint NOT NULL, + program_id bigint, + project_id bigint +); + + +-- +-- Name: cas_programs_to_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cas_programs_to_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cas_programs_to_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cas_programs_to_projects_id_seq OWNED BY public.cas_programs_to_projects.id; + + +-- +-- Name: cas_referral_events; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cas_referral_events ( + id bigint NOT NULL, + cas_client_id bigint, + hmis_client_id bigint, + program_id bigint, + client_opportunity_match_id bigint, + referral_date date, + referral_result integer, + referral_result_date date, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + event integer +); + + +-- +-- Name: cas_referral_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cas_referral_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cas_referral_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cas_referral_events_id_seq OWNED BY public.cas_referral_events.id; + + +-- +-- Name: cas_reports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cas_reports ( + id integer NOT NULL, + client_id integer NOT NULL, + match_id integer NOT NULL, + decision_id integer NOT NULL, + decision_order integer NOT NULL, + match_step character varying NOT NULL, + decision_status character varying NOT NULL, + current_step boolean DEFAULT false NOT NULL, + active_match boolean DEFAULT false NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + elapsed_days integer DEFAULT 0 NOT NULL, + client_last_seen_date timestamp without time zone, + criminal_hearing_date timestamp without time zone, + decline_reason character varying, + not_working_with_client_reason character varying, + administrative_cancel_reason character varying, + client_spoken_with_services_agency boolean, + cori_release_form_submitted boolean, + match_started_at timestamp without time zone, + program_type character varying, + shelter_agency_contacts json, + hsa_contacts json, + ssp_contacts json, + admin_contacts json, + clent_contacts json, + hsp_contacts json, + program_name character varying, + sub_program_name character varying, + terminal_status character varying, + match_route character varying, + cas_client_id integer, + client_move_in_date date, + source_data_source character varying, + event_contact character varying, + event_contact_agency character varying, + vacancy_id integer, + housing_type character varying, + ineligible_in_warehouse boolean DEFAULT false NOT NULL, + actor_type character varying, + confidential boolean DEFAULT false +); + + +-- +-- Name: cas_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cas_reports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cas_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cas_reports_id_seq OWNED BY public.cas_reports.id; + + +-- +-- Name: cas_vacancies; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cas_vacancies ( + id integer NOT NULL, + program_id integer NOT NULL, + sub_program_id integer NOT NULL, + program_name character varying, + sub_program_name character varying, + program_type character varying, + route_name character varying NOT NULL, + vacancy_created_at timestamp without time zone NOT NULL, + vacancy_made_available_at timestamp without time zone, + first_matched_at timestamp without time zone +); + + +-- +-- Name: cas_vacancies_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cas_vacancies_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cas_vacancies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cas_vacancies_id_seq OWNED BY public.cas_vacancies.id; + + +-- +-- Name: ce_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ce_assessments ( + id integer NOT NULL, + user_id integer NOT NULL, + client_id integer NOT NULL, + type character varying NOT NULL, + submitted_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + active boolean DEFAULT true, + score integer DEFAULT 0, + priority_score integer DEFAULT 0, + assessor_id integer NOT NULL, + location character varying, + client_email character varying, + military_duty boolean DEFAULT false, + under_25 boolean DEFAULT false, + over_60 boolean DEFAULT false, + lgbtq boolean DEFAULT false, + children_under_18 boolean DEFAULT false, + fleeing_dv boolean DEFAULT false, + living_outdoors boolean DEFAULT false, + urgent_health_issue boolean DEFAULT false, + location_option_1 boolean DEFAULT false, + location_option_2 boolean DEFAULT false, + location_option_3 boolean DEFAULT false, + location_option_4 boolean DEFAULT false, + location_option_5 boolean DEFAULT false, + location_option_6 boolean DEFAULT false, + location_option_other character varying, + location_option_no character varying, + homelessness integer, + substance_use integer, + mental_health integer, + health_care integer, + legal_issues integer, + income integer, + work integer, + independent_living integer, + community_involvement integer, + survival_skills integer, + barrier_no_rental_history boolean DEFAULT false, + barrier_no_income boolean DEFAULT false, + barrier_poor_credit boolean DEFAULT false, + barrier_eviction_history boolean DEFAULT false, + barrier_eviction_from_public_housing boolean DEFAULT false, + barrier_bedrooms_3 boolean DEFAULT false, + barrier_service_animal boolean DEFAULT false, + barrier_cori_issues boolean DEFAULT false, + barrier_registered_sex_offender boolean DEFAULT false, + barrier_other character varying, + preferences_studio boolean DEFAULT false, + preferences_roomate boolean DEFAULT false, + preferences_pets boolean DEFAULT false, + preferences_accessible boolean DEFAULT false, + preferences_quiet boolean DEFAULT false, + preferences_public_transport boolean DEFAULT false, + preferences_parks boolean DEFAULT false, + preferences_other character varying, + assessor_rating integer, + homeless_six_months boolean DEFAULT false, + mortality_hospitilization_3 boolean DEFAULT false, + mortality_emergency_room_3 boolean DEFAULT false, + mortality_over_60 boolean DEFAULT false, + mortality_cirrhosis boolean DEFAULT false, + mortality_renal_disease boolean DEFAULT false, + mortality_frostbite boolean DEFAULT false, + mortality_hiv boolean DEFAULT false, + mortality_tri_morbid boolean DEFAULT false, + lacks_access_to_shelter boolean DEFAULT false, + high_potential_for_vicitimization boolean DEFAULT false, + danger_of_harm boolean DEFAULT false, + acute_medical_condition boolean DEFAULT false, + acute_psychiatric_condition boolean DEFAULT false, + acute_substance_abuse boolean DEFAULT false, + location_no_preference boolean, + vulnerability_score integer +); + + +-- +-- Name: ce_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ce_assessments_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ce_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ce_assessments_id_seq OWNED BY public.ce_assessments.id; + + +-- +-- Name: ce_performance_ce_aprs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ce_performance_ce_aprs ( + id bigint NOT NULL, + report_id bigint NOT NULL, + ce_apr_id bigint NOT NULL, + start_date date, + end_date date, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: ce_performance_ce_aprs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ce_performance_ce_aprs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ce_performance_ce_aprs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ce_performance_ce_aprs_id_seq OWNED BY public.ce_performance_ce_aprs.id; + + +-- +-- Name: ce_performance_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ce_performance_clients ( + id bigint NOT NULL, + client_id bigint, + report_id bigint, + ce_apr_id bigint, + first_name character varying, + last_name character varying, + reporting_age integer, + head_of_household boolean, + prior_living_situation integer, + los_under_threshold integer, + previous_street_essh integer, + prevention_tool_score integer, + assessment_score integer, + events jsonb, + assessments jsonb, + diversion_event boolean, + diversion_successful boolean, + veteran boolean, + household_size integer, + household_ages jsonb, + chronically_homeless_at_entry boolean, + entry_date date, + exit_date date, + initial_assessment_date date, + latest_assessment_date date, + initial_housing_referral_date date, + housing_enrollment_entry_date date, + housing_enrollment_move_in_date date, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + ce_apr_client_id integer, + dob date, + move_in_date date, + period character varying, + household_type character varying, + days_before_assessment integer, + days_on_list integer, + days_in_project integer, + days_between_referral_and_housing integer, + q5a_b1 boolean DEFAULT false, + deleted_at timestamp without time zone, + assessment_type character varying, + days_between_entry_and_initial_referral integer, + cls_literally_homeless boolean DEFAULT false NOT NULL, + vispdat_type character varying, + vispdat_range character varying, + prioritization_tool_type character varying, + prioritization_tool_score integer, + community character varying, + lgbtq_household_members boolean DEFAULT false NOT NULL, + client_lgbtq boolean DEFAULT false NOT NULL, + dv_survivor boolean DEFAULT false NOT NULL, + destination_client_id integer +); + + +-- +-- Name: ce_performance_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ce_performance_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ce_performance_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ce_performance_clients_id_seq OWNED BY public.ce_performance_clients.id; + + +-- +-- Name: ce_performance_goals; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ce_performance_goals ( + id bigint NOT NULL, + coc_code character varying NOT NULL, + screening integer DEFAULT 100 NOT NULL, + diversion integer DEFAULT 5 NOT NULL, + time_in_ce integer DEFAULT 30 NOT NULL, + time_to_referral integer DEFAULT 5 NOT NULL, + time_to_housing integer DEFAULT 5 NOT NULL, + time_on_list integer DEFAULT 30 NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: ce_performance_goals_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ce_performance_goals_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ce_performance_goals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ce_performance_goals_id_seq OWNED BY public.ce_performance_goals.id; + + +-- +-- Name: ce_performance_results; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ce_performance_results ( + id bigint NOT NULL, + report_id bigint, + value double precision, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + type character varying, + period character varying, + numerator integer, + denominator integer, + deleted_at timestamp without time zone, + event_type integer, + goal integer +); + + +-- +-- Name: ce_performance_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ce_performance_results_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ce_performance_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ce_performance_results_id_seq OWNED BY public.ce_performance_results.id; + + +-- +-- Name: census_by_project_types; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.census_by_project_types ( + id integer NOT NULL, + "ProjectType" integer NOT NULL, + date date NOT NULL, + veteran boolean DEFAULT false NOT NULL, + gender integer DEFAULT 99 NOT NULL, + client_count integer DEFAULT 0 NOT NULL +); + + +-- +-- Name: census_by_project_types_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.census_by_project_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: census_by_project_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.census_by_project_types_id_seq OWNED BY public.census_by_project_types.id; + + +-- +-- Name: census_groups; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.census_groups ( + id bigint NOT NULL, + year integer NOT NULL, + dataset character varying NOT NULL, + name character varying NOT NULL, + description text NOT NULL, + created_on date +); + + +-- +-- Name: census_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.census_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: census_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.census_groups_id_seq OWNED BY public.census_groups.id; + + +-- +-- Name: census_values; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.census_values ( + id bigint NOT NULL, + census_variable_id bigint NOT NULL, + value numeric NOT NULL, + full_geoid character varying NOT NULL, + created_on date NOT NULL, + census_level public.census_levels NOT NULL +); + + +-- +-- Name: census_variables; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.census_variables ( + id bigint NOT NULL, + year integer NOT NULL, + downloaded boolean DEFAULT false NOT NULL, + dataset character varying NOT NULL, + name character varying NOT NULL, + label text NOT NULL, + concept text NOT NULL, + census_group character varying NOT NULL, + census_attributes character varying NOT NULL, + internal_name character varying, + created_on date NOT NULL +); + + +-- +-- Name: shape_cocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.shape_cocs ( + id bigint NOT NULL, + st character varying, + state_name character varying, + cocnum character varying, + cocname character varying, + ard numeric, + pprn numeric, + fprn numeric, + fprn_statu character varying, + es_c_hwac numeric, + es_c_hwoa_ numeric, + es_c_hwoc numeric, + es_vso_tot numeric, + th_c_hwac_ numeric, + th_c_hwoa numeric, + th_c_hwoc numeric, + th_c_vet numeric, + rrh_c_hwac numeric, + rrh_c_hwoa numeric, + rrh_c_hwoc numeric, + rrh_c_vet numeric, + psh_c_hwac numeric, + psh_c_hwoa numeric, + psh_c_hwoc numeric, + psh_c_vet numeric, + psh_c_ch numeric, + psh_u_hwac character varying, + psh_u_hwoa character varying, + psh_u_hwoc character varying, + psh_u_vet character varying, + psh_u_ch character varying, + sh_c_hwoa numeric, + sh_c_vet numeric, + sh_pers_hw numeric, + unsh_pers_ numeric, + sh_pers__1 numeric, + unsh_pers1 numeric, + sh_pers__2 numeric, + unsh_per_1 numeric, + sh_ch numeric, + unsh_ch numeric, + sh_youth_u numeric, + unsh_youth numeric, + sh_vets numeric, + unsh_vets numeric, + shape_leng numeric, + shape_area numeric, + geom public.geometry(MultiPolygon,4326), + simplified_geom public.geometry(MultiPolygon,4326), + full_geoid character varying +); + + +-- +-- Name: shape_counties; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.shape_counties ( + id bigint NOT NULL, + statefp character varying, + countyfp character varying, + countyns character varying, + full_geoid character varying, + geoid character varying, + name character varying, + namelsad character varying, + lsad character varying, + classfp character varying, + mtfcc character varying, + csafp character varying, + cbsafp character varying, + metdivfp character varying, + funcstat character varying, + aland double precision, + awater double precision, + intptlat character varying, + intptlon character varying, + simplified_geom public.geometry(MultiPolygon,4326), + geom public.geometry(MultiPolygon,4326) +); + + +-- +-- Name: shape_states; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.shape_states ( + id bigint NOT NULL, + region character varying, + division character varying, + statefp character varying, + statens character varying, + full_geoid character varying, + geoid character varying, + stusps character varying, + name character varying, + lsad character varying, + mtfcc character varying, + funcstat character varying, + aland double precision, + awater double precision, + intptlat character varying, + intptlon character varying, + simplified_geom public.geometry(MultiPolygon,4326), + geom public.geometry(MultiPolygon,4326) +); + + +-- +-- Name: shape_zip_codes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.shape_zip_codes ( + id bigint NOT NULL, + zcta5ce10 character varying(5), + geoid10 character varying(5), + classfp10 character varying(2), + mtfcc10 character varying(5), + funcstat10 character varying(1), + aland10 double precision, + awater10 double precision, + intptlat10 character varying(11), + intptlon10 character varying(12), + geom public.geometry(MultiPolygon,4326), + simplified_geom public.geometry(MultiPolygon,4326), + full_geoid character varying, + st_geoid character varying, + county_name_lower character varying +); + + +-- +-- Name: census_reviews; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.census_reviews AS + WITH locs AS ( + SELECT shape_cocs.cocname AS name, + shape_cocs.full_geoid + FROM public.shape_cocs + UNION ALL + SELECT shape_zip_codes.zcta5ce10 AS name, + shape_zip_codes.full_geoid + FROM public.shape_zip_codes + UNION ALL + SELECT shape_counties.name, + shape_counties.full_geoid + FROM public.shape_counties + UNION ALL + SELECT shape_states.name, + shape_states.full_geoid + FROM public.shape_states + ) + SELECT locs.name AS geometry_name, + vals.census_level, + vars.internal_name, + vals.value, + vars.year, + vars.dataset, + vars.name AS variable, + vars.census_group, + g.description AS group_description, + vals.id, + locs.full_geoid + FROM (((locs + LEFT JOIN public.census_values vals ON (((locs.full_geoid)::text = (vals.full_geoid)::text))) + LEFT JOIN public.census_variables vars ON (((vals.census_variable_id = vars.id) AND (vars.internal_name IS NOT NULL)))) + LEFT JOIN public.census_groups g ON ((((vars.census_group)::text = (g.name)::text) AND (vars.year = g.year) AND ((vars.dataset)::text = (g.dataset)::text)))); + + +-- +-- Name: census_values_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.census_values_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: census_values_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.census_values_id_seq OWNED BY public.census_values.id; + + +-- +-- Name: census_variables_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.census_variables_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: census_variables_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.census_variables_id_seq OWNED BY public.census_variables.id; + + +-- +-- Name: censuses; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.censuses ( + id integer NOT NULL, + data_source_id integer NOT NULL, + "ProjectType" integer NOT NULL, + "OrganizationID" character varying NOT NULL, + "ProjectID" character varying NOT NULL, + date date NOT NULL, + veteran boolean DEFAULT false NOT NULL, + gender integer DEFAULT 99 NOT NULL, + client_count integer DEFAULT 0 NOT NULL, + bed_inventory integer DEFAULT 0 NOT NULL +); + + +-- +-- Name: censuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.censuses_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: censuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.censuses_id_seq OWNED BY public.censuses.id; + + +-- +-- Name: ch_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ch_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ch_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ch_enrollments_id_seq OWNED BY public.ch_enrollments.id; + + +-- +-- Name: children; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.children ( + id integer NOT NULL, + first_name character varying, + last_name character varying, + dob date, + family_id integer, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: children_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.children_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: children_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.children_id_seq OWNED BY public.children.id; + + +-- +-- Name: chronics; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.chronics ( + id integer NOT NULL, + date date NOT NULL, + client_id integer NOT NULL, + days_in_last_three_years integer, + months_in_last_three_years integer, + individual boolean, + age integer, + homeless_since date, + dmh boolean DEFAULT false, + trigger character varying, + project_names character varying +); + + +-- +-- Name: chronics_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.chronics_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: chronics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.chronics_id_seq OWNED BY public.chronics.id; + + +-- +-- Name: clh_locations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.clh_locations ( + id bigint NOT NULL, + client_id bigint, + source_type character varying, + source_id bigint, + located_on date, + lat double precision, + lon double precision, + collected_by character varying, + processed_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + enrollment_id bigint, + located_at timestamp(6) without time zone +); + + +-- +-- Name: clh_locations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.clh_locations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: clh_locations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.clh_locations_id_seq OWNED BY public.clh_locations.id; + + +-- +-- Name: client_contacts; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.client_contacts ( + id bigint NOT NULL, + client_id bigint NOT NULL, + source_type character varying NOT NULL, + source_id bigint NOT NULL, + first_name character varying, + last_name character varying, + full_name character varying, + contact_type character varying, + phone character varying, + phone_alternate character varying, + email character varying, + address character varying, + address2 character varying, + city character varying, + state character varying, + zip character varying, + note character varying, + last_modified_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: client_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.client_contacts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: client_contacts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.client_contacts_id_seq OWNED BY public.client_contacts.id; + + +-- +-- Name: client_matches; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.client_matches ( + id integer NOT NULL, + source_client_id integer NOT NULL, + destination_client_id integer NOT NULL, + updated_by_id integer, + lock_version integer, + defer_count integer, + status character varying NOT NULL, + score double precision, + score_details text, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: client_matches_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.client_matches_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: client_matches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.client_matches_id_seq OWNED BY public.client_matches.id; + + +-- +-- Name: client_merge_histories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.client_merge_histories ( + id integer NOT NULL, + merged_into integer NOT NULL, + merged_from integer NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: client_merge_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.client_merge_histories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: client_merge_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.client_merge_histories_id_seq OWNED BY public.client_merge_histories.id; + + +-- +-- Name: client_notes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.client_notes ( + id integer NOT NULL, + client_id integer NOT NULL, + user_id integer NOT NULL, + type character varying NOT NULL, + note text, + created_at timestamp without time zone, + updated_at timestamp without time zone, + deleted_at timestamp without time zone, + migrated_username character varying, + recipients jsonb, + sent_at timestamp without time zone, + alert_active boolean DEFAULT true NOT NULL, + service_id bigint, + project_id bigint +); + + +-- +-- Name: client_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.client_notes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: client_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.client_notes_id_seq OWNED BY public.client_notes.id; + + +-- +-- Name: client_roi_authorizations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.client_roi_authorizations ( + id bigint NOT NULL, + destination_client_id bigint NOT NULL, + status character varying NOT NULL, + coc_codes character varying[], + starts_at date, + expires_at date +); + + +-- +-- Name: client_roi_authorizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.client_roi_authorizations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: client_roi_authorizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.client_roi_authorizations_id_seq OWNED BY public.client_roi_authorizations.id; + + +-- +-- Name: client_searchable_names; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.client_searchable_names AS + SELECT "Client".id AS client_id, + "Client".search_name_full AS full_name, + "Client".search_name_last AS last_name, + 'primary'::text AS name_type + FROM public."Client" + WHERE ("Client"."DateDeleted" IS NULL) +UNION + SELECT "Client".id AS client_id, + "CustomClientName".search_name_full AS full_name, + "CustomClientName".search_name_last AS last_name, + CASE + WHEN "CustomClientName"."primary" THEN 'primary'::text + ELSE 'secondary'::text + END AS name_type + FROM (public."CustomClientName" + JOIN public."Client" ON (((("Client"."PersonalID")::text = ("CustomClientName"."PersonalID")::text) AND ("Client".data_source_id = "CustomClientName".data_source_id)))) + WHERE ("CustomClientName"."DateDeleted" IS NULL); + + +-- +-- Name: client_split_histories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.client_split_histories ( + id integer NOT NULL, + split_into integer NOT NULL, + split_from integer NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + receive_hmis boolean, + receive_health boolean +); + + +-- +-- Name: client_split_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.client_split_histories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: client_split_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.client_split_histories_id_seq OWNED BY public.client_split_histories.id; + + +-- +-- Name: coc_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.coc_codes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: coc_codes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.coc_codes_id_seq OWNED BY public.coc_codes.id; + + +-- +-- Name: coc_pit_counts; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.coc_pit_counts ( + id bigint NOT NULL, + goal_id bigint, + pit_date date, + sheltered integer, + unsheltered integer, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: coc_pit_counts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.coc_pit_counts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: coc_pit_counts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.coc_pit_counts_id_seq OWNED BY public.coc_pit_counts.id; + + +-- +-- Name: cohort_client_changes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cohort_client_changes ( + id integer NOT NULL, + cohort_client_id integer NOT NULL, + cohort_id integer NOT NULL, + user_id integer NOT NULL, + change character varying, + changed_at timestamp without time zone NOT NULL, + reason character varying +); + + +-- +-- Name: cohort_client_changes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cohort_client_changes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cohort_client_changes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cohort_client_changes_id_seq OWNED BY public.cohort_client_changes.id; + + +-- +-- Name: cohort_client_notes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cohort_client_notes ( + id integer NOT NULL, + cohort_client_id integer NOT NULL, + note text, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + user_id integer NOT NULL, + recipients jsonb DEFAULT '[]'::jsonb +); + + +-- +-- Name: cohort_client_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cohort_client_notes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cohort_client_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cohort_client_notes_id_seq OWNED BY public.cohort_client_notes.id; + + +-- +-- Name: cohort_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cohort_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cohort_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cohort_clients_id_seq OWNED BY public.cohort_clients.id; + + +-- +-- Name: cohort_column_options; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cohort_column_options ( + id integer NOT NULL, + cohort_column character varying NOT NULL, + weight integer, + value character varying, + active boolean DEFAULT true, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +-- +-- Name: cohort_column_options_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cohort_column_options_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cohort_column_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cohort_column_options_id_seq OWNED BY public.cohort_column_options.id; + + +-- +-- Name: cohort_tabs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.cohort_tabs ( + id bigint NOT NULL, + cohort_id bigint NOT NULL, + name character varying, + rules jsonb, + "order" integer DEFAULT 0 NOT NULL, + permissions jsonb DEFAULT '[]'::jsonb NOT NULL, + base_scope character varying DEFAULT 'current_scope'::character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: cohort_tabs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cohort_tabs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cohort_tabs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cohort_tabs_id_seq OWNED BY public.cohort_tabs.id; + + +-- +-- Name: cohorts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.cohorts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: cohorts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.cohorts_id_seq OWNED BY public.cohorts.id; + + +-- +-- Name: combined_cohort_client_changes; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.combined_cohort_client_changes AS + SELECT cc.id, + cohort_clients.client_id, + cc.cohort_client_id, + cc.cohort_id, + cc.user_id, + cc.change AS entry_action, + cc.changed_at AS entry_date, + cc_ex.change AS exit_action, + cc_ex.changed_at AS exit_date, + cc_ex.reason + FROM (((( SELECT cohort_client_changes.id, + cohort_client_changes.cohort_client_id, + cohort_client_changes.cohort_id, + cohort_client_changes.user_id, + cohort_client_changes.change, + cohort_client_changes.changed_at, + cohort_client_changes.reason + FROM public.cohort_client_changes + WHERE ((cohort_client_changes.change)::text = ANY (ARRAY[('create'::character varying)::text, ('activate'::character varying)::text]))) cc + LEFT JOIN LATERAL ( SELECT cohort_client_changes.id, + cohort_client_changes.cohort_client_id, + cohort_client_changes.cohort_id, + cohort_client_changes.user_id, + cohort_client_changes.change, + cohort_client_changes.changed_at, + cohort_client_changes.reason + FROM public.cohort_client_changes + WHERE (((cohort_client_changes.change)::text = ANY (ARRAY[('destroy'::character varying)::text, ('deactivate'::character varying)::text])) AND (cc.cohort_client_id = cohort_client_changes.cohort_client_id) AND (cc.cohort_id = cohort_client_changes.cohort_id) AND (cc.changed_at < cohort_client_changes.changed_at)) + ORDER BY cohort_client_changes.changed_at + LIMIT 1) cc_ex ON (true)) + JOIN public.cohort_clients ON ((cc.cohort_client_id = cohort_clients.id))) + JOIN public."Client" ON (((cohort_clients.client_id = "Client".id) AND ("Client"."DateDeleted" IS NULL)))) + WHERE ((cc_ex.reason IS NULL) OR ((cc_ex.reason)::text <> 'Mistake'::text)) + ORDER BY cc.id; + + +-- +-- Name: configs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.configs ( + id integer NOT NULL, + project_type_override boolean DEFAULT true NOT NULL, + eto_api_available boolean DEFAULT false NOT NULL, + cas_available_method character varying DEFAULT 'cas_flag'::character varying NOT NULL, + healthcare_available boolean DEFAULT false NOT NULL, + family_calculation_method character varying DEFAULT 'adult_child'::character varying, + site_coc_codes character varying, + default_coc_zipcodes character varying, + continuum_name character varying, + cas_url character varying DEFAULT 'https://cas.boston.gov'::character varying, + release_duration character varying DEFAULT 'Indefinite'::character varying, + allow_partial_release boolean DEFAULT true, + cas_flag_method character varying DEFAULT 'manual'::character varying, + window_access_requires_release boolean DEFAULT false, + show_partial_ssn_in_window_search_results boolean DEFAULT false, + url_of_blank_consent_form character varying, + ahar_psh_includes_rrh boolean DEFAULT true, + so_day_as_month boolean DEFAULT true, + client_details text, + allow_multiple_file_tags boolean DEFAULT false NOT NULL, + infer_family_from_household_id boolean DEFAULT false NOT NULL, + chronic_definition character varying DEFAULT 'chronics'::character varying NOT NULL, + vispdat_prioritization_scheme character varying DEFAULT 'length_of_time'::character varying NOT NULL, + show_vispdats_on_dashboards boolean DEFAULT false, + rrh_cas_readiness boolean DEFAULT false, + cas_days_homeless_source character varying DEFAULT 'days_homeless'::character varying, + consent_visible_to_all boolean DEFAULT false, + verified_homeless_history_visible_to_all boolean DEFAULT false NOT NULL, + only_most_recent_import boolean DEFAULT false, + expose_coc_code boolean DEFAULT false NOT NULL, + auto_confirm_consent boolean DEFAULT false NOT NULL, + health_emergency character varying, + health_emergency_tracing character varying, + health_priority_age integer, + multi_coc_installation boolean DEFAULT false NOT NULL, + auto_de_duplication_accept_threshold double precision, + auto_de_duplication_reject_threshold double precision, + pii_encryption_type character varying DEFAULT 'none'::character varying, + auto_de_duplication_enabled boolean DEFAULT false NOT NULL, + request_account_available boolean DEFAULT false NOT NULL, + dashboard_lookback date DEFAULT '2014-07-01'::date, + domestic_violence_lookback_days integer DEFAULT 0 NOT NULL, + support_contact_email character varying, + completeness_goal integer DEFAULT 90, + excess_goal integer DEFAULT 105, + timeliness_goal integer DEFAULT 14, + income_increase_goal integer DEFAULT 75, + ph_destination_increase_goal integer DEFAULT 60, + move_in_date_threshold integer DEFAULT 30, + pf_universal_data_element_threshold integer DEFAULT 2 NOT NULL, + pf_utilization_min integer DEFAULT 66 NOT NULL, + pf_utilization_max integer DEFAULT 104 NOT NULL, + pf_timeliness_threshold integer DEFAULT 3 NOT NULL, + pf_show_income boolean DEFAULT false NOT NULL, + pf_show_additional_timeliness boolean DEFAULT false NOT NULL, + cas_sync_months integer DEFAULT 3, + send_sms_for_covid_reminders boolean DEFAULT false NOT NULL, + bypass_2fa_duration integer DEFAULT 0 NOT NULL, + health_claims_data_path character varying, + enable_youth_hrp boolean DEFAULT true NOT NULL, + enable_system_cohorts boolean DEFAULT false, + currently_homeless_cohort boolean DEFAULT false, + show_client_last_seen_info_in_client_details boolean DEFAULT true, + ineligible_uses_extrapolated_days boolean DEFAULT true NOT NULL, + warehouse_client_name_order character varying DEFAULT 'earliest'::character varying NOT NULL, + cas_calculator character varying DEFAULT 'GrdaWarehouse::CasProjectClientCalculator::Default'::character varying NOT NULL, + service_register_visible boolean DEFAULT false NOT NULL, + enable_youth_unstably_housed boolean DEFAULT true, + veteran_cohort boolean DEFAULT false NOT NULL, + youth_cohort boolean DEFAULT false NOT NULL, + chronic_cohort boolean DEFAULT false NOT NULL, + adult_and_child_cohort boolean DEFAULT false NOT NULL, + adult_only_cohort boolean DEFAULT false NOT NULL, + youth_no_child_cohort boolean DEFAULT false NOT NULL, + youth_and_child_cohort boolean DEFAULT false NOT NULL, + cas_sync_project_group_id integer, + majority_sheltered_calculation character varying DEFAULT 'current_living_situation'::character varying, + system_cohort_processing_date date, + system_cohort_date_window integer DEFAULT 1, + roi_model character varying DEFAULT 'explicit'::character varying, + client_dashboard character varying DEFAULT 'default'::character varying NOT NULL, + require_service_for_reporting_default boolean DEFAULT true NOT NULL, + supplemental_enrollment_importer character varying DEFAULT 'GrdaWarehouse::Tasks::EnrollmentExtrasImport'::character varying, + verified_homeless_history_method character varying DEFAULT 'visible_in_window'::character varying, + youth_hoh_cohort boolean DEFAULT false NOT NULL, + youth_hoh_cohort_project_group_id integer, + chronic_tab_justifications boolean DEFAULT true, + chronic_tab_roi boolean, + filter_date_span_years integer DEFAULT 1 NOT NULL, + include_pii_in_detail_downloads boolean DEFAULT true, + self_report_start_date date, + chronic_adult_only_cohort boolean DEFAULT false, + enable_auto_deduplication boolean DEFAULT true, + number_lms_courses_required integer DEFAULT '-1'::integer, + rds_s3_integration_role_arn character varying, + default_lms_email_to_warehouse_email boolean +); + + +-- +-- Name: configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.configs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.configs_id_seq OWNED BY public.configs.id; + + +-- +-- Name: contacts; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.contacts ( + id integer NOT NULL, + type character varying NOT NULL, + entity_id integer NOT NULL, + email character varying NOT NULL, + first_name character varying, + last_name character varying, + deleted_at timestamp without time zone, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +-- +-- Name: contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.contacts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: contacts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.contacts_id_seq OWNED BY public.contacts.id; + + +-- +-- Name: csg_engage_agencies; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.csg_engage_agencies ( + id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + name character varying, + csg_engage_agency_id integer +); + + +-- +-- Name: csg_engage_agencies_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.csg_engage_agencies_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: csg_engage_agencies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.csg_engage_agencies_id_seq OWNED BY public.csg_engage_agencies.id; + + +-- +-- Name: csg_engage_program_mappings; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.csg_engage_program_mappings ( + id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + project_id bigint, + clarity_name character varying, + include_in_export boolean DEFAULT true NOT NULL, + program_id bigint +); + + +-- +-- Name: csg_engage_program_mappings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.csg_engage_program_mappings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: csg_engage_program_mappings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.csg_engage_program_mappings_id_seq OWNED BY public.csg_engage_program_mappings.id; + + +-- +-- Name: csg_engage_program_reports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.csg_engage_program_reports ( + id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + report_id bigint, + raw_result character varying, + json_result jsonb, + error_data jsonb, + warning_data jsonb, + started_at timestamp without time zone, + completed_at timestamp without time zone, + failed_at timestamp without time zone, + imported_program_name character varying, + imported_import_keyword character varying, + cleared_at character varying, + program_id bigint +); + + +-- +-- Name: csg_engage_program_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.csg_engage_program_reports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: csg_engage_program_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.csg_engage_program_reports_id_seq OWNED BY public.csg_engage_program_reports.id; + + +-- +-- Name: csg_engage_programs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.csg_engage_programs ( + id bigint NOT NULL, + agency_id bigint, + csg_engage_name character varying NOT NULL, + csg_engage_import_keyword character varying NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: csg_engage_programs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.csg_engage_programs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: csg_engage_programs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.csg_engage_programs_id_seq OWNED BY public.csg_engage_programs.id; + + +-- +-- Name: csg_engage_reports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.csg_engage_reports ( + id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + started_at timestamp without time zone, + completed_at timestamp without time zone, + failed_at timestamp without time zone, + project_ids character varying[] DEFAULT '{}'::character varying[] NOT NULL, + agency_id bigint +); + + +-- +-- Name: csg_engage_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.csg_engage_reports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: csg_engage_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.csg_engage_reports_id_seq OWNED BY public.csg_engage_reports.id; + + +-- +-- Name: custom_imports_b_al_rows; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.custom_imports_b_al_rows ( + id bigint NOT NULL, + import_file_id bigint, + data_source_id bigint, + assessment_question character varying, + response_code character varying, + response_text character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: custom_imports_b_al_rows_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.custom_imports_b_al_rows_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: custom_imports_b_al_rows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.custom_imports_b_al_rows_id_seq OWNED BY public.custom_imports_b_al_rows.id; + + +-- +-- Name: custom_imports_b_contacts_rows; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.custom_imports_b_contacts_rows ( + id bigint NOT NULL, + import_file_id bigint, + data_source_id bigint, + row_number integer NOT NULL, + personal_id character varying NOT NULL, + unique_id character varying, + agency_id character varying NOT NULL, + contact_name character varying, + contact_type character varying, + phone character varying, + phone_alternate character varying, + email character varying, + note character varying, + private character varying, + contact_created_at timestamp without time zone, + contact_updated_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: custom_imports_b_contacts_rows_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.custom_imports_b_contacts_rows_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: custom_imports_b_contacts_rows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.custom_imports_b_contacts_rows_id_seq OWNED BY public.custom_imports_b_contacts_rows.id; + + +-- +-- Name: custom_imports_b_coo_rows; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.custom_imports_b_coo_rows ( + id bigint NOT NULL, + unique_id character varying NOT NULL, + personal_id character varying, + enrollment_id character varying, + city character varying, + state character varying, + zip_code character varying, + length_of_time character varying, + geolocation_location character varying, + collected_on date, + import_file_id bigint, + data_source_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + dirty boolean DEFAULT false +); + + +-- +-- Name: custom_imports_b_coo_rows_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.custom_imports_b_coo_rows_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: custom_imports_b_coo_rows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.custom_imports_b_coo_rows_id_seq OWNED BY public.custom_imports_b_coo_rows.id; + + +-- +-- Name: custom_imports_b_services_rows; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.custom_imports_b_services_rows ( + id bigint NOT NULL, + import_file_id bigint, + data_source_id bigint, + row_number integer NOT NULL, + personal_id character varying NOT NULL, + unique_id character varying, + agency_id character varying NOT NULL, + enrollment_id character varying, + service_id character varying, + date date, + service_name character varying, + service_category character varying, + service_item character varying, + service_program_usage character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + reporting_period_started_on date, + reporting_period_ended_on date +); + + +-- +-- Name: custom_imports_b_services_rows_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.custom_imports_b_services_rows_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: custom_imports_b_services_rows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.custom_imports_b_services_rows_id_seq OWNED BY public.custom_imports_b_services_rows.id; + + +-- +-- Name: custom_imports_config; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.custom_imports_config ( + id bigint NOT NULL, + user_id bigint, + data_source_id bigint, + active boolean DEFAULT true NOT NULL, + description character varying, + import_hour integer, + import_type character varying, + s3_region character varying, + s3_bucket character varying, + s3_prefix character varying, + encrypted_s3_access_key_id character varying, + encrypted_s3_access_key_id_iv character varying, + encrypted_s3_secret character varying, + encrypted_s3_secret_iv character varying, + last_import_attempted_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: custom_imports_config_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.custom_imports_config_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: custom_imports_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.custom_imports_config_id_seq OWNED BY public.custom_imports_config.id; + + +-- +-- Name: custom_imports_files; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.custom_imports_files ( + id bigint NOT NULL, + type character varying, + config_id bigint, + data_source_id bigint, + file character varying, + status character varying, + summary jsonb, + import_errors jsonb, + content_type character varying, + content bytea, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + started_at timestamp without time zone, + completed_at timestamp without time zone, + deleted_at timestamp without time zone +); + + +-- +-- Name: custom_imports_files_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.custom_imports_files_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: custom_imports_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.custom_imports_files_id_seq OWNED BY public.custom_imports_files.id; + + +-- +-- Name: dashboard_export_reports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.dashboard_export_reports ( + id integer NOT NULL, + file_id integer, + user_id integer, + job_id integer, + coc_code character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + started_at timestamp without time zone, + completed_at timestamp without time zone +); + + +-- +-- Name: dashboard_export_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.dashboard_export_reports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: dashboard_export_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.dashboard_export_reports_id_seq OWNED BY public.dashboard_export_reports.id; + + +-- +-- Name: data_monitorings; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.data_monitorings ( + id integer NOT NULL, + resource_id integer NOT NULL, + census date, + calculated_on date, + calculate_after date, + value double precision, + change double precision, + iteration integer, + of_iterations integer, + type character varying +); + + +-- +-- Name: data_monitorings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.data_monitorings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: data_monitorings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.data_monitorings_id_seq OWNED BY public.data_monitorings.id; + + +-- +-- Name: data_sources_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.data_sources_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: data_sources_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.data_sources_id_seq OWNED BY public.data_sources.id; + + +-- +-- Name: datasets; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.datasets ( + id bigint NOT NULL, + source_type character varying NOT NULL, + source_id bigint NOT NULL, + identifier character varying, + data jsonb, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: datasets_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.datasets_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: datasets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.datasets_id_seq OWNED BY public.datasets.id; + + +-- +-- Name: direct_financial_assistances; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.direct_financial_assistances ( + id integer NOT NULL, + client_id integer, + user_id integer, + provided_on date, + type_provided character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + imported boolean DEFAULT false, + amount integer +); + + +-- +-- Name: direct_financial_assistances_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.direct_financial_assistances_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: direct_financial_assistances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.direct_financial_assistances_id_seq OWNED BY public.direct_financial_assistances.id; + + +-- +-- Name: document_exports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.document_exports ( + id bigint NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + type character varying NOT NULL, + user_id bigint NOT NULL, + version character varying NOT NULL, + status character varying NOT NULL, + query_string character varying, + file_data bytea, + filename character varying, + mime_type character varying +); + + +-- +-- Name: document_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.document_exports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: document_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.document_exports_id_seq OWNED BY public.document_exports.id; + + +-- +-- Name: eccovia_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.eccovia_assessments ( + id bigint NOT NULL, + client_id character varying, + data_source_id bigint, + assessment_id character varying, + score integer, + assessed_at timestamp without time zone, + assessor_id character varying, + assessor_name character varying, + assessor_email character varying, + last_fetched_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: eccovia_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.eccovia_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: eccovia_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.eccovia_assessments_id_seq OWNED BY public.eccovia_assessments.id; + + +-- +-- Name: eccovia_case_managers; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.eccovia_case_managers ( + id bigint NOT NULL, + client_id character varying, + data_source_id bigint, + case_manager_id character varying, + user_id character varying, + first_name character varying, + last_name character varying, + email character varying, + phone character varying, + cell character varying, + start_date date, + end_date date, + last_fetched_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: eccovia_case_managers_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.eccovia_case_managers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: eccovia_case_managers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.eccovia_case_managers_id_seq OWNED BY public.eccovia_case_managers.id; + + +-- +-- Name: eccovia_client_contacts; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.eccovia_client_contacts ( + id bigint NOT NULL, + client_id character varying, + data_source_id bigint, + email character varying, + phone character varying, + cell character varying, + street character varying, + street2 character varying, + city character varying, + state character varying, + zip character varying, + last_fetched_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: eccovia_client_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.eccovia_client_contacts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: eccovia_client_contacts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.eccovia_client_contacts_id_seq OWNED BY public.eccovia_client_contacts.id; + + +-- +-- Name: eccovia_fetches; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.eccovia_fetches ( + id bigint NOT NULL, + credentials_id bigint, + data_source_id bigint, + active boolean DEFAULT false NOT NULL, + last_fetched_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: eccovia_fetches_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.eccovia_fetches_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: eccovia_fetches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.eccovia_fetches_id_seq OWNED BY public.eccovia_fetches.id; + + +-- +-- Name: enrollment_change_histories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.enrollment_change_histories ( + id integer NOT NULL, + client_id integer NOT NULL, + "on" date NOT NULL, + residential jsonb, + other jsonb, + created_at timestamp without time zone, + updated_at timestamp without time zone, + version integer DEFAULT 1 NOT NULL, + days_homeless integer +); + + +-- +-- Name: enrollment_change_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.enrollment_change_histories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: enrollment_change_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.enrollment_change_histories_id_seq OWNED BY public.enrollment_change_histories.id; + + +-- +-- Name: enrollment_extras; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.enrollment_extras ( + id integer NOT NULL, + enrollment_id integer, + vispdat_grand_total integer, + vispdat_added_at date, + vispdat_started_at date, + vispdat_ended_at date, + source_tab character varying, + created_at timestamp without time zone, + updated_at timestamp without time zone, + file_id bigint, + data_source_id integer, + client_id character varying, + client_uid character varying, + hud_enrollment_id character varying, + enrollment_group_id character varying, + project_name character varying, + entry_date date, + exit_date date, + vispdat_type character varying, + vispdat_range character varying, + prioritization_tool_type character varying, + prioritization_tool_score integer, + agency_name character varying, + community character varying, + lgbtq_household_members boolean, + client_lgbtq boolean, + dv_survivor boolean, + prevention_tool_score integer, + shelter_priority character varying, + permanent_housing_priority_group character varying +); + + +-- +-- Name: enrollment_extras_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.enrollment_extras_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: enrollment_extras_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.enrollment_extras_id_seq OWNED BY public.enrollment_extras.id; + + +-- +-- Name: eto_api_configs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.eto_api_configs ( + id integer NOT NULL, + data_source_id integer NOT NULL, + touchpoint_fields jsonb, + demographic_fields jsonb, + demographic_fields_with_attributes jsonb, + additional_fields jsonb, + created_at timestamp without time zone, + updated_at timestamp without time zone, + identifier character varying, + email character varying, + encrypted_password character varying, + encrypted_password_iv character varying, + enterprise character varying, + hud_touch_point_id character varying, + active boolean DEFAULT false +); + + +-- +-- Name: eto_api_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.eto_api_configs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: eto_api_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.eto_api_configs_id_seq OWNED BY public.eto_api_configs.id; + + +-- +-- Name: eto_client_lookups; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.eto_client_lookups ( + id integer NOT NULL, + data_source_id integer NOT NULL, + client_id integer NOT NULL, + enterprise_guid character varying NOT NULL, + site_id integer NOT NULL, + subject_id integer NOT NULL, + last_updated timestamp without time zone, + participant_site_identifier integer +); + + +-- +-- Name: eto_client_lookups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.eto_client_lookups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: eto_client_lookups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.eto_client_lookups_id_seq OWNED BY public.eto_client_lookups.id; + + +-- +-- Name: eto_subject_response_lookups; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.eto_subject_response_lookups ( + id integer NOT NULL, + data_source_id integer NOT NULL, + subject_id integer NOT NULL, + response_id integer NOT NULL +); + + +-- +-- Name: eto_subject_response_lookups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.eto_subject_response_lookups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: eto_subject_response_lookups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.eto_subject_response_lookups_id_seq OWNED BY public.eto_subject_response_lookups.id; + + +-- +-- Name: eto_touch_point_lookups; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.eto_touch_point_lookups ( + id integer NOT NULL, + data_source_id integer NOT NULL, + client_id integer NOT NULL, + subject_id integer NOT NULL, + assessment_id integer NOT NULL, + response_id integer NOT NULL, + last_updated timestamp without time zone, + site_id integer +); + + +-- +-- Name: eto_touch_point_lookups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.eto_touch_point_lookups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: eto_touch_point_lookups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.eto_touch_point_lookups_id_seq OWNED BY public.eto_touch_point_lookups.id; + + +-- +-- Name: eto_touch_point_response_times; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.eto_touch_point_response_times ( + id integer NOT NULL, + touch_point_unique_identifier integer NOT NULL, + response_unique_identifier integer NOT NULL, + response_last_updated timestamp without time zone NOT NULL, + subject_unique_identifier integer NOT NULL +); + + +-- +-- Name: eto_touch_point_response_times_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.eto_touch_point_response_times_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: eto_touch_point_response_times_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.eto_touch_point_response_times_id_seq OWNED BY public.eto_touch_point_response_times.id; + + +-- +-- Name: exports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.exports ( + id integer NOT NULL, + export_id character varying, + user_id integer, + start_date date, + end_date date, + period_type integer, + directive integer, + hash_status integer, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + faked_pii boolean DEFAULT false, + project_ids jsonb, + include_deleted boolean DEFAULT false, + content_type character varying, + content bytea, + file character varying, + delayed_job_id integer, + version character varying, + confidential boolean DEFAULT false NOT NULL, + started_at timestamp without time zone, + completed_at timestamp without time zone, + options jsonb +); + + +-- +-- Name: exports_ad_hoc_anons; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.exports_ad_hoc_anons ( + id bigint NOT NULL, + user_id bigint NOT NULL, + options jsonb, + headers jsonb, + rows jsonb, + client_count integer, + started_at timestamp without time zone, + completed_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: exports_ad_hoc_anons_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.exports_ad_hoc_anons_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: exports_ad_hoc_anons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.exports_ad_hoc_anons_id_seq OWNED BY public.exports_ad_hoc_anons.id; + + +-- +-- Name: exports_ad_hocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.exports_ad_hocs ( + id bigint NOT NULL, + user_id bigint NOT NULL, + options jsonb, + headers jsonb, + rows jsonb, + client_count integer, + started_at timestamp without time zone, + completed_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: exports_ad_hocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.exports_ad_hocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: exports_ad_hocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.exports_ad_hocs_id_seq OWNED BY public.exports_ad_hocs.id; + + +-- +-- Name: exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.exports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.exports_id_seq OWNED BY public.exports.id; + + +-- +-- Name: external_ids; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.external_ids ( + id bigint NOT NULL, + value character varying NOT NULL, + source_type character varying NOT NULL, + source_id bigint NOT NULL, + remote_credential_id bigint, + external_request_log_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + namespace character varying +); + + +-- +-- Name: external_ids_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.external_ids_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: external_ids_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.external_ids_id_seq OWNED BY public.external_ids.id; + + +-- +-- Name: external_reporting_cohort_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.external_reporting_cohort_permissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: external_reporting_cohort_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.external_reporting_cohort_permissions_id_seq OWNED BY public.external_reporting_cohort_permissions.id; + + +-- +-- Name: external_reporting_project_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.external_reporting_project_permissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: external_reporting_project_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.external_reporting_project_permissions_id_seq OWNED BY public.external_reporting_project_permissions.id; + + +-- +-- Name: external_request_logs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.external_request_logs ( + id bigint NOT NULL, + initiator_type character varying, + initiator_id bigint, + identifier character varying, + content_type character varying, + url character varying NOT NULL, + http_method character varying DEFAULT 'GET'::character varying NOT NULL, + ip inet, + request_headers jsonb DEFAULT '{}'::jsonb NOT NULL, + request text NOT NULL, + response text NOT NULL, + http_status integer, + requested_at timestamp without time zone NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: external_request_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.external_request_logs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: external_request_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.external_request_logs_id_seq OWNED BY public.external_request_logs.id; + + +-- +-- Name: fake_data; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.fake_data ( + id integer NOT NULL, + environment character varying NOT NULL, + map text, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + client_ids text +); + + +-- +-- Name: fake_data_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.fake_data_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: fake_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.fake_data_id_seq OWNED BY public.fake_data.id; + + +-- +-- Name: favorites; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.favorites ( + id bigint NOT NULL, + user_id bigint NOT NULL, + entity_type character varying NOT NULL, + entity_id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: favorites_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.favorites_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: favorites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.favorites_id_seq OWNED BY public.favorites.id; + + +-- +-- Name: federal_census_breakdowns; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.federal_census_breakdowns ( + id bigint NOT NULL, + accurate_on date, + type character varying, + geography_level character varying, + geography character varying, + measure character varying, + value integer, + geo_id character varying, + race character varying, + gender character varying, + age_min integer, + age_max integer, + source character varying, + census_variable_name character varying +); + + +-- +-- Name: COLUMN federal_census_breakdowns.accurate_on; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.federal_census_breakdowns.accurate_on IS 'Most recent census date'; + + +-- +-- Name: COLUMN federal_census_breakdowns.geography_level; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.federal_census_breakdowns.geography_level IS 'State, zip, CoC (or maybe 010, 040, 050)'; + + +-- +-- Name: COLUMN federal_census_breakdowns.geography; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.federal_census_breakdowns.geography IS 'MA, 02101, MA-500'; + + +-- +-- Name: COLUMN federal_census_breakdowns.measure; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.federal_census_breakdowns.measure IS 'Detail of race, age, etc. (Asian, 50-59...)'; + + +-- +-- Name: COLUMN federal_census_breakdowns.value; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.federal_census_breakdowns.value IS 'count of population'; + + +-- +-- Name: COLUMN federal_census_breakdowns.source; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.federal_census_breakdowns.source IS 'Source of data'; + + +-- +-- Name: COLUMN federal_census_breakdowns.census_variable_name; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.federal_census_breakdowns.census_variable_name IS 'For debugging, variable name used in source'; + + +-- +-- Name: federal_census_breakdowns_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.federal_census_breakdowns_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: federal_census_breakdowns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.federal_census_breakdowns_id_seq OWNED BY public.federal_census_breakdowns.id; + + +-- +-- Name: files; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.files ( + id integer NOT NULL, + type character varying NOT NULL, + file character varying, + content_type character varying, + content bytea, + client_id integer, + user_id integer, + created_at timestamp without time zone, + updated_at timestamp without time zone, + deleted_at timestamp without time zone, + note character varying, + name character varying, + visible_in_window boolean, + migrated_username character varying, + vispdat_id integer, + consent_form_signed_on date, + consent_form_confirmed boolean, + size double precision, + effective_date date, + expiration_date date, + delete_reason integer, + delete_detail character varying, + consent_revoked_at timestamp without time zone, + coc_codes jsonb DEFAULT '[]'::jsonb, + enrollment_id bigint, + confidential boolean DEFAULT false NOT NULL, + updated_by_id bigint, + data_source_id bigint, + consent_revoked_by_user_id integer +); + + +-- +-- Name: files_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.files_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.files_id_seq OWNED BY public.files.id; + + +-- +-- Name: financial_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.financial_clients ( + id bigint NOT NULL, + external_client_id integer NOT NULL, + client_id integer, + data_source_id integer NOT NULL, + client_first_name character varying, + client_last_name character varying, + address_line_1 character varying, + address_line_2 character varying, + city character varying, + state character varying, + zip_code character varying, + service_provder_company character varying, + head_of_household integer, + deleted_was_the_client_screened_for_homelessness integer, + does_the_client_have_a_tenant_based_housing_voucher integer, + if_yes_what_pha_issued_the_voucher character varying, + if_yes_what_type_of_voucher_was_issued character varying, + voucher_type_other character varying, + what_housing_program_is_the_client_in character varying, + housing_program_other character varying, + date_vouchered_if_applicable timestamp without time zone, + date_of_referral_to_agency timestamp without time zone, + lease_start_date timestamp without time zone, + city_of_unit character varying, + income numeric, + household_members integer, + household_members_under_18 integer, + household_members_over_62 integer, + client_birthdate timestamp without time zone, + ada_needs integer, + race character varying, + gender character varying, + ethnicity character varying, + cal_optima_client_id character varying, + dv_survivor integer, + most_recent_living_situation character varying, + most_recent_living_situation_other character varying, + date_of_referral_to_wit timestamp without time zone, + delete_are_rental_arrears_owed integer, + rent_owed_rental_arrears numeric, + total_time_housed integer, + hmis_id_if_applicable character varying, + housed_after_18_months integer, + housed_after_24_months integer, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + was_the_client_screened_for_homelessness character varying, + are_rental_arrears_owed character varying +); + + +-- +-- Name: COLUMN financial_clients.client_id; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.financial_clients.client_id IS 'Reference to a destination client'; + + +-- +-- Name: financial_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.financial_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: financial_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.financial_clients_id_seq OWNED BY public.financial_clients.id; + + +-- +-- Name: financial_providers; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.financial_providers ( + id bigint NOT NULL, + provider_id integer NOT NULL, + data_source_id integer NOT NULL, + agency_name character varying NOT NULL, + address_line_1 character varying, + address_line_2 character varying, + city character varying, + state character varying, + zip_code character varying, + service_provider_area character varying, + service_provider_area_by_city character varying, + pha_contracts character varying, + client_referral_process character varying, + client_referral_process_other character varying, + voucher_types_for_client character varying, + housing_programs character varying, + housing_program_other character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: financial_providers_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.financial_providers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: financial_providers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.financial_providers_id_seq OWNED BY public.financial_providers.id; + + +-- +-- Name: financial_transactions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.financial_transactions ( + id bigint NOT NULL, + transaction_id integer NOT NULL, + data_source_id integer NOT NULL, + transaction_status character varying NOT NULL, + transaction_date timestamp without time zone NOT NULL, + paid_date timestamp without time zone, + external_client_id integer NOT NULL, + provider_id integer NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: financial_transactions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.financial_transactions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: financial_transactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.financial_transactions_id_seq OWNED BY public.financial_transactions.id; + + +-- +-- Name: generate_service_history_batch_logs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.generate_service_history_batch_logs ( + id integer NOT NULL, + generate_service_history_log_id integer, + to_process integer, + updated integer, + patched integer, + delayed_job_id integer, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: generate_service_history_batch_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.generate_service_history_batch_logs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: generate_service_history_batch_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.generate_service_history_batch_logs_id_seq OWNED BY public.generate_service_history_batch_logs.id; + + +-- +-- Name: generate_service_history_log; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.generate_service_history_log ( + id integer NOT NULL, + started_at timestamp without time zone, + completed_at timestamp without time zone, + to_delete integer, + to_add integer, + to_update integer, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + batches integer +); + + +-- +-- Name: generate_service_history_log_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.generate_service_history_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: generate_service_history_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.generate_service_history_log_id_seq OWNED BY public.generate_service_history_log.id; + + +-- +-- Name: generic_services; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.generic_services ( + id bigint NOT NULL, + client_id bigint, + source_type character varying, + source_id bigint, + date date, + title character varying, + data_source_id integer, + category character varying +); + + +-- +-- Name: generic_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.generic_services_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: generic_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.generic_services_id_seq OWNED BY public.generic_services.id; + + +-- +-- Name: grades; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.grades ( + id integer NOT NULL, + type character varying NOT NULL, + grade character varying NOT NULL, + percentage_low integer, + percentage_high integer, + percentage_under_low integer, + percentage_under_high integer, + percentage_over_low integer, + percentage_over_high integer, + color character varying DEFAULT '#000000'::character varying, + weight integer DEFAULT 0 NOT NULL +); + + +-- +-- Name: grades_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.grades_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.grades_id_seq OWNED BY public.grades.id; + + +-- +-- Name: group_viewable_entities; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.group_viewable_entities ( + id integer NOT NULL, + access_group_id integer NOT NULL, + entity_id integer NOT NULL, + entity_type character varying NOT NULL, + deleted_at timestamp without time zone, + collection_id bigint +); + + +-- +-- Name: group_viewable_entities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.group_viewable_entities_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: group_viewable_entities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.group_viewable_entities_id_seq OWNED BY public.group_viewable_entities.id; + + +-- +-- Name: hap_report_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hap_report_clients ( + id bigint NOT NULL, + client_id bigint, + age integer, + emancipated boolean, + head_of_household boolean, + household_ids character varying[], + project_types integer[], + veteran boolean, + mental_health boolean, + substance_use_disorder boolean, + domestic_violence boolean, + income_at_start integer, + income_at_exit integer, + homeless boolean, + nights_in_shelter integer, + deleted_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + head_of_household_for character varying[], + personal_id character varying, + mci_id character varying +); + + +-- +-- Name: hap_report_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hap_report_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hap_report_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hap_report_clients_id_seq OWNED BY public.hap_report_clients.id; + + +-- +-- Name: hap_report_eraps; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hap_report_eraps ( + id bigint NOT NULL, + hap_report_id bigint, + personal_id character varying NOT NULL, + mci_id character varying NOT NULL, + first_name character varying, + last_name character varying, + age integer, + household_id character varying, + head_of_household boolean, + emancipated boolean, + project_type integer, + veteran boolean, + mental_health_disorder boolean, + substance_use_disorder boolean, + survivor_of_domestic_violence boolean, + income_at_start integer, + income_at_exit integer, + homeless boolean, + nights_in_shelter integer, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: hap_report_eraps_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hap_report_eraps_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hap_report_eraps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hap_report_eraps_id_seq OWNED BY public.hap_report_eraps.id; + + +-- +-- Name: health_emergency_ama_restrictions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.health_emergency_ama_restrictions ( + id bigint NOT NULL, + user_id integer NOT NULL, + client_id integer NOT NULL, + agency_id integer, + restricted character varying, + note character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + notes text, + emergency_type character varying, + notification_at timestamp without time zone, + notification_batch_id integer +); + + +-- +-- Name: health_emergency_ama_restrictions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.health_emergency_ama_restrictions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: health_emergency_ama_restrictions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.health_emergency_ama_restrictions_id_seq OWNED BY public.health_emergency_ama_restrictions.id; + + +-- +-- Name: health_emergency_clinical_triages; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.health_emergency_clinical_triages ( + id bigint NOT NULL, + user_id integer NOT NULL, + client_id integer NOT NULL, + agency_id integer, + test_requested character varying, + location character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + notes text, + emergency_type character varying +); + + +-- +-- Name: health_emergency_clinical_triages_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.health_emergency_clinical_triages_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: health_emergency_clinical_triages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.health_emergency_clinical_triages_id_seq OWNED BY public.health_emergency_clinical_triages.id; + + +-- +-- Name: health_emergency_isolations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.health_emergency_isolations ( + id bigint NOT NULL, + type character varying NOT NULL, + user_id integer NOT NULL, + client_id integer NOT NULL, + agency_id integer, + isolation_requested_at timestamp without time zone, + location character varying, + started_on date, + scheduled_to_end_on date, + ended_on date, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + notes text, + emergency_type character varying +); + + +-- +-- Name: health_emergency_isolations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.health_emergency_isolations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: health_emergency_isolations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.health_emergency_isolations_id_seq OWNED BY public.health_emergency_isolations.id; + + +-- +-- Name: health_emergency_test_batches; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.health_emergency_test_batches ( + id bigint NOT NULL, + user_id bigint, + uploaded_count integer, + matched_count integer, + started_at timestamp without time zone, + completed_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + import_errors character varying, + file character varying, + name character varying, + size character varying, + content_type character varying, + content bytea +); + + +-- +-- Name: health_emergency_test_batches_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.health_emergency_test_batches_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: health_emergency_test_batches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.health_emergency_test_batches_id_seq OWNED BY public.health_emergency_test_batches.id; + + +-- +-- Name: health_emergency_tests; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.health_emergency_tests ( + id bigint NOT NULL, + user_id integer NOT NULL, + client_id integer NOT NULL, + agency_id integer, + test_requested character varying, + location character varying, + tested_on date, + result character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + notes text, + emergency_type character varying, + notification_at timestamp without time zone, + notification_batch_id integer +); + + +-- +-- Name: health_emergency_tests_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.health_emergency_tests_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: health_emergency_tests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.health_emergency_tests_id_seq OWNED BY public.health_emergency_tests.id; + + +-- +-- Name: health_emergency_triages; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.health_emergency_triages ( + id bigint NOT NULL, + user_id integer NOT NULL, + client_id integer NOT NULL, + agency_id integer, + location character varying, + exposure character varying, + symptoms character varying, + first_symptoms_on date, + referred_on date, + referred_to character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + notes text, + emergency_type character varying +); + + +-- +-- Name: health_emergency_triages_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.health_emergency_triages_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: health_emergency_triages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.health_emergency_triages_id_seq OWNED BY public.health_emergency_triages.id; + + +-- +-- Name: health_emergency_uploaded_tests; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.health_emergency_uploaded_tests ( + id bigint NOT NULL, + batch_id bigint, + client_id integer, + test_id integer, + first_name character varying, + last_name character varying, + dob date, + gender character varying, + ssn character varying, + tested_on date, + test_location character varying, + test_result character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + ama_restriction_id bigint +); + + +-- +-- Name: health_emergency_uploaded_tests_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.health_emergency_uploaded_tests_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: health_emergency_uploaded_tests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.health_emergency_uploaded_tests_id_seq OWNED BY public.health_emergency_uploaded_tests.id; + + +-- +-- Name: health_emergency_vaccinations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.health_emergency_vaccinations ( + id bigint NOT NULL, + user_id integer NOT NULL, + client_id integer NOT NULL, + agency_id integer, + vaccinated_on date NOT NULL, + vaccinated_at character varying, + follow_up_on date, + follow_up_notification_sent_at timestamp without time zone, + vaccination_type character varying NOT NULL, + follow_up_cell_phone character varying, + emergency_type character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + health_vaccination_id integer, + preferred_language character varying DEFAULT 'en'::character varying, + notification_status text +); + + +-- +-- Name: health_emergency_vaccinations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.health_emergency_vaccinations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: health_emergency_vaccinations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.health_emergency_vaccinations_id_seq OWNED BY public.health_emergency_vaccinations.id; + + +-- +-- Name: helps; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.helps ( + id integer NOT NULL, + controller_path character varying NOT NULL, + action_name character varying NOT NULL, + external_url character varying, + title character varying NOT NULL, + content text NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + location character varying DEFAULT 'internal'::character varying NOT NULL +); + + +-- +-- Name: helps_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.helps_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: helps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.helps_id_seq OWNED BY public.helps.id; + + +-- +-- Name: hmis_2020_affiliations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_affiliations ( + id bigint NOT NULL, + "AffiliationID" character varying, + "ProjectID" character varying, + "ResProjectID" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_affiliations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_affiliations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_affiliations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_affiliations_id_seq OWNED BY public.hmis_2020_affiliations.id; + + +-- +-- Name: hmis_2020_aggregated_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_aggregated_enrollments ( + id bigint NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthIssuesFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugAbuseFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "UrgentReferral" integer, + "TimeToHousingLoss" integer, + "ZeroIncome" integer, + "AnnualPercentAMI" integer, + "FinancialChange" integer, + "HouseholdChange" integer, + "EvictionHistory" integer, + "SubsidyAtRisk" integer, + "LiteralHomelessHistory" integer, + "DisabledHoH" integer, + "CriminalRecord" integer, + "SexOffender" integer, + "DependentUnder6" integer, + "SingleParent" integer, + "HH5Plus" integer, + "IraqAfghanistan" integer, + "FemVet" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "VAMCStation" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone +); + + +-- +-- Name: hmis_2020_aggregated_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_aggregated_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_aggregated_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_aggregated_enrollments_id_seq OWNED BY public.hmis_2020_aggregated_enrollments.id; + + +-- +-- Name: hmis_2020_aggregated_exits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_aggregated_exits ( + id bigint NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone +); + + +-- +-- Name: hmis_2020_aggregated_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_aggregated_exits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_aggregated_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_aggregated_exits_id_seq OWNED BY public.hmis_2020_aggregated_exits.id; + + +-- +-- Name: hmis_2020_assessment_questions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_assessment_questions ( + id bigint NOT NULL, + "AssessmentQuestionID" character varying, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentQuestionGroup" character varying, + "AssessmentQuestionOrder" integer, + "AssessmentQuestion" character varying, + "AssessmentAnswer" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_assessment_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_assessment_questions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_assessment_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_assessment_questions_id_seq OWNED BY public.hmis_2020_assessment_questions.id; + + +-- +-- Name: hmis_2020_assessment_results; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_assessment_results ( + id bigint NOT NULL, + "AssessmentResultID" character varying, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentResultType" character varying, + "AssessmentResult" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_assessment_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_assessment_results_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_assessment_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_assessment_results_id_seq OWNED BY public.hmis_2020_assessment_results.id; + + +-- +-- Name: hmis_2020_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_assessments ( + id bigint NOT NULL, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentDate" date, + "AssessmentLocation" character varying, + "AssessmentType" integer, + "AssessmentLevel" integer, + "PrioritizationStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_assessments_id_seq OWNED BY public.hmis_2020_assessments.id; + + +-- +-- Name: hmis_2020_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_clients ( + id bigint NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIOtherPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Gender" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_clients_id_seq OWNED BY public.hmis_2020_clients.id; + + +-- +-- Name: hmis_2020_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_current_living_situations ( + id bigint NOT NULL, + "CurrentLivingSitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "CurrentLivingSituation" integer, + "VerifiedBy" character varying, + "LeaveSituation14Days" integer, + "SubsequentResidence" integer, + "ResourcesToObtain" integer, + "LeaseOwn60Day" integer, + "MovedTwoOrMore" integer, + "LocationDetails" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_current_living_situations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_current_living_situations_id_seq OWNED BY public.hmis_2020_current_living_situations.id; + + +-- +-- Name: hmis_2020_disabilities; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_disabilities ( + id bigint NOT NULL, + "DisabilitiesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "DisabilityType" integer, + "DisabilityResponse" integer, + "IndefiniteAndImpairs" integer, + "TCellCountAvailable" integer, + "TCellCount" integer, + "TCellSource" integer, + "ViralLoadAvailable" integer, + "ViralLoad" integer, + "ViralLoadSource" integer, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_disabilities_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_disabilities_id_seq OWNED BY public.hmis_2020_disabilities.id; + + +-- +-- Name: hmis_2020_employment_educations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_employment_educations ( + id bigint NOT NULL, + "EmploymentEducationID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "LastGradeCompleted" integer, + "SchoolStatus" integer, + "Employed" integer, + "EmploymentType" integer, + "NotEmployedReason" integer, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_employment_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_employment_educations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_employment_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_employment_educations_id_seq OWNED BY public.hmis_2020_employment_educations.id; + + +-- +-- Name: hmis_2020_enrollment_cocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_enrollment_cocs ( + id bigint NOT NULL, + "EnrollmentCoCID" character varying, + "EnrollmentID" character varying, + "HouseholdID" character varying, + "ProjectID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "CoCCode" character varying, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_enrollment_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_enrollment_cocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_enrollment_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_enrollment_cocs_id_seq OWNED BY public.hmis_2020_enrollment_cocs.id; + + +-- +-- Name: hmis_2020_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_enrollments ( + id bigint NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthIssuesFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugAbuseFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "UrgentReferral" integer, + "TimeToHousingLoss" integer, + "ZeroIncome" integer, + "AnnualPercentAMI" integer, + "FinancialChange" integer, + "HouseholdChange" integer, + "EvictionHistory" integer, + "SubsidyAtRisk" integer, + "LiteralHomelessHistory" integer, + "DisabledHoH" integer, + "CriminalRecord" integer, + "SexOffender" integer, + "DependentUnder6" integer, + "SingleParent" integer, + "HH5Plus" integer, + "IraqAfghanistan" integer, + "FemVet" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "VAMCStation" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_enrollments_id_seq OWNED BY public.hmis_2020_enrollments.id; + + +-- +-- Name: hmis_2020_events; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_events ( + id bigint NOT NULL, + "EventID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "EventDate" date, + "Event" integer, + "ProbSolDivRRResult" integer, + "ReferralCaseManageAfter" integer, + "LocationCrisisOrPHHousing" character varying, + "ReferralResult" integer, + "ResultDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_events_id_seq OWNED BY public.hmis_2020_events.id; + + +-- +-- Name: hmis_2020_exits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_exits ( + id bigint NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_exits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_exits_id_seq OWNED BY public.hmis_2020_exits.id; + + +-- +-- Name: hmis_2020_exports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_exports ( + id bigint NOT NULL, + "ExportID" character varying, + "SourceType" integer, + "SourceID" character varying, + "SourceName" character varying, + "SourceContactFirst" character varying, + "SourceContactLast" character varying, + "SourceContactPhone" character varying, + "SourceContactExtension" character varying, + "SourceContactEmail" character varying, + "ExportDate" timestamp without time zone, + "ExportStartDate" date, + "ExportEndDate" date, + "SoftwareName" character varying, + "SoftwareVersion" character varying, + "ExportPeriodType" integer, + "ExportDirective" integer, + "HashStatus" integer, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_exports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_exports_id_seq OWNED BY public.hmis_2020_exports.id; + + +-- +-- Name: hmis_2020_funders; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_funders ( + id bigint NOT NULL, + "FunderID" character varying, + "ProjectID" character varying, + "Funder" integer, + "OtherFunder" character varying, + "GrantID" character varying, + "StartDate" date, + "EndDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_funders_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_funders_id_seq OWNED BY public.hmis_2020_funders.id; + + +-- +-- Name: hmis_2020_health_and_dvs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_health_and_dvs ( + id bigint NOT NULL, + "HealthAndDVID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "DomesticViolenceVictim" integer, + "WhenOccurred" integer, + "CurrentlyFleeing" integer, + "GeneralHealthStatus" integer, + "DentalHealthStatus" integer, + "MentalHealthStatus" integer, + "PregnancyStatus" integer, + "DueDate" date, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_health_and_dvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_health_and_dvs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_health_and_dvs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_health_and_dvs_id_seq OWNED BY public.hmis_2020_health_and_dvs.id; + + +-- +-- Name: hmis_2020_income_benefits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_income_benefits ( + id bigint NOT NULL, + "IncomeBenefitsID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "IncomeFromAnySource" integer, + "TotalMonthlyIncome" character varying, + "Earned" integer, + "EarnedAmount" character varying, + "Unemployment" integer, + "UnemploymentAmount" character varying, + "SSI" integer, + "SSIAmount" character varying, + "SSDI" integer, + "SSDIAmount" character varying, + "VADisabilityService" integer, + "VADisabilityServiceAmount" character varying, + "VADisabilityNonService" integer, + "VADisabilityNonServiceAmount" character varying, + "PrivateDisability" integer, + "PrivateDisabilityAmount" character varying, + "WorkersComp" integer, + "WorkersCompAmount" character varying, + "TANF" integer, + "TANFAmount" character varying, + "GA" integer, + "GAAmount" character varying, + "SocSecRetirement" integer, + "SocSecRetirementAmount" character varying, + "Pension" integer, + "PensionAmount" character varying, + "ChildSupport" integer, + "ChildSupportAmount" character varying, + "Alimony" integer, + "AlimonyAmount" character varying, + "OtherIncomeSource" integer, + "OtherIncomeAmount" character varying, + "OtherIncomeSourceIdentify" character varying, + "BenefitsFromAnySource" integer, + "SNAP" integer, + "WIC" integer, + "TANFChildCare" integer, + "TANFTransportation" integer, + "OtherTANF" integer, + "OtherBenefitsSource" integer, + "OtherBenefitsSourceIdentify" character varying, + "InsuranceFromAnySource" integer, + "Medicaid" integer, + "NoMedicaidReason" integer, + "Medicare" integer, + "NoMedicareReason" integer, + "SCHIP" integer, + "NoSCHIPReason" integer, + "VAMedicalServices" integer, + "NoVAMedReason" integer, + "EmployerProvided" integer, + "NoEmployerProvidedReason" integer, + "COBRA" integer, + "NoCOBRAReason" integer, + "PrivatePay" integer, + "NoPrivatePayReason" integer, + "StateHealthIns" integer, + "NoStateHealthInsReason" integer, + "IndianHealthServices" integer, + "NoIndianHealthServicesReason" integer, + "OtherInsurance" integer, + "OtherInsuranceIdentify" character varying, + "HIVAIDSAssistance" integer, + "NoHIVAIDSAssistanceReason" integer, + "ADAP" integer, + "NoADAPReason" integer, + "ConnectionWithSOAR" integer, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_income_benefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_income_benefits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_income_benefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_income_benefits_id_seq OWNED BY public.hmis_2020_income_benefits.id; + + +-- +-- Name: hmis_2020_inventories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_inventories ( + id bigint NOT NULL, + "InventoryID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "HouseholdType" integer, + "Availability" integer, + "UnitInventory" integer, + "BedInventory" integer, + "CHVetBedInventory" integer, + "YouthVetBedInventory" integer, + "VetBedInventory" integer, + "CHYouthBedInventory" integer, + "YouthBedInventory" integer, + "CHBedInventory" integer, + "OtherBedInventory" integer, + "ESBedType" integer, + "InventoryStartDate" date, + "InventoryEndDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_inventories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_inventories_id_seq OWNED BY public.hmis_2020_inventories.id; + + +-- +-- Name: hmis_2020_organizations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_organizations ( + id bigint NOT NULL, + "OrganizationID" character varying, + "OrganizationName" character varying, + "VictimServicesProvider" integer, + "OrganizationCommonName" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_organizations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_organizations_id_seq OWNED BY public.hmis_2020_organizations.id; + + +-- +-- Name: hmis_2020_project_cocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_project_cocs ( + id bigint NOT NULL, + "ProjectCoCID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "Geocode" character varying, + "Address1" character varying, + "Address2" character varying, + "City" character varying, + "State" character varying, + "Zip" character varying, + "GeographyType" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_project_cocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_project_cocs_id_seq OWNED BY public.hmis_2020_project_cocs.id; + + +-- +-- Name: hmis_2020_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_projects ( + id bigint NOT NULL, + "ProjectID" character varying, + "OrganizationID" character varying, + "ProjectName" character varying, + "ProjectCommonName" character varying, + "OperatingStartDate" date, + "OperatingEndDate" date, + "ContinuumProject" integer, + "ProjectType" integer, + "HousingType" integer, + "ResidentialAffiliation" integer, + "TrackingMethod" integer, + "HMISParticipatingProject" integer, + "TargetPopulation" integer, + "PITCount" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_projects_id_seq OWNED BY public.hmis_2020_projects.id; + + +-- +-- Name: hmis_2020_services; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_services ( + id bigint NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_services_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_services_id_seq OWNED BY public.hmis_2020_services.id; + + +-- +-- Name: hmis_2020_users; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2020_users ( + id bigint NOT NULL, + "UserID" character varying, + "UserFirstName" character varying, + "UserLastName" character varying, + "UserPhone" character varying, + "UserExtension" character varying, + "UserEmail" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2020_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2020_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2020_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2020_users_id_seq OWNED BY public.hmis_2020_users.id; + + +-- +-- Name: hmis_2022_affiliations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_affiliations ( + id bigint NOT NULL, + "AffiliationID" character varying, + "ProjectID" character varying, + "ResProjectID" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_affiliations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_affiliations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_affiliations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_affiliations_id_seq OWNED BY public.hmis_2022_affiliations.id; + + +-- +-- Name: hmis_2022_assessment_questions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_assessment_questions ( + id bigint NOT NULL, + "AssessmentQuestionID" character varying, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentQuestionGroup" character varying, + "AssessmentQuestionOrder" integer, + "AssessmentQuestion" character varying, + "AssessmentAnswer" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_assessment_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_assessment_questions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_assessment_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_assessment_questions_id_seq OWNED BY public.hmis_2022_assessment_questions.id; + + +-- +-- Name: hmis_2022_assessment_results; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_assessment_results ( + id bigint NOT NULL, + "AssessmentResultID" character varying, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentResultType" character varying, + "AssessmentResult" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_assessment_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_assessment_results_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_assessment_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_assessment_results_id_seq OWNED BY public.hmis_2022_assessment_results.id; + + +-- +-- Name: hmis_2022_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_assessments ( + id bigint NOT NULL, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentDate" date, + "AssessmentLocation" character varying, + "AssessmentType" integer, + "AssessmentLevel" integer, + "PrioritizationStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_assessments_id_seq OWNED BY public.hmis_2022_assessments.id; + + +-- +-- Name: hmis_2022_clients_saved; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_clients_saved ( + id bigint DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass) NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "Ethnicity" integer, + "Female" integer, + "Male" integer, + "NoSingleGender" integer, + "Transgender" integer, + "Questioning" integer, + "GenderNone" integer, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_current_living_situations ( + id bigint NOT NULL, + "CurrentLivingSitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "CurrentLivingSituation" integer, + "VerifiedBy" character varying, + "LeaveSituation14Days" integer, + "SubsequentResidence" integer, + "ResourcesToObtain" integer, + "LeaseOwn60Day" integer, + "MovedTwoOrMore" integer, + "LocationDetails" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_current_living_situations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_current_living_situations_id_seq OWNED BY public.hmis_2022_current_living_situations.id; + + +-- +-- Name: hmis_2022_disabilities; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_disabilities ( + id bigint NOT NULL, + "DisabilitiesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "DisabilityType" integer, + "DisabilityResponse" integer, + "IndefiniteAndImpairs" integer, + "TCellCountAvailable" integer, + "TCellCount" integer, + "TCellSource" integer, + "ViralLoadAvailable" integer, + "ViralLoad" integer, + "ViralLoadSource" integer, + "AntiRetroviral" integer, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_disabilities_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_disabilities_id_seq OWNED BY public.hmis_2022_disabilities.id; + + +-- +-- Name: hmis_2022_employment_educations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_employment_educations ( + id bigint NOT NULL, + "EmploymentEducationID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "LastGradeCompleted" integer, + "SchoolStatus" integer, + "Employed" integer, + "EmploymentType" integer, + "NotEmployedReason" integer, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_employment_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_employment_educations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_employment_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_employment_educations_id_seq OWNED BY public.hmis_2022_employment_educations.id; + + +-- +-- Name: hmis_2022_enrollment_cocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_enrollment_cocs ( + id bigint NOT NULL, + "EnrollmentCoCID" character varying, + "EnrollmentID" character varying, + "HouseholdID" character varying, + "ProjectID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "CoCCode" character varying, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_enrollment_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_enrollment_cocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_enrollment_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_enrollment_cocs_id_seq OWNED BY public.hmis_2022_enrollment_cocs.id; + + +-- +-- Name: hmis_2022_enrollments_saved; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_enrollments_saved ( + id bigint DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass) NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_events; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_events ( + id bigint NOT NULL, + "EventID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "EventDate" date, + "Event" integer, + "ProbSolDivRRResult" integer, + "ReferralCaseManageAfter" integer, + "LocationCrisisOrPHHousing" character varying, + "ReferralResult" integer, + "ResultDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_events_id_seq OWNED BY public.hmis_2022_events.id; + + +-- +-- Name: hmis_2022_exits_saved; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_exits_saved ( + id bigint DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass) NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_exports ( + id bigint NOT NULL, + "ExportID" character varying, + "SourceType" integer, + "SourceID" character varying, + "SourceName" character varying, + "SourceContactFirst" character varying, + "SourceContactLast" character varying, + "SourceContactPhone" character varying, + "SourceContactExtension" character varying, + "SourceContactEmail" character varying, + "ExportDate" timestamp without time zone, + "ExportStartDate" date, + "ExportEndDate" date, + "SoftwareName" character varying, + "SoftwareVersion" character varying, + "CSVVersion" character varying, + "ExportPeriodType" integer, + "ExportDirective" integer, + "HashStatus" integer, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_exports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_exports_id_seq OWNED BY public.hmis_2022_exports.id; + + +-- +-- Name: hmis_2022_funders; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_funders ( + id bigint NOT NULL, + "FunderID" character varying, + "ProjectID" character varying, + "Funder" integer, + "OtherFunder" character varying, + "GrantID" character varying, + "StartDate" date, + "EndDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_funders_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_funders_id_seq OWNED BY public.hmis_2022_funders.id; + + +-- +-- Name: hmis_2022_health_and_dvs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_health_and_dvs ( + id bigint NOT NULL, + "HealthAndDVID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "DomesticViolenceVictim" integer, + "WhenOccurred" integer, + "CurrentlyFleeing" integer, + "GeneralHealthStatus" integer, + "DentalHealthStatus" integer, + "MentalHealthStatus" integer, + "PregnancyStatus" integer, + "DueDate" date, + "LifeValue" integer, + "SupportFromOthers" integer, + "BounceBack" integer, + "FeelingFrequency" integer, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_health_and_dvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_health_and_dvs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_health_and_dvs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_health_and_dvs_id_seq OWNED BY public.hmis_2022_health_and_dvs.id; + + +-- +-- Name: hmis_2022_income_benefits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_income_benefits ( + id bigint NOT NULL, + "IncomeBenefitsID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "IncomeFromAnySource" integer, + "TotalMonthlyIncome" character varying, + "Earned" integer, + "EarnedAmount" character varying, + "Unemployment" integer, + "UnemploymentAmount" character varying, + "SSI" integer, + "SSIAmount" character varying, + "SSDI" integer, + "SSDIAmount" character varying, + "VADisabilityService" integer, + "VADisabilityServiceAmount" character varying, + "VADisabilityNonService" integer, + "VADisabilityNonServiceAmount" character varying, + "PrivateDisability" integer, + "PrivateDisabilityAmount" character varying, + "WorkersComp" integer, + "WorkersCompAmount" character varying, + "TANF" integer, + "TANFAmount" character varying, + "GA" integer, + "GAAmount" character varying, + "SocSecRetirement" integer, + "SocSecRetirementAmount" character varying, + "Pension" integer, + "PensionAmount" character varying, + "ChildSupport" integer, + "ChildSupportAmount" character varying, + "Alimony" integer, + "AlimonyAmount" character varying, + "OtherIncomeSource" integer, + "OtherIncomeAmount" character varying, + "OtherIncomeSourceIdentify" character varying, + "BenefitsFromAnySource" integer, + "SNAP" integer, + "WIC" integer, + "TANFChildCare" integer, + "TANFTransportation" integer, + "OtherTANF" integer, + "OtherBenefitsSource" integer, + "OtherBenefitsSourceIdentify" character varying, + "InsuranceFromAnySource" integer, + "Medicaid" integer, + "NoMedicaidReason" integer, + "Medicare" integer, + "NoMedicareReason" integer, + "SCHIP" integer, + "NoSCHIPReason" integer, + "VAMedicalServices" integer, + "NoVAMedReason" integer, + "EmployerProvided" integer, + "NoEmployerProvidedReason" integer, + "COBRA" integer, + "NoCOBRAReason" integer, + "PrivatePay" integer, + "NoPrivatePayReason" integer, + "StateHealthIns" integer, + "NoStateHealthInsReason" integer, + "IndianHealthServices" integer, + "NoIndianHealthServicesReason" integer, + "OtherInsurance" integer, + "OtherInsuranceIdentify" character varying, + "HIVAIDSAssistance" integer, + "NoHIVAIDSAssistanceReason" integer, + "ADAP" integer, + "NoADAPReason" integer, + "RyanWhiteMedDent" integer, + "NoRyanWhiteReason" integer, + "ConnectionWithSOAR" integer, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_income_benefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_income_benefits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_income_benefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_income_benefits_id_seq OWNED BY public.hmis_2022_income_benefits.id; + + +-- +-- Name: hmis_2022_inventories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_inventories ( + id bigint NOT NULL, + "InventoryID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "HouseholdType" integer, + "Availability" integer, + "UnitInventory" integer, + "BedInventory" integer, + "CHVetBedInventory" integer, + "YouthVetBedInventory" integer, + "VetBedInventory" integer, + "CHYouthBedInventory" integer, + "YouthBedInventory" integer, + "CHBedInventory" integer, + "OtherBedInventory" integer, + "ESBedType" integer, + "InventoryStartDate" date, + "InventoryEndDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_inventories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_inventories_id_seq OWNED BY public.hmis_2022_inventories.id; + + +-- +-- Name: hmis_2022_organizations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_organizations ( + id bigint NOT NULL, + "OrganizationID" character varying, + "OrganizationName" character varying, + "VictimServiceProvider" integer, + "OrganizationCommonName" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_organizations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_organizations_id_seq OWNED BY public.hmis_2022_organizations.id; + + +-- +-- Name: hmis_2022_project_cocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_project_cocs ( + id bigint NOT NULL, + "ProjectCoCID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "Geocode" character varying, + "Address1" character varying, + "Address2" character varying, + "City" character varying, + "State" character varying, + "Zip" character varying, + "GeographyType" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_project_cocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_project_cocs_id_seq OWNED BY public.hmis_2022_project_cocs.id; + + +-- +-- Name: hmis_2022_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_projects ( + id bigint NOT NULL, + "ProjectID" character varying, + "OrganizationID" character varying, + "ProjectName" character varying, + "ProjectCommonName" character varying, + "OperatingStartDate" date, + "OperatingEndDate" date, + "ContinuumProject" integer, + "ProjectType" integer, + "HousingType" integer, + "ResidentialAffiliation" integer, + "TrackingMethod" integer, + "HMISParticipatingProject" integer, + "TargetPopulation" integer, + "HOPWAMedAssistedLivingFac" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true, + "PITCount" integer +); + + +-- +-- Name: hmis_2022_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_projects_id_seq OWNED BY public.hmis_2022_projects.id; + + +-- +-- Name: hmis_2022_services_saved; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_services_saved ( + id bigint DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass) NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_users; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_users ( + id bigint NOT NULL, + "UserID" character varying, + "UserFirstName" character varying, + "UserLastName" character varying, + "UserPhone" character varying, + "UserExtension" character varying, + "UserEmail" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_users_id_seq OWNED BY public.hmis_2022_users.id; + + +-- +-- Name: hmis_2022_youth_education_statuses; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2022_youth_education_statuses ( + id bigint NOT NULL, + "YouthEducationStatusID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "CurrentSchoolAttend" integer, + "MostRecentEdStatus" integer, + "CurrentEdStatus" integer, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2022_youth_education_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2022_youth_education_statuses_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2022_youth_education_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2022_youth_education_statuses_id_seq OWNED BY public.hmis_2022_youth_education_statuses.id; + + +-- +-- Name: hmis_2024_affiliations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_affiliations ( + id bigint NOT NULL, + "AffiliationID" character varying, + "ProjectID" character varying, + "ResProjectID" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_affiliations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_affiliations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_affiliations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_affiliations_id_seq OWNED BY public.hmis_2024_affiliations.id; + + +-- +-- Name: hmis_2024_assessment_questions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_assessment_questions ( + id bigint NOT NULL, + "AssessmentQuestionID" character varying, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentQuestionGroup" character varying, + "AssessmentQuestionOrder" integer, + "AssessmentQuestion" character varying, + "AssessmentAnswer" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_assessment_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_assessment_questions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_assessment_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_assessment_questions_id_seq OWNED BY public.hmis_2024_assessment_questions.id; + + +-- +-- Name: hmis_2024_assessment_results; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_assessment_results ( + id bigint NOT NULL, + "AssessmentResultID" character varying, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentResultType" character varying, + "AssessmentResult" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_assessment_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_assessment_results_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_assessment_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_assessment_results_id_seq OWNED BY public.hmis_2024_assessment_results.id; + + +-- +-- Name: hmis_2024_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_assessments ( + id bigint NOT NULL, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentDate" date, + "AssessmentLocation" character varying, + "AssessmentType" integer, + "AssessmentLevel" integer, + "PrioritizationStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_assessments_id_seq OWNED BY public.hmis_2024_assessments.id; + + +-- +-- Name: hmis_2024_ce_participations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_ce_participations ( + id bigint NOT NULL, + "CEParticipationID" character varying, + "ProjectID" character varying, + "AccessPoint" integer, + "PreventionAssessment" integer, + "CrisisAssessment" integer, + "HousingAssessment" integer, + "DirectServices" integer, + "ReceivesReferrals" integer, + "CEParticipationStatusStartDate" date, + "CEParticipationStatusEndDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_ce_participations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_ce_participations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_ce_participations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_ce_participations_id_seq OWNED BY public.hmis_2024_ce_participations.id; + + +-- +-- Name: hmis_2024_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_clients ( + id bigint NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" integer, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" date, + "DOBDataQuality" character varying, + "AmIndAKNative" integer, + "Asian" integer, + "BlackAfAmerican" integer, + "HispanicLatinaeo" integer, + "MidEastNAfrican" integer, + "NativeHIPacific" integer, + "White" integer, + "RaceNone" integer, + "AdditionalRaceEthnicity" character varying, + "Woman" integer, + "Man" integer, + "NonBinary" integer, + "CulturallySpecific" integer, + "Transgender" integer, + "Questioning" integer, + "DifferentIdentity" integer, + "GenderNone" integer, + "DifferentIdentityText" character varying, + "VeteranStatus" integer, + "YearEnteredService" integer, + "YearSeparated" integer, + "WorldWarII" integer, + "KoreanWar" integer, + "VietnamWar" integer, + "DesertStorm" integer, + "AfghanistanOEF" integer, + "IraqOIF" integer, + "IraqOND" integer, + "OtherTheater" integer, + "MilitaryBranch" integer, + "DischargeStatus" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_clients_id_seq OWNED BY public.hmis_2024_clients.id; + + +-- +-- Name: hmis_2024_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_current_living_situations ( + id bigint NOT NULL, + "CurrentLivingSitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "CurrentLivingSituation" integer, + "CLSSubsidyType" integer, + "VerifiedBy" character varying, + "LeaveSituation14Days" integer, + "SubsequentResidence" integer, + "ResourcesToObtain" integer, + "LeaseOwn60Day" integer, + "MovedTwoOrMore" integer, + "LocationDetails" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_current_living_situations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_current_living_situations_id_seq OWNED BY public.hmis_2024_current_living_situations.id; + + +-- +-- Name: hmis_2024_disabilities; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_disabilities ( + id bigint NOT NULL, + "DisabilitiesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "DisabilityType" integer, + "DisabilityResponse" integer, + "IndefiniteAndImpairs" integer, + "TCellCountAvailable" integer, + "TCellCount" integer, + "TCellSource" integer, + "ViralLoadAvailable" integer, + "ViralLoad" integer, + "ViralLoadSource" integer, + "AntiRetroviral" integer, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_disabilities_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_disabilities_id_seq OWNED BY public.hmis_2024_disabilities.id; + + +-- +-- Name: hmis_2024_employment_educations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_employment_educations ( + id bigint NOT NULL, + "EmploymentEducationID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "LastGradeCompleted" integer, + "SchoolStatus" integer, + "Employed" integer, + "EmploymentType" integer, + "NotEmployedReason" integer, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_employment_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_employment_educations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_employment_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_employment_educations_id_seq OWNED BY public.hmis_2024_employment_educations.id; + + +-- +-- Name: hmis_2024_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_enrollments ( + id bigint NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "EnrollmentCoC" character varying, + "LivingSituation" integer, + "RentalSubsidyType" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "PercentAMI" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "TranslationNeeded" integer, + "PreferredLanguage" integer, + "PreferredLanguageDifferent" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_enrollments_id_seq OWNED BY public.hmis_2024_enrollments.id; + + +-- +-- Name: hmis_2024_events; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_events ( + id bigint NOT NULL, + "EventID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "EventDate" date, + "Event" integer, + "ProbSolDivRRResult" integer, + "ReferralCaseManageAfter" integer, + "LocationCrisisOrPHHousing" character varying, + "ReferralResult" integer, + "ResultDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_events_id_seq OWNED BY public.hmis_2024_events.id; + + +-- +-- Name: hmis_2024_exits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_exits ( + id bigint NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "DestinationSubsidyType" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_exits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_exits_id_seq OWNED BY public.hmis_2024_exits.id; + + +-- +-- Name: hmis_2024_exports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_exports ( + id bigint NOT NULL, + "ExportID" character varying, + "SourceType" integer, + "SourceID" character varying, + "SourceName" character varying, + "SourceContactFirst" character varying, + "SourceContactLast" character varying, + "SourceContactPhone" character varying, + "SourceContactExtension" character varying, + "SourceContactEmail" character varying, + "ExportDate" timestamp without time zone, + "ExportStartDate" date, + "ExportEndDate" date, + "SoftwareName" character varying, + "SoftwareVersion" character varying, + "CSVVersion" character varying, + "ExportPeriodType" integer, + "ExportDirective" integer, + "HashStatus" integer, + "ImplementationID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_exports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_exports_id_seq OWNED BY public.hmis_2024_exports.id; + + +-- +-- Name: hmis_2024_funders; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_funders ( + id bigint NOT NULL, + "FunderID" character varying, + "ProjectID" character varying, + "Funder" integer, + "OtherFunder" character varying, + "GrantID" character varying, + "StartDate" date, + "EndDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_funders_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_funders_id_seq OWNED BY public.hmis_2024_funders.id; + + +-- +-- Name: hmis_2024_health_and_dvs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_health_and_dvs ( + id bigint NOT NULL, + "HealthAndDVID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "DomesticViolenceSurvivor" integer, + "WhenOccurred" integer, + "CurrentlyFleeing" integer, + "GeneralHealthStatus" integer, + "DentalHealthStatus" integer, + "MentalHealthStatus" integer, + "PregnancyStatus" integer, + "DueDate" date, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_health_and_dvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_health_and_dvs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_health_and_dvs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_health_and_dvs_id_seq OWNED BY public.hmis_2024_health_and_dvs.id; + + +-- +-- Name: hmis_2024_hmis_participations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_hmis_participations ( + id bigint NOT NULL, + "HMISParticipationID" character varying, + "ProjectID" character varying, + "HMISParticipationType" integer, + "HMISParticipationStatusStartDate" date, + "HMISParticipationStatusEndDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_hmis_participations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_hmis_participations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_hmis_participations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_hmis_participations_id_seq OWNED BY public.hmis_2024_hmis_participations.id; + + +-- +-- Name: hmis_2024_income_benefits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_income_benefits ( + id bigint NOT NULL, + "IncomeBenefitsID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "IncomeFromAnySource" integer, + "TotalMonthlyIncome" character varying, + "Earned" integer, + "EarnedAmount" character varying, + "Unemployment" integer, + "UnemploymentAmount" character varying, + "SSI" integer, + "SSIAmount" character varying, + "SSDI" integer, + "SSDIAmount" character varying, + "VADisabilityService" integer, + "VADisabilityServiceAmount" character varying, + "VADisabilityNonService" integer, + "VADisabilityNonServiceAmount" character varying, + "PrivateDisability" integer, + "PrivateDisabilityAmount" character varying, + "WorkersComp" integer, + "WorkersCompAmount" character varying, + "TANF" integer, + "TANFAmount" character varying, + "GA" integer, + "GAAmount" character varying, + "SocSecRetirement" integer, + "SocSecRetirementAmount" character varying, + "Pension" integer, + "PensionAmount" character varying, + "ChildSupport" integer, + "ChildSupportAmount" character varying, + "Alimony" integer, + "AlimonyAmount" character varying, + "OtherIncomeSource" integer, + "OtherIncomeAmount" character varying, + "OtherIncomeSourceIdentify" character varying, + "BenefitsFromAnySource" integer, + "SNAP" integer, + "WIC" integer, + "TANFChildCare" integer, + "TANFTransportation" integer, + "OtherTANF" integer, + "OtherBenefitsSource" integer, + "OtherBenefitsSourceIdentify" character varying, + "InsuranceFromAnySource" integer, + "Medicaid" integer, + "NoMedicaidReason" integer, + "Medicare" integer, + "NoMedicareReason" integer, + "SCHIP" integer, + "NoSCHIPReason" integer, + "VHAServices" integer, + "NoVHAReason" integer, + "EmployerProvided" integer, + "NoEmployerProvidedReason" integer, + "COBRA" integer, + "NoCOBRAReason" integer, + "PrivatePay" integer, + "NoPrivatePayReason" integer, + "StateHealthIns" integer, + "NoStateHealthInsReason" integer, + "IndianHealthServices" integer, + "NoIndianHealthServicesReason" integer, + "OtherInsurance" integer, + "OtherInsuranceIdentify" character varying, + "ADAP" integer, + "NoADAPReason" integer, + "RyanWhiteMedDent" integer, + "NoRyanWhiteReason" integer, + "ConnectionWithSOAR" integer, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_income_benefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_income_benefits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_income_benefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_income_benefits_id_seq OWNED BY public.hmis_2024_income_benefits.id; + + +-- +-- Name: hmis_2024_inventories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_inventories ( + id bigint NOT NULL, + "InventoryID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "HouseholdType" integer, + "Availability" integer, + "UnitInventory" integer, + "BedInventory" integer, + "CHVetBedInventory" integer, + "YouthVetBedInventory" integer, + "VetBedInventory" integer, + "CHYouthBedInventory" integer, + "YouthBedInventory" integer, + "CHBedInventory" integer, + "OtherBedInventory" integer, + "ESBedType" integer, + "InventoryStartDate" date, + "InventoryEndDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_inventories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_inventories_id_seq OWNED BY public.hmis_2024_inventories.id; + + +-- +-- Name: hmis_2024_organizations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_organizations ( + id bigint NOT NULL, + "OrganizationID" character varying, + "OrganizationName" character varying, + "VictimServiceProvider" integer, + "OrganizationCommonName" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_organizations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_organizations_id_seq OWNED BY public.hmis_2024_organizations.id; + + +-- +-- Name: hmis_2024_project_cocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_project_cocs ( + id bigint NOT NULL, + "ProjectCoCID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "Geocode" character varying, + "Address1" character varying, + "Address2" character varying, + "City" character varying, + "State" character varying, + "Zip" character varying, + "GeographyType" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_project_cocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_project_cocs_id_seq OWNED BY public.hmis_2024_project_cocs.id; + + +-- +-- Name: hmis_2024_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_projects ( + id bigint NOT NULL, + "ProjectID" character varying, + "OrganizationID" character varying, + "ProjectName" character varying, + "ProjectCommonName" character varying, + "OperatingStartDate" date, + "OperatingEndDate" date, + "ContinuumProject" integer, + "ProjectType" integer, + "HousingType" integer, + "RRHSubType" integer, + "ResidentialAffiliation" integer, + "TargetPopulation" integer, + "HOPWAMedAssistedLivingFac" integer, + "PITCount" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_projects_id_seq OWNED BY public.hmis_2024_projects.id; + + +-- +-- Name: hmis_2024_services; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_services ( + id bigint NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" date, + "RecordType" integer, + "TypeProvided" integer, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" integer, + "FAAmount" character varying, + "FAStartDate" date, + "FAEndDate" date, + "ReferralOutcome" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_services_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_services_id_seq OWNED BY public.hmis_2024_services.id; + + +-- +-- Name: hmis_2024_users; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_users ( + id bigint NOT NULL, + "UserID" character varying, + "UserFirstName" character varying, + "UserLastName" character varying, + "UserPhone" character varying, + "UserExtension" character varying, + "UserEmail" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_users_id_seq OWNED BY public.hmis_2024_users.id; + + +-- +-- Name: hmis_2024_youth_education_statuses; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_2024_youth_education_statuses ( + id bigint NOT NULL, + "YouthEducationStatusID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" date, + "CurrentSchoolAttend" integer, + "MostRecentEdStatus" integer, + "CurrentEdStatus" integer, + "DataCollectionStage" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + should_import boolean DEFAULT true +); + + +-- +-- Name: hmis_2024_youth_education_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_2024_youth_education_statuses_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_2024_youth_education_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_2024_youth_education_statuses_id_seq OWNED BY public.hmis_2024_youth_education_statuses.id; + + +-- +-- Name: hmis_active_ranges; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_active_ranges ( + id bigint NOT NULL, + entity_type character varying, + entity_id bigint, + start_date date NOT NULL, + end_date date, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + user_id character varying NOT NULL +); + + +-- +-- Name: hmis_active_ranges_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_active_ranges_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_active_ranges_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_active_ranges_id_seq OWNED BY public.hmis_active_ranges.id; + + +-- +-- Name: hmis_aggregated_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_aggregated_enrollments ( + id bigint NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "LengthOfStay" integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "DateToStreetESSH" date, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "DisablingCondition" integer, + "DateOfEngagement" date, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "RunawayYouth" integer, + "SexualOrientation" integer, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "UnemploymentFam" integer, + "MentalHealthDisorderFam" integer, + "PhysicalDisabilityFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "InsufficientIncome" integer, + "IncarceratedParent" integer, + "VAMCStation" character varying, + "TargetScreenReqd" integer, + "TimeToHousingLoss" integer, + "AnnualPercentAMI" integer, + "LiteralHomelessHistory" integer, + "ClientLeaseholder" integer, + "HOHLeaseholder" integer, + "SubsidyAtRisk" integer, + "EvictionHistory" integer, + "CriminalRecord" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "SexOffender" integer, + "DisabledHoH" integer, + "CurrentPregnant" integer, + "SingleParent" integer, + "DependentUnder6" integer, + "HH5Plus" integer, + "CoCPrioritized" integer, + "HPScreeningScore" integer, + "ThresholdScore" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + "EnrollmentCoC" character varying, + "RentalSubsidyType" integer, + "TranslationNeeded" integer, + "PreferredLanguage" integer, + "PreferredLanguageDifferent" character varying +); + + +-- +-- Name: hmis_aggregated_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_aggregated_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_aggregated_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_aggregated_enrollments_id_seq OWNED BY public.hmis_aggregated_enrollments.id; + + +-- +-- Name: hmis_aggregated_exits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_aggregated_exits ( + id bigint NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" date, + "Destination" integer, + "OtherDestination" character varying, + "HousingAssessment" integer, + "SubsidyInformation" integer, + "ProjectCompletionStatus" integer, + "EarlyExitReason" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "CounselingReceived" integer, + "IndividualCounseling" integer, + "FamilyCounseling" integer, + "GroupCounseling" integer, + "SessionCountAtExit" integer, + "PostExitCounselingPlan" integer, + "SessionsInPlan" integer, + "DestinationSafeClient" integer, + "DestinationSafeWorker" integer, + "PosAdultConnections" integer, + "PosPeerConnections" integer, + "PosCommunityConnections" integer, + "AftercareDate" date, + "AftercareProvided" integer, + "EmailSocialMedia" integer, + "Telephone" integer, + "InPersonIndividual" integer, + "InPersonGroup" integer, + "CMExitReason" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer NOT NULL, + importer_log_id integer NOT NULL, + pre_processed_at timestamp without time zone NOT NULL, + source_hash character varying, + source_id integer NOT NULL, + source_type character varying NOT NULL, + dirty_at timestamp without time zone, + clean_at timestamp without time zone, + "DestinationSubsidyType" integer +); + + +-- +-- Name: hmis_aggregated_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_aggregated_exits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_aggregated_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_aggregated_exits_id_seq OWNED BY public.hmis_aggregated_exits.id; + + +-- +-- Name: hmis_assessment_details; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_assessment_details ( + id bigint NOT NULL, + assessment_id bigint, + definition_id bigint, + data_collection_stage integer NOT NULL, + role character varying NOT NULL, + status character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + "values" jsonb, + hud_values jsonb, + assessment_processor_id bigint +); + + +-- +-- Name: COLUMN hmis_assessment_details.data_collection_stage; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.hmis_assessment_details.data_collection_stage IS 'One of the HMIS 5.03.1 or 99 for local use'; + + +-- +-- Name: COLUMN hmis_assessment_details.role; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.hmis_assessment_details.role IS 'Usually one of INTAKE, UPDATE, ANNUAL, EXIT, POST_EXIT, CE, CUSTOM'; + + +-- +-- Name: COLUMN hmis_assessment_details.status; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.hmis_assessment_details.status IS 'Usually one of submitted, draft'; + + +-- +-- Name: hmis_assessment_details_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_assessment_details_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_assessment_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_assessment_details_id_seq OWNED BY public.hmis_assessment_details.id; + + +-- +-- Name: hmis_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_assessments ( + id integer NOT NULL, + assessment_id integer NOT NULL, + site_id integer NOT NULL, + site_name character varying, + name character varying NOT NULL, + "fetch" boolean DEFAULT false NOT NULL, + active boolean DEFAULT true NOT NULL, + last_fetched_at timestamp without time zone, + data_source_id integer NOT NULL, + confidential boolean DEFAULT false NOT NULL, + exclude_from_window boolean DEFAULT false NOT NULL, + details_in_window_with_release boolean DEFAULT false NOT NULL, + health boolean DEFAULT false NOT NULL, + vispdat boolean DEFAULT false, + pathways boolean DEFAULT false, + ssm boolean DEFAULT false, + health_case_note boolean DEFAULT false, + health_has_qualifying_activities boolean DEFAULT false, + hud_assessment boolean DEFAULT false, + triage_assessment boolean DEFAULT false, + rrh_assessment boolean DEFAULT false, + covid_19_impact_assessment boolean DEFAULT false, + with_location_data boolean DEFAULT false NOT NULL +); + + +-- +-- Name: hmis_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_assessments_id_seq OWNED BY public.hmis_assessments.id; + + +-- +-- Name: hmis_auto_exit_configs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_auto_exit_configs ( + id bigint NOT NULL, + length_of_absence_days integer NOT NULL, + project_type integer, + organization_id bigint, + project_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: hmis_auto_exit_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_auto_exit_configs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_auto_exit_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_auto_exit_configs_id_seq OWNED BY public.hmis_auto_exit_configs.id; + + +-- +-- Name: hmis_case_notes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_case_notes ( + id bigint NOT NULL, + client_id bigint NOT NULL, + user_id bigint NOT NULL, + organization_id bigint, + project_id bigint, + enrollment_id bigint, + source_type character varying, + source_id bigint, + information_date date NOT NULL, + note text, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: hmis_case_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_case_notes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_case_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_case_notes_id_seq OWNED BY public.hmis_case_notes.id; + + +-- +-- Name: hmis_client_alerts; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_client_alerts ( + id bigint NOT NULL, + note text NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + expiration_date date, + created_by_id bigint NOT NULL, + client_id bigint NOT NULL, + priority character varying +); + + +-- +-- Name: hmis_client_alerts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_client_alerts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_client_alerts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_client_alerts_id_seq OWNED BY public.hmis_client_alerts.id; + + +-- +-- Name: hmis_client_attributes_defined_text; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_client_attributes_defined_text ( + id integer NOT NULL, + client_id integer, + data_source_id integer, + consent_form_status character varying, + consent_form_updated_at timestamp without time zone, + source_id character varying, + source_class character varying +); + + +-- +-- Name: hmis_client_attributes_defined_text_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_client_attributes_defined_text_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_client_attributes_defined_text_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_client_attributes_defined_text_id_seq OWNED BY public.hmis_client_attributes_defined_text.id; + + +-- +-- Name: hmis_client_merge_audits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_client_merge_audits ( + id bigint NOT NULL, + pre_merge_state jsonb NOT NULL, + actor_id bigint NOT NULL, + merged_at timestamp without time zone NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: hmis_client_merge_audits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_client_merge_audits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_client_merge_audits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_client_merge_audits_id_seq OWNED BY public.hmis_client_merge_audits.id; + + +-- +-- Name: hmis_client_merge_histories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_client_merge_histories ( + id bigint NOT NULL, + retained_client_id bigint NOT NULL, + deleted_client_id bigint NOT NULL, + client_merge_audit_id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: COLUMN hmis_client_merge_histories.client_merge_audit_id; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.hmis_client_merge_histories.client_merge_audit_id IS 'Audit log for the merge that deleted the deleted_client'; + + +-- +-- Name: hmis_client_merge_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_client_merge_histories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_client_merge_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_client_merge_histories_id_seq OWNED BY public.hmis_client_merge_histories.id; + + +-- +-- Name: hmis_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_clients ( + id integer NOT NULL, + client_id integer, + response text, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + consent_form_status character varying, + case_manager_name character varying, + case_manager_attributes text, + assigned_staff_name character varying, + assigned_staff_attributes text, + counselor_name character varying, + counselor_attributes text, + outreach_counselor_name character varying, + subject_id integer, + processed_fields jsonb, + consent_confirmed_on date, + consent_expires_on date, + eto_last_updated timestamp without time zone, + sexual_orientation character varying +); + + +-- +-- Name: hmis_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_clients_id_seq OWNED BY public.hmis_clients.id; + + +-- +-- Name: hmis_csv_2020_affiliations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_affiliations ( + id bigint NOT NULL, + "AffiliationID" character varying, + "ProjectID" character varying, + "ResProjectID" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_affiliations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_affiliations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_affiliations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_affiliations_id_seq OWNED BY public.hmis_csv_2020_affiliations.id; + + +-- +-- Name: hmis_csv_2020_assessment_questions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_assessment_questions ( + id bigint NOT NULL, + "AssessmentQuestionID" character varying, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentQuestionGroup" character varying, + "AssessmentQuestionOrder" character varying, + "AssessmentQuestion" character varying, + "AssessmentAnswer" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_assessment_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_assessment_questions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_assessment_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_assessment_questions_id_seq OWNED BY public.hmis_csv_2020_assessment_questions.id; + + +-- +-- Name: hmis_csv_2020_assessment_results; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_assessment_results ( + id bigint NOT NULL, + "AssessmentResultID" character varying, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentResultType" character varying, + "AssessmentResult" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_assessment_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_assessment_results_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_assessment_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_assessment_results_id_seq OWNED BY public.hmis_csv_2020_assessment_results.id; + + +-- +-- Name: hmis_csv_2020_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_assessments ( + id bigint NOT NULL, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentDate" character varying, + "AssessmentLocation" character varying, + "AssessmentType" character varying, + "AssessmentLevel" character varying, + "PrioritizationStatus" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_assessments_id_seq OWNED BY public.hmis_csv_2020_assessments.id; + + +-- +-- Name: hmis_csv_2020_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_clients ( + id bigint NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" character varying, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" character varying, + "DOBDataQuality" character varying, + "AmIndAKNative" character varying, + "Asian" character varying, + "BlackAfAmerican" character varying, + "NativeHIOtherPacific" character varying, + "White" character varying, + "RaceNone" character varying, + "Ethnicity" character varying, + "Gender" character varying, + "VeteranStatus" character varying, + "YearEnteredService" character varying, + "YearSeparated" character varying, + "WorldWarII" character varying, + "KoreanWar" character varying, + "VietnamWar" character varying, + "DesertStorm" character varying, + "AfghanistanOEF" character varying, + "IraqOIF" character varying, + "IraqOND" character varying, + "OtherTheater" character varying, + "MilitaryBranch" character varying, + "DischargeStatus" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_clients_id_seq OWNED BY public.hmis_csv_2020_clients.id; + + +-- +-- Name: hmis_csv_2020_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_current_living_situations ( + id bigint NOT NULL, + "CurrentLivingSitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "CurrentLivingSituation" character varying, + "VerifiedBy" character varying, + "LeaveSituation14Days" character varying, + "SubsequentResidence" character varying, + "ResourcesToObtain" character varying, + "LeaseOwn60Day" character varying, + "MovedTwoOrMore" character varying, + "LocationDetails" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_current_living_situations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_current_living_situations_id_seq OWNED BY public.hmis_csv_2020_current_living_situations.id; + + +-- +-- Name: hmis_csv_2020_disabilities; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_disabilities ( + id bigint NOT NULL, + "DisabilitiesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "DisabilityType" character varying, + "DisabilityResponse" character varying, + "IndefiniteAndImpairs" character varying, + "TCellCountAvailable" character varying, + "TCellCount" character varying, + "TCellSource" character varying, + "ViralLoadAvailable" character varying, + "ViralLoad" character varying, + "ViralLoadSource" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_disabilities_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_disabilities_id_seq OWNED BY public.hmis_csv_2020_disabilities.id; + + +-- +-- Name: hmis_csv_2020_employment_educations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_employment_educations ( + id bigint NOT NULL, + "EmploymentEducationID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "LastGradeCompleted" character varying, + "SchoolStatus" character varying, + "Employed" character varying, + "EmploymentType" character varying, + "NotEmployedReason" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_employment_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_employment_educations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_employment_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_employment_educations_id_seq OWNED BY public.hmis_csv_2020_employment_educations.id; + + +-- +-- Name: hmis_csv_2020_enrollment_cocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_enrollment_cocs ( + id bigint NOT NULL, + "EnrollmentCoCID" character varying, + "EnrollmentID" character varying, + "HouseholdID" character varying, + "ProjectID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "CoCCode" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_enrollment_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_enrollment_cocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_enrollment_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_enrollment_cocs_id_seq OWNED BY public.hmis_csv_2020_enrollment_cocs.id; + + +-- +-- Name: hmis_csv_2020_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_enrollments ( + id bigint NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" character varying, + "HouseholdID" character varying, + "RelationshipToHoH" character varying, + "LivingSituation" character varying, + "LengthOfStay" character varying, + "LOSUnderThreshold" character varying, + "PreviousStreetESSH" character varying, + "DateToStreetESSH" character varying, + "TimesHomelessPastThreeYears" character varying, + "MonthsHomelessPastThreeYears" character varying, + "DisablingCondition" character varying, + "DateOfEngagement" character varying, + "MoveInDate" character varying, + "DateOfPATHStatus" character varying, + "ClientEnrolledInPATH" character varying, + "ReasonNotEnrolled" character varying, + "WorstHousingSituation" character varying, + "PercentAMI" character varying, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" character varying, + "DateOfBCPStatus" character varying, + "EligibleForRHY" character varying, + "ReasonNoServices" character varying, + "RunawayYouth" character varying, + "SexualOrientation" character varying, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" character varying, + "ChildWelfareYears" character varying, + "ChildWelfareMonths" character varying, + "FormerWardJuvenileJustice" character varying, + "JuvenileJusticeYears" character varying, + "JuvenileJusticeMonths" character varying, + "UnemploymentFam" character varying, + "MentalHealthIssuesFam" character varying, + "PhysicalDisabilityFam" character varying, + "AlcoholDrugAbuseFam" character varying, + "InsufficientIncome" character varying, + "IncarceratedParent" character varying, + "ReferralSource" character varying, + "CountOutreachReferralApproaches" character varying, + "UrgentReferral" character varying, + "TimeToHousingLoss" character varying, + "ZeroIncome" character varying, + "AnnualPercentAMI" character varying, + "FinancialChange" character varying, + "HouseholdChange" character varying, + "EvictionHistory" character varying, + "SubsidyAtRisk" character varying, + "LiteralHomelessHistory" character varying, + "DisabledHoH" character varying, + "CriminalRecord" character varying, + "SexOffender" character varying, + "DependentUnder6" character varying, + "SingleParent" character varying, + "HH5Plus" character varying, + "IraqAfghanistan" character varying, + "FemVet" character varying, + "HPScreeningScore" character varying, + "ThresholdScore" character varying, + "VAMCStation" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_enrollments_id_seq OWNED BY public.hmis_csv_2020_enrollments.id; + + +-- +-- Name: hmis_csv_2020_events; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_events ( + id bigint NOT NULL, + "EventID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "EventDate" character varying, + "Event" character varying, + "ProbSolDivRRResult" character varying, + "ReferralCaseManageAfter" character varying, + "LocationCrisisOrPHHousing" character varying, + "ReferralResult" character varying, + "ResultDate" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_events_id_seq OWNED BY public.hmis_csv_2020_events.id; + + +-- +-- Name: hmis_csv_2020_exits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_exits ( + id bigint NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" character varying, + "Destination" character varying, + "OtherDestination" character varying, + "HousingAssessment" character varying, + "SubsidyInformation" character varying, + "ProjectCompletionStatus" character varying, + "EarlyExitReason" character varying, + "ExchangeForSex" character varying, + "ExchangeForSexPastThreeMonths" character varying, + "CountOfExchangeForSex" character varying, + "AskedOrForcedToExchangeForSex" character varying, + "AskedOrForcedToExchangeForSexPastThreeMonths" character varying, + "WorkPlaceViolenceThreats" character varying, + "WorkplacePromiseDifference" character varying, + "CoercedToContinueWork" character varying, + "LaborExploitPastThreeMonths" character varying, + "CounselingReceived" character varying, + "IndividualCounseling" character varying, + "FamilyCounseling" character varying, + "GroupCounseling" character varying, + "SessionCountAtExit" character varying, + "PostExitCounselingPlan" character varying, + "SessionsInPlan" character varying, + "DestinationSafeClient" character varying, + "DestinationSafeWorker" character varying, + "PosAdultConnections" character varying, + "PosPeerConnections" character varying, + "PosCommunityConnections" character varying, + "AftercareDate" character varying, + "AftercareProvided" character varying, + "EmailSocialMedia" character varying, + "Telephone" character varying, + "InPersonIndividual" character varying, + "InPersonGroup" character varying, + "CMExitReason" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_exits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_exits_id_seq OWNED BY public.hmis_csv_2020_exits.id; + + +-- +-- Name: hmis_csv_2020_exports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_exports ( + id bigint NOT NULL, + "ExportID" character varying, + "SourceType" character varying, + "SourceID" character varying, + "SourceName" character varying, + "SourceContactFirst" character varying, + "SourceContactLast" character varying, + "SourceContactPhone" character varying, + "SourceContactExtension" character varying, + "SourceContactEmail" character varying, + "ExportDate" character varying, + "ExportStartDate" character varying, + "ExportEndDate" character varying, + "SoftwareName" character varying, + "SoftwareVersion" character varying, + "ExportPeriodType" character varying, + "ExportDirective" character varying, + "HashStatus" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_exports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_exports_id_seq OWNED BY public.hmis_csv_2020_exports.id; + + +-- +-- Name: hmis_csv_2020_funders; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_funders ( + id bigint NOT NULL, + "FunderID" character varying, + "ProjectID" character varying, + "Funder" character varying, + "OtherFunder" character varying, + "GrantID" character varying, + "StartDate" character varying, + "EndDate" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_funders_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_funders_id_seq OWNED BY public.hmis_csv_2020_funders.id; + + +-- +-- Name: hmis_csv_2020_health_and_dvs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_health_and_dvs ( + id bigint NOT NULL, + "HealthAndDVID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "DomesticViolenceVictim" character varying, + "WhenOccurred" character varying, + "CurrentlyFleeing" character varying, + "GeneralHealthStatus" character varying, + "DentalHealthStatus" character varying, + "MentalHealthStatus" character varying, + "PregnancyStatus" character varying, + "DueDate" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_health_and_dvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_health_and_dvs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_health_and_dvs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_health_and_dvs_id_seq OWNED BY public.hmis_csv_2020_health_and_dvs.id; + + +-- +-- Name: hmis_csv_2020_income_benefits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_income_benefits ( + id bigint NOT NULL, + "IncomeBenefitsID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "IncomeFromAnySource" character varying, + "TotalMonthlyIncome" character varying, + "Earned" character varying, + "EarnedAmount" character varying, + "Unemployment" character varying, + "UnemploymentAmount" character varying, + "SSI" character varying, + "SSIAmount" character varying, + "SSDI" character varying, + "SSDIAmount" character varying, + "VADisabilityService" character varying, + "VADisabilityServiceAmount" character varying, + "VADisabilityNonService" character varying, + "VADisabilityNonServiceAmount" character varying, + "PrivateDisability" character varying, + "PrivateDisabilityAmount" character varying, + "WorkersComp" character varying, + "WorkersCompAmount" character varying, + "TANF" character varying, + "TANFAmount" character varying, + "GA" character varying, + "GAAmount" character varying, + "SocSecRetirement" character varying, + "SocSecRetirementAmount" character varying, + "Pension" character varying, + "PensionAmount" character varying, + "ChildSupport" character varying, + "ChildSupportAmount" character varying, + "Alimony" character varying, + "AlimonyAmount" character varying, + "OtherIncomeSource" character varying, + "OtherIncomeAmount" character varying, + "OtherIncomeSourceIdentify" character varying, + "BenefitsFromAnySource" character varying, + "SNAP" character varying, + "WIC" character varying, + "TANFChildCare" character varying, + "TANFTransportation" character varying, + "OtherTANF" character varying, + "OtherBenefitsSource" character varying, + "OtherBenefitsSourceIdentify" character varying, + "InsuranceFromAnySource" character varying, + "Medicaid" character varying, + "NoMedicaidReason" character varying, + "Medicare" character varying, + "NoMedicareReason" character varying, + "SCHIP" character varying, + "NoSCHIPReason" character varying, + "VAMedicalServices" character varying, + "NoVAMedReason" character varying, + "EmployerProvided" character varying, + "NoEmployerProvidedReason" character varying, + "COBRA" character varying, + "NoCOBRAReason" character varying, + "PrivatePay" character varying, + "NoPrivatePayReason" character varying, + "StateHealthIns" character varying, + "NoStateHealthInsReason" character varying, + "IndianHealthServices" character varying, + "NoIndianHealthServicesReason" character varying, + "OtherInsurance" character varying, + "OtherInsuranceIdentify" character varying, + "HIVAIDSAssistance" character varying, + "NoHIVAIDSAssistanceReason" character varying, + "ADAP" character varying, + "NoADAPReason" character varying, + "ConnectionWithSOAR" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_income_benefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_income_benefits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_income_benefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_income_benefits_id_seq OWNED BY public.hmis_csv_2020_income_benefits.id; + + +-- +-- Name: hmis_csv_2020_inventories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_inventories ( + id bigint NOT NULL, + "InventoryID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "HouseholdType" character varying, + "Availability" character varying, + "UnitInventory" character varying, + "BedInventory" character varying, + "CHVetBedInventory" character varying, + "YouthVetBedInventory" character varying, + "VetBedInventory" character varying, + "CHYouthBedInventory" character varying, + "YouthBedInventory" character varying, + "CHBedInventory" character varying, + "OtherBedInventory" character varying, + "ESBedType" character varying, + "InventoryStartDate" character varying, + "InventoryEndDate" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_inventories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_inventories_id_seq OWNED BY public.hmis_csv_2020_inventories.id; + + +-- +-- Name: hmis_csv_2020_organizations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_organizations ( + id bigint NOT NULL, + "OrganizationID" character varying, + "OrganizationName" character varying, + "VictimServicesProvider" character varying, + "OrganizationCommonName" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_organizations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_organizations_id_seq OWNED BY public.hmis_csv_2020_organizations.id; + + +-- +-- Name: hmis_csv_2020_project_cocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_project_cocs ( + id bigint NOT NULL, + "ProjectCoCID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "Geocode" character varying, + "Address1" character varying, + "Address2" character varying, + "City" character varying, + "State" character varying, + "Zip" character varying, + "GeographyType" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_project_cocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_project_cocs_id_seq OWNED BY public.hmis_csv_2020_project_cocs.id; + + +-- +-- Name: hmis_csv_2020_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_projects ( + id bigint NOT NULL, + "ProjectID" character varying, + "OrganizationID" character varying, + "ProjectName" character varying, + "ProjectCommonName" character varying, + "OperatingStartDate" character varying, + "OperatingEndDate" character varying, + "ContinuumProject" character varying, + "ProjectType" character varying, + "HousingType" character varying, + "ResidentialAffiliation" character varying, + "TrackingMethod" character varying, + "HMISParticipatingProject" character varying, + "TargetPopulation" character varying, + "PITCount" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_projects_id_seq OWNED BY public.hmis_csv_2020_projects.id; + + +-- +-- Name: hmis_csv_2020_services; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_services ( + id bigint NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" character varying, + "RecordType" character varying, + "TypeProvided" character varying, + "OtherTypeProvided" character varying, + "SubTypeProvided" character varying, + "FAAmount" character varying, + "ReferralOutcome" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_services_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_services_id_seq OWNED BY public.hmis_csv_2020_services.id; + + +-- +-- Name: hmis_csv_2020_users; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2020_users ( + id bigint NOT NULL, + "UserID" character varying, + "UserFirstName" character varying, + "UserLastName" character varying, + "UserPhone" character varying, + "UserExtension" character varying, + "UserEmail" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2020_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2020_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2020_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2020_users_id_seq OWNED BY public.hmis_csv_2020_users.id; + + +-- +-- Name: hmis_csv_2022_affiliations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_affiliations ( + id bigint NOT NULL, + "AffiliationID" character varying, + "ProjectID" character varying, + "ResProjectID" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_affiliations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_affiliations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_affiliations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_affiliations_id_seq OWNED BY public.hmis_csv_2022_affiliations.id; + + +-- +-- Name: hmis_csv_2022_assessment_questions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_assessment_questions ( + id bigint NOT NULL, + "AssessmentQuestionID" character varying, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentQuestionGroup" character varying, + "AssessmentQuestionOrder" character varying, + "AssessmentQuestion" character varying, + "AssessmentAnswer" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_assessment_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_assessment_questions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_assessment_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_assessment_questions_id_seq OWNED BY public.hmis_csv_2022_assessment_questions.id; + + +-- +-- Name: hmis_csv_2022_assessment_results; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_assessment_results ( + id bigint NOT NULL, + "AssessmentResultID" character varying, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentResultType" character varying, + "AssessmentResult" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_assessment_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_assessment_results_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_assessment_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_assessment_results_id_seq OWNED BY public.hmis_csv_2022_assessment_results.id; + + +-- +-- Name: hmis_csv_2022_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_assessments ( + id bigint NOT NULL, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentDate" character varying, + "AssessmentLocation" character varying, + "AssessmentType" character varying, + "AssessmentLevel" character varying, + "PrioritizationStatus" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_assessments_id_seq OWNED BY public.hmis_csv_2022_assessments.id; + + +-- +-- Name: hmis_csv_2022_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_clients ( + id bigint NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" character varying, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" character varying, + "DOBDataQuality" character varying, + "AmIndAKNative" character varying, + "Asian" character varying, + "BlackAfAmerican" character varying, + "NativeHIPacific" character varying, + "White" character varying, + "RaceNone" character varying, + "Ethnicity" character varying, + "Female" character varying, + "Male" character varying, + "NoSingleGender" character varying, + "Transgender" character varying, + "Questioning" character varying, + "GenderNone" character varying, + "VeteranStatus" character varying, + "YearEnteredService" character varying, + "YearSeparated" character varying, + "WorldWarII" character varying, + "KoreanWar" character varying, + "VietnamWar" character varying, + "DesertStorm" character varying, + "AfghanistanOEF" character varying, + "IraqOIF" character varying, + "IraqOND" character varying, + "OtherTheater" character varying, + "MilitaryBranch" character varying, + "DischargeStatus" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_clients_id_seq OWNED BY public.hmis_csv_2022_clients.id; + + +-- +-- Name: hmis_csv_2022_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_current_living_situations ( + id bigint NOT NULL, + "CurrentLivingSitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "CurrentLivingSituation" character varying, + "VerifiedBy" character varying, + "LeaveSituation14Days" character varying, + "SubsequentResidence" character varying, + "ResourcesToObtain" character varying, + "LeaseOwn60Day" character varying, + "MovedTwoOrMore" character varying, + "LocationDetails" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_current_living_situations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_current_living_situations_id_seq OWNED BY public.hmis_csv_2022_current_living_situations.id; + + +-- +-- Name: hmis_csv_2022_disabilities; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_disabilities ( + id bigint NOT NULL, + "DisabilitiesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "DisabilityType" character varying, + "DisabilityResponse" character varying, + "IndefiniteAndImpairs" character varying, + "TCellCountAvailable" character varying, + "TCellCount" character varying, + "TCellSource" character varying, + "ViralLoadAvailable" character varying, + "ViralLoad" character varying, + "ViralLoadSource" character varying, + "AntiRetroviral" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_disabilities_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_disabilities_id_seq OWNED BY public.hmis_csv_2022_disabilities.id; + + +-- +-- Name: hmis_csv_2022_employment_educations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_employment_educations ( + id bigint NOT NULL, + "EmploymentEducationID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "LastGradeCompleted" character varying, + "SchoolStatus" character varying, + "Employed" character varying, + "EmploymentType" character varying, + "NotEmployedReason" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_employment_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_employment_educations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_employment_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_employment_educations_id_seq OWNED BY public.hmis_csv_2022_employment_educations.id; + + +-- +-- Name: hmis_csv_2022_enrollment_cocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_enrollment_cocs ( + id bigint NOT NULL, + "EnrollmentCoCID" character varying, + "EnrollmentID" character varying, + "HouseholdID" character varying, + "ProjectID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "CoCCode" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_enrollment_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_enrollment_cocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_enrollment_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_enrollment_cocs_id_seq OWNED BY public.hmis_csv_2022_enrollment_cocs.id; + + +-- +-- Name: hmis_csv_2022_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_enrollments ( + id bigint NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" character varying, + "HouseholdID" character varying, + "RelationshipToHoH" character varying, + "LivingSituation" character varying, + "LengthOfStay" character varying, + "LOSUnderThreshold" character varying, + "PreviousStreetESSH" character varying, + "DateToStreetESSH" character varying, + "TimesHomelessPastThreeYears" character varying, + "MonthsHomelessPastThreeYears" character varying, + "DisablingCondition" character varying, + "DateOfEngagement" character varying, + "MoveInDate" character varying, + "DateOfPATHStatus" character varying, + "ClientEnrolledInPATH" character varying, + "ReasonNotEnrolled" character varying, + "WorstHousingSituation" character varying, + "PercentAMI" character varying, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying, + "LastPermanentState" character varying, + "LastPermanentZIP" character varying, + "AddressDataQuality" character varying, + "ReferralSource" character varying, + "CountOutreachReferralApproaches" character varying, + "DateOfBCPStatus" character varying, + "EligibleForRHY" character varying, + "ReasonNoServices" character varying, + "RunawayYouth" character varying, + "SexualOrientation" character varying, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" character varying, + "ChildWelfareYears" character varying, + "ChildWelfareMonths" character varying, + "FormerWardJuvenileJustice" character varying, + "JuvenileJusticeYears" character varying, + "JuvenileJusticeMonths" character varying, + "UnemploymentFam" character varying, + "MentalHealthDisorderFam" character varying, + "PhysicalDisabilityFam" character varying, + "AlcoholDrugUseDisorderFam" character varying, + "InsufficientIncome" character varying, + "IncarceratedParent" character varying, + "VAMCStation" character varying, + "TargetScreenReqd" character varying, + "TimeToHousingLoss" character varying, + "AnnualPercentAMI" character varying, + "LiteralHomelessHistory" character varying, + "ClientLeaseholder" character varying, + "HOHLeaseholder" character varying, + "SubsidyAtRisk" character varying, + "EvictionHistory" character varying, + "CriminalRecord" character varying, + "IncarceratedAdult" character varying, + "PrisonDischarge" character varying, + "SexOffender" character varying, + "DisabledHoH" character varying, + "CurrentPregnant" character varying, + "SingleParent" character varying, + "DependentUnder6" character varying, + "HH5Plus" character varying, + "CoCPrioritized" character varying, + "HPScreeningScore" character varying, + "ThresholdScore" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_enrollments_id_seq OWNED BY public.hmis_csv_2022_enrollments.id; + + +-- +-- Name: hmis_csv_2022_events; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_events ( + id bigint NOT NULL, + "EventID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "EventDate" character varying, + "Event" character varying, + "ProbSolDivRRResult" character varying, + "ReferralCaseManageAfter" character varying, + "LocationCrisisOrPHHousing" character varying, + "ReferralResult" character varying, + "ResultDate" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_events_id_seq OWNED BY public.hmis_csv_2022_events.id; + + +-- +-- Name: hmis_csv_2022_exits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_exits ( + id bigint NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" character varying, + "Destination" character varying, + "OtherDestination" character varying, + "HousingAssessment" character varying, + "SubsidyInformation" character varying, + "ProjectCompletionStatus" character varying, + "EarlyExitReason" character varying, + "ExchangeForSex" character varying, + "ExchangeForSexPastThreeMonths" character varying, + "CountOfExchangeForSex" character varying, + "AskedOrForcedToExchangeForSex" character varying, + "AskedOrForcedToExchangeForSexPastThreeMonths" character varying, + "WorkPlaceViolenceThreats" character varying, + "WorkplacePromiseDifference" character varying, + "CoercedToContinueWork" character varying, + "LaborExploitPastThreeMonths" character varying, + "CounselingReceived" character varying, + "IndividualCounseling" character varying, + "FamilyCounseling" character varying, + "GroupCounseling" character varying, + "SessionCountAtExit" character varying, + "PostExitCounselingPlan" character varying, + "SessionsInPlan" character varying, + "DestinationSafeClient" character varying, + "DestinationSafeWorker" character varying, + "PosAdultConnections" character varying, + "PosPeerConnections" character varying, + "PosCommunityConnections" character varying, + "AftercareDate" character varying, + "AftercareProvided" character varying, + "EmailSocialMedia" character varying, + "Telephone" character varying, + "InPersonIndividual" character varying, + "InPersonGroup" character varying, + "CMExitReason" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_exits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_exits_id_seq OWNED BY public.hmis_csv_2022_exits.id; + + +-- +-- Name: hmis_csv_2022_exports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_exports ( + id bigint NOT NULL, + "ExportID" character varying, + "SourceType" character varying, + "SourceID" character varying, + "SourceName" character varying, + "SourceContactFirst" character varying, + "SourceContactLast" character varying, + "SourceContactPhone" character varying, + "SourceContactExtension" character varying, + "SourceContactEmail" character varying, + "ExportDate" character varying, + "ExportStartDate" character varying, + "ExportEndDate" character varying, + "SoftwareName" character varying, + "SoftwareVersion" character varying, + "CSVVersion" character varying, + "ExportPeriodType" character varying, + "ExportDirective" character varying, + "HashStatus" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_exports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_exports_id_seq OWNED BY public.hmis_csv_2022_exports.id; + + +-- +-- Name: hmis_csv_2022_funders; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_funders ( + id bigint NOT NULL, + "FunderID" character varying, + "ProjectID" character varying, + "Funder" character varying, + "OtherFunder" character varying, + "GrantID" character varying, + "StartDate" character varying, + "EndDate" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_funders_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_funders_id_seq OWNED BY public.hmis_csv_2022_funders.id; + + +-- +-- Name: hmis_csv_2022_health_and_dvs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_health_and_dvs ( + id bigint NOT NULL, + "HealthAndDVID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "DomesticViolenceVictim" character varying, + "WhenOccurred" character varying, + "CurrentlyFleeing" character varying, + "GeneralHealthStatus" character varying, + "DentalHealthStatus" character varying, + "MentalHealthStatus" character varying, + "PregnancyStatus" character varying, + "DueDate" character varying, + "LifeValue" character varying, + "SupportFromOthers" character varying, + "BounceBack" character varying, + "FeelingFrequency" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_health_and_dvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_health_and_dvs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_health_and_dvs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_health_and_dvs_id_seq OWNED BY public.hmis_csv_2022_health_and_dvs.id; + + +-- +-- Name: hmis_csv_2022_income_benefits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_income_benefits ( + id bigint NOT NULL, + "IncomeBenefitsID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "IncomeFromAnySource" character varying, + "TotalMonthlyIncome" character varying, + "Earned" character varying, + "EarnedAmount" character varying, + "Unemployment" character varying, + "UnemploymentAmount" character varying, + "SSI" character varying, + "SSIAmount" character varying, + "SSDI" character varying, + "SSDIAmount" character varying, + "VADisabilityService" character varying, + "VADisabilityServiceAmount" character varying, + "VADisabilityNonService" character varying, + "VADisabilityNonServiceAmount" character varying, + "PrivateDisability" character varying, + "PrivateDisabilityAmount" character varying, + "WorkersComp" character varying, + "WorkersCompAmount" character varying, + "TANF" character varying, + "TANFAmount" character varying, + "GA" character varying, + "GAAmount" character varying, + "SocSecRetirement" character varying, + "SocSecRetirementAmount" character varying, + "Pension" character varying, + "PensionAmount" character varying, + "ChildSupport" character varying, + "ChildSupportAmount" character varying, + "Alimony" character varying, + "AlimonyAmount" character varying, + "OtherIncomeSource" character varying, + "OtherIncomeAmount" character varying, + "OtherIncomeSourceIdentify" character varying, + "BenefitsFromAnySource" character varying, + "SNAP" character varying, + "WIC" character varying, + "TANFChildCare" character varying, + "TANFTransportation" character varying, + "OtherTANF" character varying, + "OtherBenefitsSource" character varying, + "OtherBenefitsSourceIdentify" character varying, + "InsuranceFromAnySource" character varying, + "Medicaid" character varying, + "NoMedicaidReason" character varying, + "Medicare" character varying, + "NoMedicareReason" character varying, + "SCHIP" character varying, + "NoSCHIPReason" character varying, + "VAMedicalServices" character varying, + "NoVAMedReason" character varying, + "EmployerProvided" character varying, + "NoEmployerProvidedReason" character varying, + "COBRA" character varying, + "NoCOBRAReason" character varying, + "PrivatePay" character varying, + "NoPrivatePayReason" character varying, + "StateHealthIns" character varying, + "NoStateHealthInsReason" character varying, + "IndianHealthServices" character varying, + "NoIndianHealthServicesReason" character varying, + "OtherInsurance" character varying, + "OtherInsuranceIdentify" character varying, + "HIVAIDSAssistance" character varying, + "NoHIVAIDSAssistanceReason" character varying, + "ADAP" character varying, + "NoADAPReason" character varying, + "RyanWhiteMedDent" character varying, + "NoRyanWhiteReason" character varying, + "ConnectionWithSOAR" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_income_benefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_income_benefits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_income_benefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_income_benefits_id_seq OWNED BY public.hmis_csv_2022_income_benefits.id; + + +-- +-- Name: hmis_csv_2022_inventories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_inventories ( + id bigint NOT NULL, + "InventoryID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "HouseholdType" character varying, + "Availability" character varying, + "UnitInventory" character varying, + "BedInventory" character varying, + "CHVetBedInventory" character varying, + "YouthVetBedInventory" character varying, + "VetBedInventory" character varying, + "CHYouthBedInventory" character varying, + "YouthBedInventory" character varying, + "CHBedInventory" character varying, + "OtherBedInventory" character varying, + "ESBedType" character varying, + "InventoryStartDate" character varying, + "InventoryEndDate" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_inventories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_inventories_id_seq OWNED BY public.hmis_csv_2022_inventories.id; + + +-- +-- Name: hmis_csv_2022_organizations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_organizations ( + id bigint NOT NULL, + "OrganizationID" character varying, + "OrganizationName" character varying, + "VictimServiceProvider" character varying, + "OrganizationCommonName" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_organizations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_organizations_id_seq OWNED BY public.hmis_csv_2022_organizations.id; + + +-- +-- Name: hmis_csv_2022_project_cocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_project_cocs ( + id bigint NOT NULL, + "ProjectCoCID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "Geocode" character varying, + "Address1" character varying, + "Address2" character varying, + "City" character varying, + "State" character varying, + "Zip" character varying, + "GeographyType" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_project_cocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_project_cocs_id_seq OWNED BY public.hmis_csv_2022_project_cocs.id; + + +-- +-- Name: hmis_csv_2022_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_projects ( + id bigint NOT NULL, + "ProjectID" character varying, + "OrganizationID" character varying, + "ProjectName" character varying, + "ProjectCommonName" character varying, + "OperatingStartDate" character varying, + "OperatingEndDate" character varying, + "ContinuumProject" character varying, + "ProjectType" character varying, + "HousingType" character varying, + "ResidentialAffiliation" character varying, + "TrackingMethod" character varying, + "HMISParticipatingProject" character varying, + "TargetPopulation" character varying, + "HOPWAMedAssistedLivingFac" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL, + "PITCount" character varying +); + + +-- +-- Name: hmis_csv_2022_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_projects_id_seq OWNED BY public.hmis_csv_2022_projects.id; + + +-- +-- Name: hmis_csv_2022_services; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_services ( + id bigint NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" character varying, + "RecordType" character varying, + "TypeProvided" character varying, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" character varying, + "FAAmount" character varying, + "ReferralOutcome" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_services_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_services_id_seq OWNED BY public.hmis_csv_2022_services.id; + + +-- +-- Name: hmis_csv_2022_users; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_users ( + id bigint NOT NULL, + "UserID" character varying, + "UserFirstName" character varying, + "UserLastName" character varying, + "UserPhone" character varying, + "UserExtension" character varying, + "UserEmail" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_users_id_seq OWNED BY public.hmis_csv_2022_users.id; + + +-- +-- Name: hmis_csv_2022_youth_education_statuses; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2022_youth_education_statuses ( + id bigint NOT NULL, + "YouthEducationStatusID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "CurrentSchoolAttend" character varying, + "MostRecentEdStatus" character varying, + "CurrentEdStatus" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2022_youth_education_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2022_youth_education_statuses_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2022_youth_education_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2022_youth_education_statuses_id_seq OWNED BY public.hmis_csv_2022_youth_education_statuses.id; + + +-- +-- Name: hmis_csv_2024_affiliations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_affiliations ( + id bigint NOT NULL, + "AffiliationID" character varying, + "ProjectID" character varying, + "ResProjectID" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_affiliations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_affiliations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_affiliations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_affiliations_id_seq OWNED BY public.hmis_csv_2024_affiliations.id; + + +-- +-- Name: hmis_csv_2024_assessment_questions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_assessment_questions ( + id bigint NOT NULL, + "AssessmentQuestionID" character varying, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentQuestionGroup" character varying, + "AssessmentQuestionOrder" character varying, + "AssessmentQuestion" character varying, + "AssessmentAnswer" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_assessment_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_assessment_questions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_assessment_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_assessment_questions_id_seq OWNED BY public.hmis_csv_2024_assessment_questions.id; + + +-- +-- Name: hmis_csv_2024_assessment_results; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_assessment_results ( + id bigint NOT NULL, + "AssessmentResultID" character varying, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentResultType" character varying, + "AssessmentResult" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_assessment_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_assessment_results_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_assessment_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_assessment_results_id_seq OWNED BY public.hmis_csv_2024_assessment_results.id; + + +-- +-- Name: hmis_csv_2024_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_assessments ( + id bigint NOT NULL, + "AssessmentID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "AssessmentDate" character varying, + "AssessmentLocation" character varying, + "AssessmentType" character varying, + "AssessmentLevel" character varying, + "PrioritizationStatus" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_assessments_id_seq OWNED BY public.hmis_csv_2024_assessments.id; + + +-- +-- Name: hmis_csv_2024_ce_participations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_ce_participations ( + id bigint NOT NULL, + "CEParticipationID" character varying, + "ProjectID" character varying, + "AccessPoint" character varying, + "PreventionAssessment" character varying, + "CrisisAssessment" character varying, + "HousingAssessment" character varying, + "DirectServices" character varying, + "ReceivesReferrals" character varying, + "CEParticipationStatusStartDate" character varying, + "CEParticipationStatusEndDate" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_ce_participations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_ce_participations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_ce_participations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_ce_participations_id_seq OWNED BY public.hmis_csv_2024_ce_participations.id; + + +-- +-- Name: hmis_csv_2024_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_clients ( + id bigint NOT NULL, + "PersonalID" character varying, + "FirstName" character varying, + "MiddleName" character varying, + "LastName" character varying, + "NameSuffix" character varying, + "NameDataQuality" character varying, + "SSN" character varying, + "SSNDataQuality" character varying, + "DOB" character varying, + "DOBDataQuality" character varying, + "AmIndAKNative" character varying, + "Asian" character varying, + "BlackAfAmerican" character varying, + "HispanicLatinaeo" character varying, + "MidEastNAfrican" character varying, + "NativeHIPacific" character varying, + "White" character varying, + "RaceNone" character varying, + "AdditionalRaceEthnicity" character varying, + "Woman" character varying, + "Man" character varying, + "NonBinary" character varying, + "CulturallySpecific" character varying, + "Transgender" character varying, + "Questioning" character varying, + "DifferentIdentity" character varying, + "GenderNone" character varying, + "DifferentIdentityText" character varying, + "VeteranStatus" character varying, + "YearEnteredService" character varying, + "YearSeparated" character varying, + "WorldWarII" character varying, + "KoreanWar" character varying, + "VietnamWar" character varying, + "DesertStorm" character varying, + "AfghanistanOEF" character varying, + "IraqOIF" character varying, + "IraqOND" character varying, + "OtherTheater" character varying, + "MilitaryBranch" character varying, + "DischargeStatus" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_clients_id_seq OWNED BY public.hmis_csv_2024_clients.id; + + +-- +-- Name: hmis_csv_2024_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_current_living_situations ( + id bigint NOT NULL, + "CurrentLivingSitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "CurrentLivingSituation" character varying, + "CLSSubsidyType" character varying, + "VerifiedBy" character varying, + "LeaveSituation14Days" character varying, + "SubsequentResidence" character varying, + "ResourcesToObtain" character varying, + "LeaseOwn60Day" character varying, + "MovedTwoOrMore" character varying, + "LocationDetails" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_current_living_situations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_current_living_situations_id_seq OWNED BY public.hmis_csv_2024_current_living_situations.id; + + +-- +-- Name: hmis_csv_2024_disabilities; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_disabilities ( + id bigint NOT NULL, + "DisabilitiesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "DisabilityType" character varying, + "DisabilityResponse" character varying, + "IndefiniteAndImpairs" character varying, + "TCellCountAvailable" character varying, + "TCellCount" character varying, + "TCellSource" character varying, + "ViralLoadAvailable" character varying, + "ViralLoad" character varying, + "ViralLoadSource" character varying, + "AntiRetroviral" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_disabilities_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_disabilities_id_seq OWNED BY public.hmis_csv_2024_disabilities.id; + + +-- +-- Name: hmis_csv_2024_employment_educations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_employment_educations ( + id bigint NOT NULL, + "EmploymentEducationID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "LastGradeCompleted" character varying, + "SchoolStatus" character varying, + "Employed" character varying, + "EmploymentType" character varying, + "NotEmployedReason" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_employment_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_employment_educations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_employment_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_employment_educations_id_seq OWNED BY public.hmis_csv_2024_employment_educations.id; + + +-- +-- Name: hmis_csv_2024_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_enrollments ( + id bigint NOT NULL, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ProjectID" character varying, + "EntryDate" character varying, + "HouseholdID" character varying, + "RelationshipToHoH" character varying, + "EnrollmentCoC" character varying, + "LivingSituation" character varying, + "RentalSubsidyType" character varying, + "LengthOfStay" character varying, + "LOSUnderThreshold" character varying, + "PreviousStreetESSH" character varying, + "DateToStreetESSH" character varying, + "TimesHomelessPastThreeYears" character varying, + "MonthsHomelessPastThreeYears" character varying, + "DisablingCondition" character varying, + "DateOfEngagement" character varying, + "MoveInDate" character varying, + "DateOfPATHStatus" character varying, + "ClientEnrolledInPATH" character varying, + "ReasonNotEnrolled" character varying, + "PercentAMI" character varying, + "ReferralSource" character varying, + "CountOutreachReferralApproaches" character varying, + "DateOfBCPStatus" character varying, + "EligibleForRHY" character varying, + "ReasonNoServices" character varying, + "RunawayYouth" character varying, + "SexualOrientation" character varying, + "SexualOrientationOther" character varying, + "FormerWardChildWelfare" character varying, + "ChildWelfareYears" character varying, + "ChildWelfareMonths" character varying, + "FormerWardJuvenileJustice" character varying, + "JuvenileJusticeYears" character varying, + "JuvenileJusticeMonths" character varying, + "UnemploymentFam" character varying, + "MentalHealthDisorderFam" character varying, + "PhysicalDisabilityFam" character varying, + "AlcoholDrugUseDisorderFam" character varying, + "InsufficientIncome" character varying, + "IncarceratedParent" character varying, + "VAMCStation" character varying, + "TargetScreenReqd" character varying, + "TimeToHousingLoss" character varying, + "AnnualPercentAMI" character varying, + "LiteralHomelessHistory" character varying, + "ClientLeaseholder" character varying, + "HOHLeaseholder" character varying, + "SubsidyAtRisk" character varying, + "EvictionHistory" character varying, + "CriminalRecord" character varying, + "IncarceratedAdult" character varying, + "PrisonDischarge" character varying, + "SexOffender" character varying, + "DisabledHoH" character varying, + "CurrentPregnant" character varying, + "SingleParent" character varying, + "DependentUnder6" character varying, + "HH5Plus" character varying, + "CoCPrioritized" character varying, + "HPScreeningScore" character varying, + "ThresholdScore" character varying, + "TranslationNeeded" character varying, + "PreferredLanguage" character varying, + "PreferredLanguageDifferent" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_enrollments_id_seq OWNED BY public.hmis_csv_2024_enrollments.id; + + +-- +-- Name: hmis_csv_2024_events; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_events ( + id bigint NOT NULL, + "EventID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "EventDate" character varying, + "Event" character varying, + "ProbSolDivRRResult" character varying, + "ReferralCaseManageAfter" character varying, + "LocationCrisisOrPHHousing" character varying, + "ReferralResult" character varying, + "ResultDate" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_events_id_seq OWNED BY public.hmis_csv_2024_events.id; + + +-- +-- Name: hmis_csv_2024_exits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_exits ( + id bigint NOT NULL, + "ExitID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "ExitDate" character varying, + "Destination" character varying, + "DestinationSubsidyType" character varying, + "OtherDestination" character varying, + "HousingAssessment" character varying, + "SubsidyInformation" character varying, + "ProjectCompletionStatus" character varying, + "EarlyExitReason" character varying, + "ExchangeForSex" character varying, + "ExchangeForSexPastThreeMonths" character varying, + "CountOfExchangeForSex" character varying, + "AskedOrForcedToExchangeForSex" character varying, + "AskedOrForcedToExchangeForSexPastThreeMonths" character varying, + "WorkPlaceViolenceThreats" character varying, + "WorkplacePromiseDifference" character varying, + "CoercedToContinueWork" character varying, + "LaborExploitPastThreeMonths" character varying, + "CounselingReceived" character varying, + "IndividualCounseling" character varying, + "FamilyCounseling" character varying, + "GroupCounseling" character varying, + "SessionCountAtExit" character varying, + "PostExitCounselingPlan" character varying, + "SessionsInPlan" character varying, + "DestinationSafeClient" character varying, + "DestinationSafeWorker" character varying, + "PosAdultConnections" character varying, + "PosPeerConnections" character varying, + "PosCommunityConnections" character varying, + "AftercareDate" character varying, + "AftercareProvided" character varying, + "EmailSocialMedia" character varying, + "Telephone" character varying, + "InPersonIndividual" character varying, + "InPersonGroup" character varying, + "CMExitReason" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_exits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_exits_id_seq OWNED BY public.hmis_csv_2024_exits.id; + + +-- +-- Name: hmis_csv_2024_exports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_exports ( + id bigint NOT NULL, + "ExportID" character varying, + "SourceType" character varying, + "SourceID" character varying, + "SourceName" character varying, + "SourceContactFirst" character varying, + "SourceContactLast" character varying, + "SourceContactPhone" character varying, + "SourceContactExtension" character varying, + "SourceContactEmail" character varying, + "ExportDate" character varying, + "ExportStartDate" character varying, + "ExportEndDate" character varying, + "SoftwareName" character varying, + "SoftwareVersion" character varying, + "CSVVersion" character varying, + "ExportPeriodType" character varying, + "ExportDirective" character varying, + "HashStatus" character varying, + "ImplementationID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_exports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_exports_id_seq OWNED BY public.hmis_csv_2024_exports.id; + + +-- +-- Name: hmis_csv_2024_funders; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_funders ( + id bigint NOT NULL, + "FunderID" character varying, + "ProjectID" character varying, + "Funder" character varying, + "OtherFunder" character varying, + "GrantID" character varying, + "StartDate" character varying, + "EndDate" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_funders_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_funders_id_seq OWNED BY public.hmis_csv_2024_funders.id; + + +-- +-- Name: hmis_csv_2024_health_and_dvs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_health_and_dvs ( + id bigint NOT NULL, + "HealthAndDVID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "DomesticViolenceSurvivor" character varying, + "WhenOccurred" character varying, + "CurrentlyFleeing" character varying, + "GeneralHealthStatus" character varying, + "DentalHealthStatus" character varying, + "MentalHealthStatus" character varying, + "PregnancyStatus" character varying, + "DueDate" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_health_and_dvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_health_and_dvs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_health_and_dvs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_health_and_dvs_id_seq OWNED BY public.hmis_csv_2024_health_and_dvs.id; + + +-- +-- Name: hmis_csv_2024_hmis_participations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_hmis_participations ( + id bigint NOT NULL, + "HMISParticipationID" character varying, + "ProjectID" character varying, + "HMISParticipationType" character varying, + "HMISParticipationStatusStartDate" character varying, + "HMISParticipationStatusEndDate" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_hmis_participations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_hmis_participations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_hmis_participations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_hmis_participations_id_seq OWNED BY public.hmis_csv_2024_hmis_participations.id; + + +-- +-- Name: hmis_csv_2024_income_benefits; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_income_benefits ( + id bigint NOT NULL, + "IncomeBenefitsID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "IncomeFromAnySource" character varying, + "TotalMonthlyIncome" character varying, + "Earned" character varying, + "EarnedAmount" character varying, + "Unemployment" character varying, + "UnemploymentAmount" character varying, + "SSI" character varying, + "SSIAmount" character varying, + "SSDI" character varying, + "SSDIAmount" character varying, + "VADisabilityService" character varying, + "VADisabilityServiceAmount" character varying, + "VADisabilityNonService" character varying, + "VADisabilityNonServiceAmount" character varying, + "PrivateDisability" character varying, + "PrivateDisabilityAmount" character varying, + "WorkersComp" character varying, + "WorkersCompAmount" character varying, + "TANF" character varying, + "TANFAmount" character varying, + "GA" character varying, + "GAAmount" character varying, + "SocSecRetirement" character varying, + "SocSecRetirementAmount" character varying, + "Pension" character varying, + "PensionAmount" character varying, + "ChildSupport" character varying, + "ChildSupportAmount" character varying, + "Alimony" character varying, + "AlimonyAmount" character varying, + "OtherIncomeSource" character varying, + "OtherIncomeAmount" character varying, + "OtherIncomeSourceIdentify" character varying, + "BenefitsFromAnySource" character varying, + "SNAP" character varying, + "WIC" character varying, + "TANFChildCare" character varying, + "TANFTransportation" character varying, + "OtherTANF" character varying, + "OtherBenefitsSource" character varying, + "OtherBenefitsSourceIdentify" character varying, + "InsuranceFromAnySource" character varying, + "Medicaid" character varying, + "NoMedicaidReason" character varying, + "Medicare" character varying, + "NoMedicareReason" character varying, + "SCHIP" character varying, + "NoSCHIPReason" character varying, + "VHAServices" character varying, + "NoVHAReason" character varying, + "EmployerProvided" character varying, + "NoEmployerProvidedReason" character varying, + "COBRA" character varying, + "NoCOBRAReason" character varying, + "PrivatePay" character varying, + "NoPrivatePayReason" character varying, + "StateHealthIns" character varying, + "NoStateHealthInsReason" character varying, + "IndianHealthServices" character varying, + "NoIndianHealthServicesReason" character varying, + "OtherInsurance" character varying, + "OtherInsuranceIdentify" character varying, + "ADAP" character varying, + "NoADAPReason" character varying, + "RyanWhiteMedDent" character varying, + "NoRyanWhiteReason" character varying, + "ConnectionWithSOAR" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_income_benefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_income_benefits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_income_benefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_income_benefits_id_seq OWNED BY public.hmis_csv_2024_income_benefits.id; + + +-- +-- Name: hmis_csv_2024_inventories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_inventories ( + id bigint NOT NULL, + "InventoryID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "HouseholdType" character varying, + "Availability" character varying, + "UnitInventory" character varying, + "BedInventory" character varying, + "CHVetBedInventory" character varying, + "YouthVetBedInventory" character varying, + "VetBedInventory" character varying, + "CHYouthBedInventory" character varying, + "YouthBedInventory" character varying, + "CHBedInventory" character varying, + "OtherBedInventory" character varying, + "ESBedType" character varying, + "InventoryStartDate" character varying, + "InventoryEndDate" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_inventories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_inventories_id_seq OWNED BY public.hmis_csv_2024_inventories.id; + + +-- +-- Name: hmis_csv_2024_organizations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_organizations ( + id bigint NOT NULL, + "OrganizationID" character varying, + "OrganizationName" character varying, + "VictimServiceProvider" character varying, + "OrganizationCommonName" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_organizations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_organizations_id_seq OWNED BY public.hmis_csv_2024_organizations.id; + + +-- +-- Name: hmis_csv_2024_project_cocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_project_cocs ( + id bigint NOT NULL, + "ProjectCoCID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "Geocode" character varying, + "Address1" character varying, + "Address2" character varying, + "City" character varying, + "State" character varying, + "Zip" character varying, + "GeographyType" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_project_cocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_project_cocs_id_seq OWNED BY public.hmis_csv_2024_project_cocs.id; + + +-- +-- Name: hmis_csv_2024_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_projects ( + id bigint NOT NULL, + "ProjectID" character varying, + "OrganizationID" character varying, + "ProjectName" character varying, + "ProjectCommonName" character varying, + "OperatingStartDate" character varying, + "OperatingEndDate" character varying, + "ContinuumProject" character varying, + "ProjectType" character varying, + "HousingType" character varying, + "RRHSubType" character varying, + "ResidentialAffiliation" character varying, + "TargetPopulation" character varying, + "HOPWAMedAssistedLivingFac" character varying, + "PITCount" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_projects_id_seq OWNED BY public.hmis_csv_2024_projects.id; + + +-- +-- Name: hmis_csv_2024_services; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_services ( + id bigint NOT NULL, + "ServicesID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "DateProvided" character varying, + "RecordType" character varying, + "TypeProvided" character varying, + "OtherTypeProvided" character varying, + "MovingOnOtherType" character varying, + "SubTypeProvided" character varying, + "FAAmount" character varying, + "FAStartDate" character varying, + "FAEndDate" character varying, + "ReferralOutcome" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_services_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_services_id_seq OWNED BY public.hmis_csv_2024_services.id; + + +-- +-- Name: hmis_csv_2024_users; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_users ( + id bigint NOT NULL, + "UserID" character varying, + "UserFirstName" character varying, + "UserLastName" character varying, + "UserPhone" character varying, + "UserExtension" character varying, + "UserEmail" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_users_id_seq OWNED BY public.hmis_csv_2024_users.id; + + +-- +-- Name: hmis_csv_2024_youth_education_statuses; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_2024_youth_education_statuses ( + id bigint NOT NULL, + "YouthEducationStatusID" character varying, + "EnrollmentID" character varying, + "PersonalID" character varying, + "InformationDate" character varying, + "CurrentSchoolAttend" character varying, + "MostRecentEdStatus" character varying, + "CurrentEdStatus" character varying, + "DataCollectionStage" character varying, + "DateCreated" character varying, + "DateUpdated" character varying, + "UserID" character varying, + "DateDeleted" character varying, + "ExportID" character varying, + data_source_id integer NOT NULL, + loaded_at timestamp without time zone NOT NULL, + loader_id integer NOT NULL +); + + +-- +-- Name: hmis_csv_2024_youth_education_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_2024_youth_education_statuses_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_2024_youth_education_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_2024_youth_education_statuses_id_seq OWNED BY public.hmis_csv_2024_youth_education_statuses.id; + + +-- +-- Name: hmis_csv_import_errors; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_import_errors ( + id bigint NOT NULL, + importer_log_id integer NOT NULL, + message character varying, + details character varying, + source_type character varying NOT NULL, + source_id character varying NOT NULL +); + + +-- +-- Name: hmis_csv_import_errors_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_import_errors_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_import_errors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_import_errors_id_seq OWNED BY public.hmis_csv_import_errors.id; + + +-- +-- Name: hmis_csv_import_validations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_import_validations ( + id bigint NOT NULL, + importer_log_id integer NOT NULL, + type character varying NOT NULL, + source_id character varying NOT NULL, + source_type character varying NOT NULL, + status character varying, + validated_column character varying +); + + +-- +-- Name: hmis_csv_import_validations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_import_validations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_import_validations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_import_validations_id_seq OWNED BY public.hmis_csv_import_validations.id; + + +-- +-- Name: hmis_csv_importer_logs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_importer_logs ( + id bigint NOT NULL, + data_source_id integer NOT NULL, + summary jsonb, + status character varying, + started_at timestamp without time zone, + completed_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + upload_id integer +); + + +-- +-- Name: hmis_csv_importer_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_importer_logs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_importer_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_importer_logs_id_seq OWNED BY public.hmis_csv_importer_logs.id; + + +-- +-- Name: hmis_csv_load_errors; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_load_errors ( + id bigint NOT NULL, + loader_log_id integer NOT NULL, + file_name character varying NOT NULL, + message character varying, + details character varying, + source character varying +); + + +-- +-- Name: hmis_csv_load_errors_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_load_errors_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_load_errors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_load_errors_id_seq OWNED BY public.hmis_csv_load_errors.id; + + +-- +-- Name: hmis_csv_loader_logs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_csv_loader_logs ( + id bigint NOT NULL, + data_source_id integer NOT NULL, + importer_log_id integer, + summary jsonb, + status character varying, + started_at timestamp without time zone, + completed_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + upload_id integer +); + + +-- +-- Name: hmis_csv_loader_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_csv_loader_logs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_csv_loader_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_csv_loader_logs_id_seq OWNED BY public.hmis_csv_loader_logs.id; + + +-- +-- Name: hmis_dqt_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_dqt_assessments ( + id bigint NOT NULL, + assessment_id bigint NOT NULL, + enrollment_id bigint NOT NULL, + client_id bigint NOT NULL, + report_id bigint NOT NULL, + project_name character varying, + destination_client_id integer, + hmis_assessment_id character varying, + data_source_id integer, + assessment_type integer, + assessment_level integer, + prioritization_status integer, + assessment_date date, + project_operating_start_date date, + project_operating_end_date date, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: hmis_dqt_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_dqt_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_dqt_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_dqt_assessments_id_seq OWNED BY public.hmis_dqt_assessments.id; + + +-- +-- Name: hmis_dqt_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_dqt_clients ( + id bigint NOT NULL, + client_id bigint NOT NULL, + report_id bigint NOT NULL, + destination_client_id integer, + first_name character varying, + last_name character varying, + personal_id character varying, + data_source_id integer, + dob date, + dob_data_quality integer, + male integer, + female integer, + no_single_gender integer, + transgender integer, + questioning integer, + am_ind_ak_native integer, + asian integer, + black_af_american integer, + native_hi_pacific integer, + white integer, + race_none integer, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + gender_none integer, + overlapping_entry_exit integer, + overlapping_nbn integer, + overlapping_pre_move_in integer, + overlapping_post_move_in integer, + ch_at_most_recent_entry boolean DEFAULT false, + ch_at_any_entry boolean DEFAULT false, + veteran_status integer, + ssn character varying, + ssn_data_quality integer, + name_data_quality integer, + ethnicity integer, + reporting_age integer, + woman integer, + man integer, + culturally_specific integer, + different_identity integer, + non_binary integer, + hispanic_latinaeo integer, + mid_east_n_african integer, + spm_hispanic_latinaeo integer, + _all_persons__hispanic_latinaeo integer, + spm_with_children__hispanic_latinaeo integer, + spm_only_children__hispanic_latinaeo integer, + spm_without_children__hispanic_latinaeo integer, + spm_adults_with_children_where_parenting_adult_18_to_24__hispan integer, + spm_without_children_and_fifty_five_plus__hispanic_latinaeo integer, + spm_mid_east_n_african integer, + _all_persons__mid_east_n_african integer, + spm_with_children__mid_east_n_african integer, + spm_only_children__mid_east_n_african integer, + spm_without_children__mid_east_n_african integer, + spm_adults_with_children_where_parenting_adult_18_to_24__mid_ea integer, + spm_without_children_and_fifty_five_plus__mid_east_n_african integer, + overlapping_entry_exit_details jsonb, + overlapping_nbn_details jsonb, + overlapping_pre_move_in_details jsonb, + overlapping_post_move_in_details jsonb +); + + +-- +-- Name: hmis_dqt_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_dqt_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_dqt_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_dqt_clients_id_seq OWNED BY public.hmis_dqt_clients.id; + + +-- +-- Name: hmis_dqt_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_dqt_current_living_situations ( + id bigint NOT NULL, + current_living_situation_id bigint NOT NULL, + enrollment_id bigint NOT NULL, + client_id bigint NOT NULL, + report_id bigint NOT NULL, + project_name character varying, + destination_client_id integer, + hmis_current_living_situation_id character varying, + data_source_id integer, + situation integer, + information_date date, + project_operating_start_date date, + project_operating_end_date date, + project_tracking_method integer, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + project_id integer, + first_name character varying, + last_name character varying, + personal_id character varying +); + + +-- +-- Name: hmis_dqt_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_dqt_current_living_situations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_dqt_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_dqt_current_living_situations_id_seq OWNED BY public.hmis_dqt_current_living_situations.id; + + +-- +-- Name: hmis_dqt_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_dqt_enrollments ( + id bigint NOT NULL, + enrollment_id bigint NOT NULL, + client_id bigint NOT NULL, + report_id bigint NOT NULL, + personal_id character varying, + project_name character varying, + destination_client_id integer, + hmis_enrollment_id character varying, + exit_id character varying, + data_source_id integer, + entry_date date, + move_in_date date, + exit_date date, + age integer, + household_max_age integer, + household_id character varying, + head_of_household_count integer, + disabling_condition integer, + living_situation integer, + relationship_to_hoh integer, + coc_code character varying, + destination integer, + project_operating_start_date date, + project_operating_end_date date, + project_tracking_method integer, + lot integer, + days_since_last_service integer, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + project_type integer, + ch_at_entry boolean DEFAULT false, + project_id integer, + household_type character varying, + household_min_age integer, + ch_details_expected boolean DEFAULT false, + los_under_threshold integer, + date_to_street_essh date, + times_homeless_past_three_years integer, + months_homeless_past_three_years integer, + enrollment_coc character varying, + has_disability boolean DEFAULT false, + days_between_entry_and_create integer, + health_dv_at_entry_expected boolean DEFAULT false, + domestic_violence_victim_at_entry integer, + income_at_entry_expected boolean DEFAULT false, + income_at_annual_expected boolean DEFAULT false, + income_at_exit_expected boolean DEFAULT false, + insurance_at_entry_expected boolean DEFAULT false, + insurance_at_annual_expected boolean DEFAULT false, + insurance_at_exit_expected boolean DEFAULT false, + income_from_any_source_at_entry integer, + income_from_any_source_at_annual integer, + income_from_any_source_at_exit integer, + cash_income_as_expected_at_entry boolean DEFAULT false, + cash_income_as_expected_at_annual boolean DEFAULT false, + cash_income_as_expected_at_exit boolean DEFAULT false, + ncb_from_any_source_at_entry_remove integer, + ncb_from_any_source_at_annual_remove integer, + ncb_from_any_source_at_exit_remove integer, + ncb_as_expected_at_entry boolean DEFAULT false, + ncb_as_expected_at_annual boolean DEFAULT false, + ncb_as_expected_at_exit boolean DEFAULT false, + insurance_from_any_source_at_entry_remove integer, + insurance_from_any_source_at_annual_remove integer, + insurance_from_any_source_at_exit_remove integer, + insurance_as_expected_at_entry boolean DEFAULT false, + insurance_as_expected_at_annual boolean DEFAULT false, + insurance_as_expected_at_exit boolean DEFAULT false, + disability_at_entry_collected boolean DEFAULT false, + previous_street_es_sh integer, + entry_date_entered_at timestamp without time zone, + exit_date_entered_at timestamp without time zone, + days_to_enter_entry_date integer, + days_to_enter_exit_date integer, + days_before_entry integer, + first_name character varying, + last_name character varying, + annual_expected boolean, + enrollment_anniversary_date date, + annual_assessment_status json, + funders jsonb, + percent_ami integer, + vamc_station character varying, + veteran integer, + hoh_veteran integer, + hh_veteran_count integer, + target_screen_required integer, + target_screen_completed boolean, + total_monthly_income_at_entry numeric, + total_monthly_income_from_source_at_entry numeric, + total_monthly_income_at_exit numeric, + total_monthly_income_from_source_at_exit numeric, + afghanistan_oef integer, + iraq_oif integer, + iraq_ond integer, + military_branch integer, + discharge_status integer, + employed integer, + employment_type integer, + not_employed_reason integer, + ncb_from_any_source_at_entry integer, + ncb_from_any_source_at_annual integer, + ncb_from_any_source_at_exit integer, + insurance_from_any_source_at_entry integer, + insurance_from_any_source_at_annual integer, + insurance_from_any_source_at_exit integer +); + + +-- +-- Name: hmis_dqt_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_dqt_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_dqt_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_dqt_enrollments_id_seq OWNED BY public.hmis_dqt_enrollments.id; + + +-- +-- Name: hmis_dqt_events; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_dqt_events ( + id bigint NOT NULL, + event_id bigint NOT NULL, + enrollment_id bigint NOT NULL, + client_id bigint NOT NULL, + report_id bigint NOT NULL, + project_name character varying, + destination_client_id integer, + hmis_event_id character varying, + data_source_id integer, + event integer, + event_date date, + project_operating_start_date date, + project_operating_end_date date, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: hmis_dqt_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_dqt_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_dqt_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_dqt_events_id_seq OWNED BY public.hmis_dqt_events.id; + + +-- +-- Name: hmis_dqt_goals; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_dqt_goals ( + id bigint NOT NULL, + coc_code character varying, + segment_0_name character varying, + segment_0_color character varying, + segment_0_low integer, + segment_0_high integer, + segment_1_name character varying, + segment_1_color character varying, + segment_1_low integer, + segment_1_high integer, + segment_2_name character varying, + segment_2_color character varying, + segment_2_low integer, + segment_2_high integer, + segment_3_name character varying, + segment_3_color character varying, + segment_3_low integer, + segment_3_high integer, + segment_4_name character varying, + segment_4_color character varying, + segment_4_low integer, + segment_4_high integer, + segment_5_name character varying, + segment_5_color character varying, + segment_5_low integer, + segment_5_high integer, + segment_6_name character varying, + segment_6_color character varying, + segment_6_low integer, + segment_6_high integer, + segment_7_name character varying, + segment_7_color character varying, + segment_7_low integer, + segment_7_high integer, + segment_8_name character varying, + segment_8_color character varying, + segment_8_low integer, + segment_8_high integer, + segment_9_name character varying, + segment_9_color character varying, + segment_9_low integer, + segment_9_high integer, + es_stay_length integer, + es_missed_exit_length integer, + so_missed_exit_length integer, + ph_missed_exit_length integer, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + entry_date_entered_length integer DEFAULT 6, + exit_date_entered_length integer DEFAULT 6, + expose_ch_calculations boolean DEFAULT true NOT NULL, + show_annual_assessments boolean DEFAULT true +); + + +-- +-- Name: hmis_dqt_goals_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_dqt_goals_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_dqt_goals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_dqt_goals_id_seq OWNED BY public.hmis_dqt_goals.id; + + +-- +-- Name: hmis_dqt_inventories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_dqt_inventories ( + id bigint NOT NULL, + inventory_id bigint NOT NULL, + project_id bigint NOT NULL, + report_id bigint NOT NULL, + project_name character varying, + hmis_inventory_id character varying, + data_source_id integer, + project_type integer, + project_operating_start_date date, + project_operating_end_date date, + unit_inventory integer, + bed_inventory integer, + ch_vet_bed_inventory integer, + youth_vet_bed_inventory integer, + vet_bed_inventory integer, + ch_youth_bed_inventory integer, + youth_bed_inventory integer, + ch_bed_inventory integer, + other_bed_inventory integer, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + inventory_start_date date, + inventory_end_date date +); + + +-- +-- Name: hmis_dqt_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_dqt_inventories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_dqt_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_dqt_inventories_id_seq OWNED BY public.hmis_dqt_inventories.id; + + +-- +-- Name: hmis_external_form_publications; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_external_form_publications ( + id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + definition_id bigint NOT NULL, + object_key character varying NOT NULL, + content_definition jsonb NOT NULL, + content text, + content_digest character varying +); + + +-- +-- Name: hmis_external_form_publications_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_external_form_publications_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_external_form_publications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_external_form_publications_id_seq OWNED BY public.hmis_external_form_publications.id; + + +-- +-- Name: hmis_external_form_submissions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_external_form_submissions ( + id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + submitted_at timestamp without time zone, + spam_score double precision, + status character varying DEFAULT 'new'::character varying NOT NULL, + definition_id bigint NOT NULL, + object_key character varying NOT NULL, + raw_data jsonb NOT NULL, + notes text, + enrollment_id bigint +); + + +-- +-- Name: hmis_external_form_submissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_external_form_submissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_external_form_submissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_external_form_submissions_id_seq OWNED BY public.hmis_external_form_submissions.id; + + +-- +-- Name: hmis_external_referral_household_members; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_external_referral_household_members ( + id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + relationship_to_hoh integer NOT NULL, + referral_id bigint NOT NULL, + client_id bigint NOT NULL, + mci_id character varying +); + + +-- +-- Name: hmis_external_referral_household_members_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_external_referral_household_members_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_external_referral_household_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_external_referral_household_members_id_seq OWNED BY public.hmis_external_referral_household_members.id; + + +-- +-- Name: hmis_external_referral_postings; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_external_referral_postings ( + id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + identifier character varying, + status integer NOT NULL, + referral_id bigint NOT NULL, + project_id bigint NOT NULL, + referral_request_id bigint, + unit_type_id bigint, + "HouseholdID" character varying, + resource_coordinator_notes text, + status_updated_at timestamp without time zone NOT NULL, + status_updated_by_id bigint, + status_note text, + status_note_updated_by_id bigint, + denial_reason integer, + referral_result integer, + denial_note text, + status_note_updated_at timestamp without time zone, + data_source_id integer NOT NULL +); + + +-- +-- Name: hmis_external_referral_postings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_external_referral_postings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_external_referral_postings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_external_referral_postings_id_seq OWNED BY public.hmis_external_referral_postings.id; + + +-- +-- Name: hmis_external_referral_requests; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_external_referral_requests ( + id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + identifier character varying, + project_id bigint NOT NULL, + unit_type_id bigint NOT NULL, + requested_on timestamp without time zone NOT NULL, + needed_by date NOT NULL, + requested_by_id bigint, + requestor_name character varying NOT NULL, + requestor_phone character varying NOT NULL, + requestor_email character varying NOT NULL, + voided_at timestamp without time zone, + voided_by_id bigint +); + + +-- +-- Name: hmis_external_referral_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_external_referral_requests_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_external_referral_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_external_referral_requests_id_seq OWNED BY public.hmis_external_referral_requests.id; + + +-- +-- Name: hmis_external_referrals; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_external_referrals ( + id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + identifier character varying, + referral_date date NOT NULL, + service_coordinator character varying NOT NULL, + enrollment_id bigint, + referral_notes text, + chronic boolean, + score integer, + needs_wheelchair_accessible_unit boolean +); + + +-- +-- Name: hmis_external_referrals_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_external_referrals_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_external_referrals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_external_referrals_id_seq OWNED BY public.hmis_external_referrals.id; + + +-- +-- Name: hmis_external_unit_availability_syncs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_external_unit_availability_syncs ( + id bigint NOT NULL, + project_id bigint NOT NULL, + unit_type_id bigint NOT NULL, + user_id bigint NOT NULL, + local_version integer DEFAULT 0 NOT NULL, + synced_version integer DEFAULT 0 NOT NULL +); + + +-- +-- Name: hmis_external_unit_availability_syncs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_external_unit_availability_syncs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_external_unit_availability_syncs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_external_unit_availability_syncs_id_seq OWNED BY public.hmis_external_unit_availability_syncs.id; + + +-- +-- Name: hmis_form_definitions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_form_definitions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_form_definitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_form_definitions_id_seq OWNED BY public.hmis_form_definitions.id; + + +-- +-- Name: hmis_form_instances; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_form_instances ( + id bigint NOT NULL, + entity_type character varying, + entity_id bigint, + definition_identifier character varying NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + custom_service_type_id integer, + custom_service_category_id integer, + funder integer, + project_type integer, + other_funder character varying, + data_collected_about character varying, + system boolean DEFAULT false NOT NULL, + active boolean DEFAULT true NOT NULL +); + + +-- +-- Name: hmis_form_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_form_instances_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_form_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_form_instances_id_seq OWNED BY public.hmis_form_instances.id; + + +-- +-- Name: hmis_form_processors_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_form_processors_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_form_processors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_form_processors_id_seq OWNED BY public.hmis_form_processors.id; + + +-- +-- Name: hmis_forms; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_forms ( + id integer NOT NULL, + client_id integer, + api_response text, + name character varying, + answers text, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + response_id integer, + subject_id integer, + collected_at timestamp without time zone, + staff character varying, + assessment_type character varying, + collection_location character varying, + assessment_id integer, + data_source_id integer NOT NULL, + site_id integer, + vispdat_score_updated_at timestamp without time zone, + vispdat_total_score double precision, + vispdat_youth_score double precision, + vispdat_family_score double precision, + vispdat_months_homeless double precision, + vispdat_times_homeless double precision, + staff_email character varying, + eto_last_updated timestamp without time zone, + housing_status character varying, + vispdat_pregnant character varying, + vispdat_pregnant_updated_at date, + housing_status_updated_at timestamp without time zone, + pathways_updated_at timestamp without time zone, + assessment_completed_on date, + assessment_score integer, + rrh_desired boolean DEFAULT false NOT NULL, + youth_rrh_desired boolean DEFAULT false NOT NULL, + rrh_assessment_contact_info character varying, + adult_rrh_desired boolean DEFAULT false NOT NULL, + rrh_th_desired boolean DEFAULT false NOT NULL, + income_maximization_assistance_requested boolean DEFAULT false NOT NULL, + income_total_annual integer, + pending_subsidized_housing_placement boolean DEFAULT false NOT NULL, + domestic_violence boolean DEFAULT false NOT NULL, + interested_in_set_asides boolean DEFAULT false NOT NULL, + required_number_of_bedrooms integer, + required_minimum_occupancy integer, + requires_wheelchair_accessibility boolean DEFAULT false NOT NULL, + requires_elevator_access boolean DEFAULT false NOT NULL, + youth_rrh_aggregate character varying, + dv_rrh_aggregate character varying, + veteran_rrh_desired boolean DEFAULT false NOT NULL, + sro_ok boolean DEFAULT false NOT NULL, + other_accessibility boolean DEFAULT false NOT NULL, + disabled_housing boolean DEFAULT false NOT NULL, + evicted boolean DEFAULT false NOT NULL, + neighborhood_interests jsonb DEFAULT '[]'::jsonb, + client_phones character varying, + client_emails character varying, + client_shelters character varying, + client_case_managers character varying, + client_day_shelters character varying, + client_night_shelters character varying, + ssvf_eligible boolean DEFAULT false, + vispdat_physical_disability_answer character varying, + vispdat_physical_disability_updated_at timestamp without time zone, + covid_impact_updated_at timestamp without time zone, + number_of_bedrooms integer, + subsidy_months integer, + total_subsidy integer, + monthly_rent_total integer, + percent_ami integer, + household_type character varying, + household_size integer, + location_processed_at timestamp without time zone +); + + +-- +-- Name: hmis_forms_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_forms_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_forms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_forms_id_seq OWNED BY public.hmis_forms.id; + + +-- +-- Name: hmis_group_viewable_entities; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_group_viewable_entities ( + id bigint NOT NULL, + entity_type character varying NOT NULL, + entity_id bigint NOT NULL, + collection_id bigint NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: hmis_group_viewable_entities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_group_viewable_entities_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_group_viewable_entities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_group_viewable_entities_id_seq OWNED BY public.hmis_group_viewable_entities.id; + + +-- +-- Name: hmis_group_viewable_entity_projects; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.hmis_group_viewable_entity_projects AS + SELECT hmis_group_viewable_entities.id AS group_viewable_entity_id, + NULL::integer AS organization_id, + hmis_group_viewable_entities.entity_id AS project_id + FROM public.hmis_group_viewable_entities + WHERE (((hmis_group_viewable_entities.entity_type)::text = 'Hmis::Hud::Project'::text) AND (hmis_group_viewable_entities.deleted_at IS NULL)) +UNION + SELECT hmis_group_viewable_entities.id AS group_viewable_entity_id, + "Organization".id AS organization_id, + "Project".id AS project_id + FROM ((public.hmis_group_viewable_entities + JOIN public."Organization" ON ((("Organization"."DateDeleted" IS NULL) AND ("Organization".id = hmis_group_viewable_entities.entity_id)))) + JOIN public."Project" ON ((("Project"."DateDeleted" IS NULL) AND ("Organization".data_source_id = "Project".data_source_id) AND (("Organization"."OrganizationID")::text = ("Project"."OrganizationID")::text)))) + WHERE (((hmis_group_viewable_entities.entity_type)::text = 'Hmis::Hud::Organization'::text) AND (hmis_group_viewable_entities.deleted_at IS NULL)) +UNION + SELECT hmis_group_viewable_entities.id AS group_viewable_entity_id, + "Organization".id AS organization_id, + "Project".id AS project_id + FROM (((public.hmis_group_viewable_entities + JOIN public.data_sources ON (((data_sources.deleted_at IS NULL) AND (data_sources.id = hmis_group_viewable_entities.entity_id)))) + LEFT JOIN public."Project" ON ((("Project"."DateDeleted" IS NULL) AND (data_sources.id = "Project".data_source_id)))) + LEFT JOIN public."Organization" ON ((("Organization"."DateDeleted" IS NULL) AND (data_sources.id = "Organization".data_source_id)))) + WHERE (((hmis_group_viewable_entities.entity_type)::text = 'GrdaWarehouse::DataSource'::text) AND (hmis_group_viewable_entities.deleted_at IS NULL)); + + +-- +-- Name: hmis_households; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.hmis_households AS + SELECT concat("Enrollment"."HouseholdID", ':', "Project"."ProjectID", ':', "Project".data_source_id) AS id, + "Enrollment"."HouseholdID", + "Enrollment".project_pk, + "Project"."ProjectID", + "Project".data_source_id, + min("Enrollment"."EntryDate") AS earliest_entry, + CASE + WHEN bool_or(("Exit"."ExitDate" IS NULL)) THEN NULL::date + ELSE max("Exit"."ExitDate") + END AS latest_exit, + bool_or(("Enrollment"."ProjectID" IS NULL)) AS any_wip, + NULL::text AS "DateDeleted", + max("Enrollment"."DateUpdated") AS "DateUpdated", + min("Enrollment"."DateCreated") AS "DateCreated" + FROM ((public."Enrollment" + LEFT JOIN public."Exit" ON (((("Exit"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Exit".data_source_id = "Enrollment".data_source_id) AND ("Exit"."DateDeleted" IS NULL)))) + JOIN public."Project" ON ((("Project"."DateDeleted" IS NULL) AND ("Project".id = "Enrollment".project_pk)))) + WHERE ("Enrollment"."DateDeleted" IS NULL) + GROUP BY "Project".data_source_id, "Project"."ProjectID", "Enrollment".project_pk, "Enrollment"."HouseholdID"; + + +-- +-- Name: hmis_import_configs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_import_configs ( + id bigint NOT NULL, + data_source_id bigint NOT NULL, + active boolean DEFAULT false, + s3_access_key_id character varying NOT NULL, + encrypted_s3_secret_access_key character varying NOT NULL, + encrypted_s3_secret_access_key_iv character varying, + s3_region character varying, + s3_bucket_name character varying, + s3_path character varying, + encrypted_zip_file_password character varying, + encrypted_zip_file_password_iv character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + file_count integer DEFAULT 1 NOT NULL, + s3_role_arn character varying, + s3_external_id character varying +); + + +-- +-- Name: hmis_import_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_import_configs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_import_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_import_configs_id_seq OWNED BY public.hmis_import_configs.id; + + +-- +-- Name: hmis_project_configs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_project_configs ( + id bigint NOT NULL, + type character varying NOT NULL, + enabled boolean DEFAULT true NOT NULL, + config_options jsonb, + project_type integer, + organization_id bigint, + project_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: hmis_project_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_project_configs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_project_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_project_configs_id_seq OWNED BY public.hmis_project_configs.id; + + +-- +-- Name: hmis_project_unit_type_mappings; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_project_unit_type_mappings ( + id bigint NOT NULL, + project_id bigint NOT NULL, + unit_type_id bigint NOT NULL, + unit_capacity integer, + active boolean NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: hmis_project_unit_type_mappings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_project_unit_type_mappings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_project_unit_type_mappings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_project_unit_type_mappings_id_seq OWNED BY public.hmis_project_unit_type_mappings.id; + + +-- +-- Name: hmis_scan_card_codes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_scan_card_codes ( + id bigint NOT NULL, + client_id bigint NOT NULL, + value character varying NOT NULL, + created_by_id bigint, + deleted_by_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + expires_at timestamp without time zone +); + + +-- +-- Name: COLUMN hmis_scan_card_codes.value; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.hmis_scan_card_codes.value IS 'code to embed in scan card'; + + +-- +-- Name: COLUMN hmis_scan_card_codes.created_by_id; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.hmis_scan_card_codes.created_by_id IS 'user that generated code'; + + +-- +-- Name: COLUMN hmis_scan_card_codes.deleted_by_id; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.hmis_scan_card_codes.deleted_by_id IS 'user that deleted code'; + + +-- +-- Name: COLUMN hmis_scan_card_codes.expires_at; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.hmis_scan_card_codes.expires_at IS 'when scan card should expire'; + + +-- +-- Name: hmis_scan_card_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_scan_card_codes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_scan_card_codes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_scan_card_codes_id_seq OWNED BY public.hmis_scan_card_codes.id; + + +-- +-- Name: hmis_services; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.hmis_services AS + SELECT (concat('1', ("Services".id)::character varying))::integer AS id, + "Services".id AS owner_id, + 'Hmis::Hud::Service'::text AS owner_type, + "Services"."RecordType", + "Services"."TypeProvided", + NULL::bigint AS custom_service_type_id, + "Services"."EnrollmentID", + "Services"."PersonalID", + "Services"."DateProvided", + ("Services"."UserID")::character varying AS "UserID", + "Services"."DateCreated", + "Services"."DateUpdated", + "Services"."DateDeleted", + "Services".data_source_id + FROM public."Services" + WHERE ("Services"."DateDeleted" IS NULL) +UNION ALL + SELECT (concat('2', ("CustomServices".id)::character varying))::integer AS id, + ("CustomServices".id)::integer AS owner_id, + 'Hmis::Hud::CustomService'::text AS owner_type, + NULL::integer AS "RecordType", + NULL::integer AS "TypeProvided", + "CustomServices".custom_service_type_id, + "CustomServices"."EnrollmentID", + "CustomServices"."PersonalID", + "CustomServices"."DateProvided", + "CustomServices"."UserID", + "CustomServices"."DateCreated", + "CustomServices"."DateUpdated", + "CustomServices"."DateDeleted", + "CustomServices".data_source_id + FROM public."CustomServices" + WHERE ("CustomServices"."DateDeleted" IS NULL); + + +-- +-- Name: hmis_staff; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_staff ( + id integer NOT NULL, + site_id integer, + first_name character varying, + last_name character varying, + middle_initial character varying, + work_phone character varying, + cell_phone character varying, + email character varying, + ssn character varying, + source_class character varying, + source_id character varying, + data_source_id integer +); + + +-- +-- Name: hmis_staff_assignment_relationships; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_staff_assignment_relationships ( + id bigint NOT NULL, + name character varying NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: COLUMN hmis_staff_assignment_relationships.name; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.hmis_staff_assignment_relationships.name IS 'name of role, such as "Case Manager" or "Housing Navigator"'; + + +-- +-- Name: hmis_staff_assignment_relationships_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_staff_assignment_relationships_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_staff_assignment_relationships_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_staff_assignment_relationships_id_seq OWNED BY public.hmis_staff_assignment_relationships.id; + + +-- +-- Name: hmis_staff_assignments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_staff_assignments ( + id bigint NOT NULL, + user_id bigint NOT NULL, + household_id character varying, + hmis_staff_assignment_relationship_id bigint NOT NULL, + data_source_id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: hmis_staff_assignments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_staff_assignments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_staff_assignments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_staff_assignments_id_seq OWNED BY public.hmis_staff_assignments.id; + + +-- +-- Name: hmis_staff_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_staff_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_staff_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_staff_id_seq OWNED BY public.hmis_staff.id; + + +-- +-- Name: hmis_staff_x_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_staff_x_clients ( + id integer NOT NULL, + staff_id integer, + client_id integer, + relationship_id integer, + source_class character varying, + source_id character varying +); + + +-- +-- Name: hmis_staff_x_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_staff_x_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_staff_x_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_staff_x_clients_id_seq OWNED BY public.hmis_staff_x_clients.id; + + +-- +-- Name: hmis_supplemental_data_sets; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_supplemental_data_sets ( + id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + data_source_id bigint NOT NULL, + remote_credential_id bigint, + owner_type character varying NOT NULL, + object_key character varying NOT NULL, + name character varying NOT NULL, + field_config character varying NOT NULL, + sync_enabled boolean DEFAULT false +); + + +-- +-- Name: hmis_supplemental_data_sets_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_supplemental_data_sets_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_supplemental_data_sets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_supplemental_data_sets_id_seq OWNED BY public.hmis_supplemental_data_sets.id; + + +-- +-- Name: hmis_supplemental_field_values; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_supplemental_field_values ( + id bigint NOT NULL, + data_set_id bigint NOT NULL, + field_key character varying NOT NULL, + owner_key character varying NOT NULL, + data jsonb NOT NULL +); + + +-- +-- Name: hmis_supplemental_field_values_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_supplemental_field_values_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_supplemental_field_values_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_supplemental_field_values_id_seq OWNED BY public.hmis_supplemental_field_values.id; + + +-- +-- Name: hmis_unit_occupancy; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_unit_occupancy ( + id bigint NOT NULL, + unit_id bigint NOT NULL, + enrollment_id bigint NOT NULL, + hmis_service_id bigint +); + + +-- +-- Name: hmis_unit_occupancy_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_unit_occupancy_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_unit_occupancy_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_unit_occupancy_id_seq OWNED BY public.hmis_unit_occupancy.id; + + +-- +-- Name: hmis_unit_types; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_unit_types ( + id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + description character varying, + bed_type integer, + unit_size integer +); + + +-- +-- Name: hmis_unit_types_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_unit_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_unit_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_unit_types_id_seq OWNED BY public.hmis_unit_types.id; + + +-- +-- Name: hmis_units; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hmis_units ( + id bigint NOT NULL, + name character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + user_id character varying NOT NULL, + unit_type_id integer, + unit_size integer, + project_id integer NOT NULL +); + + +-- +-- Name: hmis_units_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hmis_units_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hmis_units_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hmis_units_id_seq OWNED BY public.hmis_units.id; + + +-- +-- Name: homeless_summary_report_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.homeless_summary_report_clients ( + id bigint NOT NULL, + client_id bigint, + report_id bigint, + first_name character varying, + last_name character varying, + spm_m1a_es_sh_days integer, + spm_m1a_es_sh_th_days integer, + spm_m1b_es_sh_ph_days integer, + spm_m1b_es_sh_th_ph_days integer, + spm_m2_reentry_days integer, + spm_m7a1_destination integer, + spm_m7b1_destination integer, + spm_m7b2_destination integer, + spm_m7a1_c2 boolean DEFAULT false, + spm_m7a1_c3 boolean DEFAULT false, + spm_m7a1_c4 boolean DEFAULT false, + spm_m7b1_c2 boolean DEFAULT false, + spm_m7b1_c3 boolean DEFAULT false, + spm_m7b2_c2 boolean DEFAULT false, + spm_m7b2_c3 boolean DEFAULT false, + spm_all_persons integer, + spm_without_children integer, + spm_with_children integer, + spm_only_children integer, + spm_without_children_and_fifty_five_plus integer, + spm_adults_with_children_where_parenting_adult_18_to_24 integer, + spm_white_non_hispanic_latino integer, + spm_hispanic_latino integer, + spm_black_african_american integer, + spm_asian integer, + spm_american_indian_alaskan_native integer, + spm_native_hawaiian_other_pacific_islander integer, + spm_multi_racial integer, + spm_fleeing_dv integer, + spm_veteran integer, + spm_has_disability integer, + spm_has_rrh_move_in_date integer, + spm_has_psh_move_in_date integer, + spm_first_time_homeless integer, + spm_returned_to_homelessness_from_permanent_destination integer, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + spm_exited_from_homeless_system boolean DEFAULT false, + spm_all_persons__all integer, + spm_all_persons__white_non_hispanic_latino integer, + spm_all_persons__hispanic_latino integer, + spm_all_persons__black_african_american integer, + spm_all_persons__asian integer, + spm_all_persons__american_indian_alaskan_native integer, + spm_all_persons__native_hawaiian_other_pacific_islander integer, + spm_all_persons__multi_racial integer, + spm_all_persons__fleeing_dv integer, + spm_all_persons__veteran integer, + spm_all_persons__has_disability integer, + spm_all_persons__has_rrh_move_in_date integer, + spm_all_persons__has_psh_move_in_date integer, + spm_all_persons__first_time_homeless integer, + spm_all_persons__returned_to_homelessness_from_permanent_destin integer, + spm_without_children__all integer, + spm_without_children__white_non_hispanic_latino integer, + spm_without_children__hispanic_latino integer, + spm_without_children__black_african_american integer, + spm_without_children__asian integer, + spm_without_children__american_indian_alaskan_native integer, + spm_without_children__native_hawaiian_other_pacific_islander integer, + spm_without_children__multi_racial integer, + spm_without_children__fleeing_dv integer, + spm_without_children__veteran integer, + spm_without_children__has_disability integer, + spm_without_children__has_rrh_move_in_date integer, + spm_without_children__has_psh_move_in_date integer, + spm_without_children__first_time_homeless integer, + spm_without_children__returned_to_homelessness_from_permanent_d integer, + spm_with_children__all integer, + spm_with_children__white_non_hispanic_latino integer, + spm_with_children__hispanic_latino integer, + spm_with_children__black_african_american integer, + spm_with_children__asian integer, + spm_with_children__american_indian_alaskan_native integer, + spm_with_children__native_hawaiian_other_pacific_islander integer, + spm_with_children__multi_racial integer, + spm_with_children__fleeing_dv integer, + spm_with_children__veteran integer, + spm_with_children__has_disability integer, + spm_with_children__has_rrh_move_in_date integer, + spm_with_children__has_psh_move_in_date integer, + spm_with_children__first_time_homeless integer, + spm_with_children__returned_to_homelessness_from_permanent_dest integer, + spm_only_children__all integer, + spm_only_children__white_non_hispanic_latino integer, + spm_only_children__hispanic_latino integer, + spm_only_children__black_african_american integer, + spm_only_children__asian integer, + spm_only_children__american_indian_alaskan_native integer, + spm_only_children__native_hawaiian_other_pacific_islander integer, + spm_only_children__multi_racial integer, + spm_only_children__fleeing_dv integer, + spm_only_children__veteran integer, + spm_only_children__has_disability integer, + spm_only_children__has_rrh_move_in_date integer, + spm_only_children__has_psh_move_in_date integer, + spm_only_children__first_time_homeless integer, + spm_only_children__returned_to_homelessness_from_permanent_dest integer, + spm_without_children_and_fifty_five_plus__all integer, + spm_without_children_and_fifty_five_plus__white_non_hispanic_la integer, + spm_without_children_and_fifty_five_plus__hispanic_latino integer, + spm_without_children_and_fifty_five_plus__black_african_america integer, + spm_without_children_and_fifty_five_plus__asian integer, + spm_without_children_and_fifty_five_plus__american_indian_alask integer, + spm_without_children_and_fifty_five_plus__native_hawaiian_other integer, + spm_without_children_and_fifty_five_plus__multi_racial integer, + spm_without_children_and_fifty_five_plus__fleeing_dv integer, + spm_without_children_and_fifty_five_plus__veteran integer, + spm_without_children_and_fifty_five_plus__has_disability integer, + spm_without_children_and_fifty_five_plus__has_rrh_move_in_date integer, + spm_without_children_and_fifty_five_plus__has_psh_move_in_date integer, + spm_without_children_and_fifty_five_plus__first_time_homeless integer, + spm_without_children_and_fifty_five_plus__returned_to_homelessn integer, + spm_adults_with_children_where_parenting_adult_18_to_24__all integer, + spm_adults_with_children_where_parenting_adult_18_to_24__white_ integer, + spm_adults_with_children_where_parenting_adult_18_to_24__hispan integer, + spm_adults_with_children_where_parenting_adult_18_to_24__black_ integer, + spm_adults_with_children_where_parenting_adult_18_to_24__asian integer, + spm_adults_with_children_where_parenting_adult_18_to_24__americ integer, + spm_adults_with_children_where_parenting_adult_18_to_24__native integer, + spm_adults_with_children_where_parenting_adult_18_to_24__multi_ integer, + spm_adults_with_children_where_parenting_adult_18_to_24__fleein integer, + spm_adults_with_children_where_parenting_adult_18_to_24__vetera integer, + spm_adults_with_children_where_parenting_adult_18_to_24__has_di integer, + spm_adults_with_children_where_parenting_adult_18_to_24__has_rr integer, + spm_adults_with_children_where_parenting_adult_18_to_24__has_ps integer, + spm_adults_with_children_where_parenting_adult_18_to_24__first_ integer, + spm_adults_with_children_where_parenting_adult_18_to_24__return integer, + spm_all_persons__white integer, + spm_all_persons__race_none integer, + spm_without_children__white integer, + spm_without_children__race_none integer, + spm_with_children__white integer, + spm_with_children__race_none integer, + spm_only_children__white integer, + spm_only_children__race_none integer, + spm_without_children_and_fifty_five_plus__white integer, + spm_without_children_and_fifty_five_plus__race_none integer, + spm_adults_with_children_where_parenting_adult_18_to_24__white integer, + spm_adults_with_children_where_parenting_adult_18_to_24__race_n integer, + spm_all_persons__non_hispanic_latino integer, + spm_all_persons__b_n_h_l integer, + spm_all_persons__a_n_h_l integer, + spm_all_persons__n_n_h_l integer, + spm_all_persons__h_n_h_l integer, + spm_without_children__non_hispanic_latino integer, + spm_without_children__b_n_h_l integer, + spm_without_children__a_n_h_l integer, + spm_without_children__n_n_h_l integer, + spm_without_children__h_n_h_l integer, + spm_with_children__non_hispanic_latino integer, + spm_with_children__b_n_h_l integer, + spm_with_children__a_n_h_l integer, + spm_with_children__n_n_h_l integer, + spm_with_children__h_n_h_l integer, + spm_only_children__non_hispanic_latino integer, + spm_only_children__b_n_h_l integer, + spm_only_children__a_n_h_l integer, + spm_only_children__n_n_h_l integer, + spm_only_children__h_n_h_l integer, + spm_without_children_and_fifty_five_plus__non_hispanic_latino integer, + spm_without_children_and_fifty_five_plus__b_n_h_l integer, + spm_without_children_and_fifty_five_plus__a_n_h_l integer, + spm_without_children_and_fifty_five_plus__n_n_h_l integer, + spm_without_children_and_fifty_five_plus__h_n_h_l integer, + spm_adults_with_children_where_parenting_adult_18_to_24__non_hi integer, + spm_adults_with_children_where_parenting_adult_18_to_24__b_n_h_ integer, + spm_adults_with_children_where_parenting_adult_18_to_24__a_n_h_ integer, + spm_adults_with_children_where_parenting_adult_18_to_24__n_n_h_ integer, + spm_adults_with_children_where_parenting_adult_18_to_24__h_n_h_ integer, + spm_all_persons__mid_east_n_african integer, + spm_all_persons__hispanic_latinaeo integer, + spm_without_children__mid_east_n_african integer, + spm_without_children__hispanic_latinaeo integer, + spm_with_children__mid_east_n_african integer, + spm_with_children__hispanic_latinaeo integer, + spm_only_children__mid_east_n_african integer, + spm_only_children__hispanic_latinaeo integer, + spm_without_children_and_fifty_five_plus__mid_east_n_african integer, + spm_without_children_and_fifty_five_plus__hispanic_latinaeo integer, + spm_adults_with_children_where_parenting_adult_18_to_24__mid_ea integer, + spm_all_persons__am_ind_ak_native integer, + spm_all_persons__am_ind_ak_native_hispanic_latinaeo integer, + spm_all_persons__asian_hispanic_latinaeo integer, + spm_all_persons__black_af_american integer, + spm_all_persons__black_af_american_hispanic_latinaeo integer, + spm_all_persons__mid_east_n_african_hispanic_latinaeo integer, + spm_all_persons__native_hi_pacific integer, + spm_all_persons__native_hi_pacific_hispanic_latinaeo integer, + spm_all_persons__white_hispanic_latinaeo integer, + spm_all_persons__multi_racial_hispanic_latinaeo integer, + spm_all_persons__returned integer, + spm_without_children__am_ind_ak_native integer, + spm_without_children__am_ind_ak_native_hispanic_latinaeo integer, + spm_without_children__asian_hispanic_latinaeo integer, + spm_without_children__black_af_american integer, + spm_without_children__black_af_american_hispanic_latinaeo integer, + spm_without_children__mid_east_n_african_hispanic_latinaeo integer, + spm_without_children__native_hi_pacific integer, + spm_without_children__native_hi_pacific_hispanic_latinaeo integer, + spm_without_children__white_hispanic_latinaeo integer, + spm_without_children__multi_racial_hispanic_latinaeo integer, + spm_without_children__returned integer, + spm_with_children__am_ind_ak_native integer, + spm_with_children__am_ind_ak_native_hispanic_latinaeo integer, + spm_with_children__asian_hispanic_latinaeo integer, + spm_with_children__black_af_american integer, + spm_with_children__black_af_american_hispanic_latinaeo integer, + spm_with_children__mid_east_n_african_hispanic_latinaeo integer, + spm_with_children__native_hi_pacific integer, + spm_with_children__native_hi_pacific_hispanic_latinaeo integer, + spm_with_children__white_hispanic_latinaeo integer, + spm_with_children__multi_racial_hispanic_latinaeo integer, + spm_with_children__returned integer, + spm_only_children__am_ind_ak_native integer, + spm_only_children__am_ind_ak_native_hispanic_latinaeo integer, + spm_only_children__asian_hispanic_latinaeo integer, + spm_only_children__black_af_american integer, + spm_only_children__black_af_american_hispanic_latinaeo integer, + spm_only_children__mid_east_n_african_hispanic_latinaeo integer, + spm_only_children__native_hi_pacific integer, + spm_only_children__native_hi_pacific_hispanic_latinaeo integer, + spm_only_children__white_hispanic_latinaeo integer, + spm_only_children__multi_racial_hispanic_latinaeo integer, + spm_only_children__returned integer, + spm_without_children_and_fifty_five_plus__am_ind_ak_native integer, + spm_nc_55__am_ind_ak_native_hispanic_latinaeo integer, + spm_nc_55__asian_hispanic_latinaeo integer, + spm_without_children_and_fifty_five_plus__black_af_american integer, + spm_nc_55__black_af_american_hispanic_latinaeo integer, + spm_nc_55__mid_east_n_african_hispanic_latinaeo integer, + spm_without_children_and_fifty_five_plus__native_hi_pacific integer, + spm_nc_55__native_hi_pacific_hispanic_latinaeo integer, + spm_nc_55__white_hispanic_latinaeo integer, + spm_nc_55__multi_racial_hispanic_latinaeo integer, + spm_nc_55__returned_to_homelessness_from_permanent_destination integer, + spm_wc_18_to_24__am_ind_ak_native integer, + spm_wc_18_to_24__am_ind_ak_native_hispanic_latinaeo integer, + spm_wc_18_to_24__asian_hispanic_latinaeo integer, + spm_wc_18_to_24__black_af_american integer, + spm_wc_18_to_24__black_af_american_hispanic_latinaeo integer, + spm_wc_18_to_24__hispanic_latinaeo integer, + spm_wc_18_to_24__mid_east_n_african integer, + spm_wc_18_to_24__mid_east_n_african_hispanic_latinaeo integer, + spm_wc_18_to_24__native_hi_pacific integer, + spm_wc_18_to_24__native_hi_pacific_hispanic_latinaeo integer, + spm_wc_18_to_24__white_hispanic_latinaeo integer, + spm_wc_18_to_24__multi_racial integer, + spm_wc_18_to_24__multi_racial_hispanic_latinaeo integer, + spm_wc_18_to_24__race_none integer, + spm_wc_18_to_24__fleeing_dv integer, + spm_wc_18_to_24__veteran integer, + spm_wc_18_to_24__has_disability integer, + spm_wc_18_to_24__has_rrh_move_in_date integer, + spm_wc_18_to_24__has_psh_move_in_date integer, + spm_wc_18_to_24__first_time_homeless integer, + spm_wc_18_to_24__returned integer +); + + +-- +-- Name: homeless_summary_report_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.homeless_summary_report_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: homeless_summary_report_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.homeless_summary_report_clients_id_seq OWNED BY public.homeless_summary_report_clients.id; + + +-- +-- Name: homeless_summary_report_results; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.homeless_summary_report_results ( + id bigint NOT NULL, + report_id bigint, + section character varying, + household_category character varying, + demographic_category character varying, + field character varying, + destination character varying, + characteristic character varying, + calculation character varying, + value double precision, + format character varying, + details jsonb, + detail_link_slug character varying, + deleted_at timestamp without time zone +); + + +-- +-- Name: homeless_summary_report_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.homeless_summary_report_results_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: homeless_summary_report_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.homeless_summary_report_results_id_seq OWNED BY public.homeless_summary_report_results.id; + + +-- +-- Name: hopwa_caper_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hopwa_caper_enrollments ( + id bigint NOT NULL, + report_instance_id bigint NOT NULL, + destination_client_id bigint NOT NULL, + enrollment_id bigint NOT NULL, + report_household_id character varying NOT NULL, + first_name character varying, + last_name character varying, + personal_id character varying NOT NULL, + age integer, + dob date, + dob_quality integer, + genders integer[], + races integer[], + veteran boolean DEFAULT false NOT NULL, + entry_date date, + exit_date date, + relationship_to_hoh integer NOT NULL, + project_funders integer[], + project_type character varying, + income_benefit_source_types character varying[], + medical_insurance_types character varying[], + hiv_positive boolean DEFAULT false NOT NULL, + hopwa_eligible boolean DEFAULT false NOT NULL, + chronically_homeless boolean DEFAULT false NOT NULL, + prior_living_situation integer, + rental_subsidy_type integer, + exit_destination integer, + housing_assessment_at_exit integer, + subsidy_information integer, + ever_prescribed_anti_retroviral_therapy boolean DEFAULT false NOT NULL, + viral_load_suppression boolean DEFAULT false NOT NULL, + percent_ami numeric +); + + +-- +-- Name: hopwa_caper_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hopwa_caper_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hopwa_caper_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hopwa_caper_enrollments_id_seq OWNED BY public.hopwa_caper_enrollments.id; + + +-- +-- Name: hopwa_caper_services; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hopwa_caper_services ( + id bigint NOT NULL, + report_instance_id bigint NOT NULL, + destination_client_id bigint NOT NULL, + enrollment_id bigint NOT NULL, + service_id bigint NOT NULL, + report_household_id character varying NOT NULL, + personal_id character varying NOT NULL, + date_provided date, + record_type integer, + type_provided integer, + fa_amount numeric +); + + +-- +-- Name: hopwa_caper_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hopwa_caper_services_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hopwa_caper_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hopwa_caper_services_id_seq OWNED BY public.hopwa_caper_services.id; + + +-- +-- Name: housing_resolution_plans; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.housing_resolution_plans ( + id bigint NOT NULL, + client_id bigint, + user_id bigint, + pronouns character varying, + planned_on date, + staff_name character varying, + location character varying, + chosen_resolution character varying, + temporary_resolution character varying, + plan_description character varying, + action_steps character varying, + backup_plan character varying, + next_checkin date, + how_to_contact character varying, + psc_attempted character varying, + psc_why_not character varying, + resolution_achieved character varying, + resolution_why_not character varying, + problem_solving_point character varying, + housing_crisis_causes jsonb, + housing_crisis_cause_other character varying, + factor_employment_income character varying, + factor_family_supports character varying, + factor_social_supports character varying, + factor_life_skills character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: housing_resolution_plans_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.housing_resolution_plans_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: housing_resolution_plans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.housing_resolution_plans_id_seq OWNED BY public.housing_resolution_plans.id; + + +-- +-- Name: hud_chronics; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_chronics ( + id integer NOT NULL, + date date, + client_id integer, + months_in_last_three_years integer, + individual boolean, + age integer, + homeless_since date, + dmh boolean, + trigger character varying, + project_names character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + days_in_last_three_years integer +); + + +-- +-- Name: hud_chronics_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_chronics_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_chronics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_chronics_id_seq OWNED BY public.hud_chronics.id; + + +-- +-- Name: hud_create_logs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_create_logs ( + id integer NOT NULL, + hud_key character varying NOT NULL, + personal_id character varying NOT NULL, + type character varying NOT NULL, + imported_at timestamp without time zone NOT NULL, + effective_date date NOT NULL, + data_source_id integer NOT NULL +); + + +-- +-- Name: hud_create_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_create_logs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_create_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_create_logs_id_seq OWNED BY public.hud_create_logs.id; + + +-- +-- Name: hud_lsa_summary_results; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_lsa_summary_results ( + id bigint NOT NULL, + hud_report_instance_id bigint, + summary jsonb, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: hud_lsa_summary_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_lsa_summary_results_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_lsa_summary_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_lsa_summary_results_id_seq OWNED BY public.hud_lsa_summary_results.id; + + +-- +-- Name: hud_report_apr_ce_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_apr_ce_assessments ( + id bigint NOT NULL, + hud_report_apr_client_id bigint, + project_id bigint, + assessment_date date, + assessment_level integer, + deleted_at timestamp without time zone +); + + +-- +-- Name: hud_report_apr_ce_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_apr_ce_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_apr_ce_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_apr_ce_assessments_id_seq OWNED BY public.hud_report_apr_ce_assessments.id; + + +-- +-- Name: hud_report_apr_ce_events; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_apr_ce_events ( + id bigint NOT NULL, + hud_report_apr_client_id bigint, + project_id bigint, + event_date date, + event integer, + problem_sol_div_rr_result integer, + referral_case_manage_after integer, + referral_result integer, + deleted_at timestamp without time zone +); + + +-- +-- Name: hud_report_apr_ce_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_apr_ce_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_apr_ce_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_apr_ce_events_id_seq OWNED BY public.hud_report_apr_ce_events.id; + + +-- +-- Name: hud_report_apr_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_apr_clients ( + id bigint NOT NULL, + age integer, + head_of_household boolean, + head_of_household_id character varying, + parenting_youth boolean, + first_date_in_program date, + last_date_in_program date, + veteran_status integer, + length_of_stay integer, + chronically_homeless boolean, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + first_name character varying, + last_name character varying, + name_quality integer, + ssn character varying, + ssn_quality integer, + dob date, + dob_quality integer, + enrollment_created date, + ethnicity integer, + gender integer, + overlapping_enrollments jsonb, + relationship_to_hoh integer, + household_id character varying, + enrollment_coc character varying, + disabling_condition integer, + developmental_disability boolean, + hiv_aids boolean, + physical_disability boolean, + chronic_disability boolean, + mental_health_problem boolean, + substance_abuse boolean, + indefinite_and_impairs boolean, + client_id integer, + data_source_id integer, + report_instance_id integer, + destination integer, + income_date_at_start date, + income_from_any_source_at_start integer, + income_sources_at_start jsonb, + annual_assessment_expected boolean, + income_date_at_annual_assessment date, + income_from_any_source_at_annual_assessment integer, + income_sources_at_annual_assessment jsonb, + income_date_at_exit date, + income_from_any_source_at_exit integer, + income_sources_at_exit jsonb, + project_type integer, + prior_living_situation integer, + prior_length_of_stay integer, + date_homeless date, + times_homeless integer, + months_homeless integer, + came_from_street_last_night integer, + exit_created date, + project_tracking_method integer, + date_of_last_bed_night date, + other_clients_over_25 boolean, + move_in_date date, + household_type character varying, + race integer, + developmental_disability_entry integer, + hiv_aids_entry integer, + physical_disability_entry integer, + chronic_disability_entry integer, + mental_health_problem_entry integer, + substance_abuse_entry integer, + alcohol_abuse_entry boolean, + drug_abuse_entry boolean, + developmental_disability_exit integer, + hiv_aids_exit integer, + physical_disability_exit integer, + chronic_disability_exit integer, + mental_health_problem_exit integer, + substance_abuse_exit integer, + alcohol_abuse_exit boolean, + drug_abuse_exit boolean, + developmental_disability_latest integer, + hiv_aids_latest integer, + physical_disability_latest integer, + chronic_disability_latest integer, + mental_health_problem_latest integer, + substance_abuse_latest integer, + alcohol_abuse_latest boolean, + drug_abuse_latest boolean, + domestic_violence integer, + currently_fleeing integer, + income_total_at_start double precision, + income_total_at_annual_assessment double precision, + income_total_at_exit double precision, + non_cash_benefits_from_any_source_at_start integer, + non_cash_benefits_from_any_source_at_annual_assessment integer, + non_cash_benefits_from_any_source_at_exit integer, + insurance_from_any_source_at_start integer, + insurance_from_any_source_at_annual_assessment integer, + insurance_from_any_source_at_exit integer, + time_to_move_in integer, + approximate_length_of_stay integer, + approximate_time_to_move_in integer, + date_to_street date, + housing_assessment integer, + subsidy_information integer, + date_of_engagement date, + household_members jsonb, + parenting_juvenile boolean, + deleted_at timestamp without time zone, + destination_client_id integer, + annual_assessment_in_window boolean, + chronically_homeless_detail character varying, + ce_assessment_date date, + ce_assessment_type integer, + ce_assessment_prioritization_status integer, + ce_event_date date, + ce_event_event integer, + ce_event_problem_sol_div_rr_result integer, + ce_event_referral_case_manage_after integer, + ce_event_referral_result integer, + gender_multi character varying, + bed_nights integer, + pit_enrollments jsonb DEFAULT '[]'::jsonb, + source_enrollment_id integer, + los_under_threshold integer, + project_id integer, + client_created_at timestamp without time zone, + personal_id character varying, + race_multi character varying, + exit_destination_subsidy_type integer, + domestic_violence_occurred integer, + translation_needed integer, + preferred_language integer, + preferred_language_different character varying, + sexual_orientation integer, + move_on_assistance_provided integer, + current_school_attend_at_entry integer, + most_recent_ed_status_at_entry integer, + current_ed_status_at_entry integer, + current_school_attend_at_exit integer, + most_recent_ed_status_at_exit integer, + current_ed_status_at_exit integer, + pay_for_success boolean DEFAULT false, + race_multi_include_race_none jsonb, + hoh_move_in_date date, + adjusted_move_in_date date +); + + +-- +-- Name: hud_report_apr_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_apr_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_apr_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_apr_clients_id_seq OWNED BY public.hud_report_apr_clients.id; + + +-- +-- Name: hud_report_apr_living_situations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_apr_living_situations ( + id bigint NOT NULL, + hud_report_apr_client_id bigint, + information_date date, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + living_situation integer, + deleted_at timestamp without time zone +); + + +-- +-- Name: hud_report_apr_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_apr_living_situations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_apr_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_apr_living_situations_id_seq OWNED BY public.hud_report_apr_living_situations.id; + + +-- +-- Name: hud_report_cells; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_cells ( + id bigint NOT NULL, + report_instance_id bigint, + question character varying NOT NULL, + cell_name character varying, + universe boolean DEFAULT false, + metadata json, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + summary json, + status character varying, + error_messages text, + deleted_at timestamp without time zone, + any_members boolean DEFAULT false NOT NULL +); + + +-- +-- Name: hud_report_cells_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_cells_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_cells_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_cells_id_seq OWNED BY public.hud_report_cells.id; + + +-- +-- Name: hud_report_dq_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_dq_clients ( + id bigint NOT NULL, + client_id integer, + data_source_id integer, + report_instance_id integer, + destination_client_id integer, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + age integer, + alcohol_abuse_entry boolean, + alcohol_abuse_exit boolean, + alcohol_abuse_latest boolean, + annual_assessment_expected boolean, + approximate_length_of_stay integer, + approximate_time_to_move_in integer, + came_from_street_last_night integer, + chronic_disability boolean, + chronic_disability_entry integer, + chronic_disability_exit integer, + chronic_disability_latest integer, + chronically_homeless boolean, + currently_fleeing integer, + date_homeless date, + date_of_engagement date, + date_of_last_bed_night date, + date_to_street date, + destination integer, + developmental_disability boolean, + developmental_disability_entry integer, + developmental_disability_exit integer, + developmental_disability_latest integer, + disabling_condition integer, + dob date, + dob_quality integer, + domestic_violence integer, + drug_abuse_entry boolean, + drug_abuse_exit boolean, + drug_abuse_latest boolean, + enrollment_coc character varying, + enrollment_created date, + ethnicity integer, + exit_created date, + first_date_in_program date, + first_name character varying, + gender integer, + head_of_household boolean, + head_of_household_id character varying, + hiv_aids boolean, + hiv_aids_entry integer, + hiv_aids_exit integer, + hiv_aids_latest integer, + household_id character varying, + household_members jsonb, + household_type character varying, + housing_assessment integer, + income_date_at_annual_assessment date, + income_date_at_exit date, + income_date_at_start date, + income_from_any_source_at_annual_assessment integer, + income_from_any_source_at_exit integer, + income_from_any_source_at_start integer, + income_sources_at_annual_assessment jsonb, + income_sources_at_exit jsonb, + income_sources_at_start jsonb, + income_total_at_annual_assessment integer, + income_total_at_exit integer, + income_total_at_start integer, + indefinite_and_impairs boolean, + insurance_from_any_source_at_annual_assessment integer, + insurance_from_any_source_at_exit integer, + insurance_from_any_source_at_start integer, + last_date_in_program date, + last_name character varying, + length_of_stay integer, + mental_health_problem boolean, + mental_health_problem_entry integer, + mental_health_problem_exit integer, + mental_health_problem_latest integer, + months_homeless integer, + move_in_date date, + name_quality integer, + non_cash_benefits_from_any_source_at_annual_assessment integer, + non_cash_benefits_from_any_source_at_exit integer, + non_cash_benefits_from_any_source_at_start integer, + other_clients_over_25 boolean, + overlapping_enrollments jsonb, + parenting_juvenil boolean, + parenting_youth boolean, + physical_disability boolean, + physical_disability_entry integer, + physical_disability_exit integer, + physical_disability_latest integer, + prior_length_of_stay integer, + prior_living_situation integer, + project_tracking_method integer, + project_type integer, + race integer, + relationship_to_hoh integer, + ssn character varying, + ssn_quality integer, + subsidy_information integer, + substance_abuse boolean, + substance_abuse_entry integer, + substance_abuse_exit integer, + substance_abuse_latest integer, + time_to_move_in integer, + times_homeless integer, + veteran_status integer, + annual_assessment_in_window boolean, + gender_multi character varying, + personal_id character varying +); + + +-- +-- Name: hud_report_dq_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_dq_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_dq_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_dq_clients_id_seq OWNED BY public.hud_report_dq_clients.id; + + +-- +-- Name: hud_report_dq_living_situations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_dq_living_situations ( + id bigint NOT NULL, + hud_report_dq_client_id bigint, + living_situation integer, + information_date date, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: hud_report_dq_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_dq_living_situations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_dq_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_dq_living_situations_id_seq OWNED BY public.hud_report_dq_living_situations.id; + + +-- +-- Name: hud_report_hic_funders; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_hic_funders ( + id bigint NOT NULL, + "FunderID" character varying, + "ProjectID" character varying, + "Funder" integer, + "OtherFunder" character varying, + "GrantID" character varying, + "StartDate" date, + "EndDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + report_instance_id integer NOT NULL, + data_source_id integer NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: hud_report_hic_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_hic_funders_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_hic_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_hic_funders_id_seq OWNED BY public.hud_report_hic_funders.id; + + +-- +-- Name: hud_report_hic_inventories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_hic_inventories ( + id bigint NOT NULL, + "InventoryID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "HouseholdType" integer, + "Availability" integer, + "UnitInventory" integer, + "BedInventory" integer, + "CHVetBedInventory" integer, + "YouthVetBedInventory" integer, + "VetBedInventory" integer, + "CHYouthBedInventory" integer, + "YouthBedInventory" integer, + "CHBedInventory" integer, + "OtherBedInventory" integer, + "ESBedType" integer, + "InventoryStartDate" date, + "InventoryEndDate" date, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + report_instance_id integer NOT NULL, + data_source_id integer NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: hud_report_hic_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_hic_inventories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_hic_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_hic_inventories_id_seq OWNED BY public.hud_report_hic_inventories.id; + + +-- +-- Name: hud_report_hic_organizations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_hic_organizations ( + id bigint NOT NULL, + "OrganizationID" character varying, + "OrganizationName" character varying, + "VictimServiceProvider" integer, + "OrganizationCommonName" character varying, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + report_instance_id integer NOT NULL, + data_source_id integer NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: hud_report_hic_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_hic_organizations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_hic_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_hic_organizations_id_seq OWNED BY public.hud_report_hic_organizations.id; + + +-- +-- Name: hud_report_hic_project_cocs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_hic_project_cocs ( + id bigint NOT NULL, + "ProjectCoCID" character varying, + "ProjectID" character varying, + "CoCCode" character varying, + "Geocode" character varying, + "Address1" character varying, + "Address2" character varying, + "City" character varying, + "State" character varying, + "Zip" character varying, + "GeographyType" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + report_instance_id integer NOT NULL, + data_source_id integer NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: hud_report_hic_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_hic_project_cocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_hic_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_hic_project_cocs_id_seq OWNED BY public.hud_report_hic_project_cocs.id; + + +-- +-- Name: hud_report_hic_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_hic_projects ( + id bigint NOT NULL, + "ProjectID" character varying, + "OrganizationID" character varying, + "ProjectName" character varying, + "ProjectCommonName" character varying, + "OperatingStartDate" date, + "OperatingEndDate" date, + "ContinuumProject" integer, + "ProjectType" integer, + "HousingType" integer, + "ResidentialAffiliation" integer, + "TrackingMethod" integer, + "HMISParticipatingProject" integer, + "TargetPopulation" integer, + "HOPWAMedAssistedLivingFac" integer, + "PITCount" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying, + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + report_instance_id integer NOT NULL, + data_source_id integer NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: hud_report_hic_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_hic_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_hic_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_hic_projects_id_seq OWNED BY public.hud_report_hic_projects.id; + + +-- +-- Name: hud_report_instances; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_instances ( + id bigint NOT NULL, + user_id bigint, + coc_code character varying, + report_name character varying, + start_date date, + end_date date, + options json, + state character varying, + started_at timestamp without time zone, + completed_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + project_ids json, + question_names json NOT NULL, + zip_file bytea, + deleted_at timestamp without time zone, + build_for_questions jsonb, + remaining_questions jsonb, + coc_codes jsonb, + manual boolean DEFAULT true NOT NULL, + failed_at timestamp without time zone, + percent_complete double precision, + export_id bigint, + type character varying DEFAULT 'HudReports::ReportInstance'::character varying NOT NULL, + error_details text +); + + +-- +-- Name: hud_report_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_instances_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_instances_id_seq OWNED BY public.hud_report_instances.id; + + +-- +-- Name: hud_report_path_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_path_clients ( + id bigint NOT NULL, + client_id bigint, + data_source_id bigint, + report_instance_id bigint, + first_name character varying, + last_name character varying, + age integer, + dob date, + dob_quality integer, + gender integer, + am_ind_ak_native integer, + asian integer, + black_af_american integer, + native_hi_other_pacific integer, + white integer, + race_none integer, + ethnicity integer, + veteran integer, + substance_use_disorder integer, + soar integer, + prior_living_situation integer, + length_of_stay integer, + chronically_homeless character varying, + domestic_violence integer, + active_client boolean, + new_client boolean, + enrolled_client boolean, + date_of_determination date, + reason_not_enrolled integer, + project_type integer, + first_date_in_program date, + last_date_in_program date, + contacts date[], + services jsonb, + referrals jsonb, + income_from_any_source_entry integer, + incomes_at_entry jsonb, + income_from_any_source_exit integer, + incomes_at_exit jsonb, + income_from_any_source_report_end integer, + incomes_at_report_end jsonb, + benefits_from_any_source_entry integer, + benefits_from_any_source_exit integer, + benefits_from_any_source_report_end integer, + insurance_from_any_source_entry integer, + insurance_from_any_source_exit integer, + insurance_from_any_source_report_end integer, + destination integer, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + gender_multi character varying, + destination_client_id integer, + personal_id character varying, + race_multi character varying, + newly_enrolled_client boolean DEFAULT false, + cmh_service_provided boolean DEFAULT false NOT NULL, + cmh_referral_provided_and_attained boolean DEFAULT false NOT NULL +); + + +-- +-- Name: hud_report_path_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_path_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_path_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_path_clients_id_seq OWNED BY public.hud_report_path_clients.id; + + +-- +-- Name: hud_report_pit_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_pit_clients ( + id bigint NOT NULL, + client_id bigint, + data_source_id bigint, + report_instance_id bigint, + first_name character varying, + last_name character varying, + destination_client_id integer, + age integer, + dob date, + household_type character varying, + max_age integer, + hoh_veteran boolean, + head_of_household boolean, + relationship_to_hoh integer, + female integer, + male integer, + no_single_gender integer, + transgender integer, + questioning integer, + gender_none integer, + pit_gender character varying, + am_ind_ak_native integer, + asian integer, + black_af_american integer, + native_hi_other_pacific integer, + white integer, + race_none integer, + pit_race character varying, + ethnicity integer, + veteran integer, + chronically_homeless boolean, + chronically_homeless_household boolean, + substance_use integer, + substance_use_indefinite_impairing integer, + domestic_violence integer, + domestic_violence_currently_fleeing integer, + hiv_aids integer, + hiv_aids_indefinite_impairing integer, + mental_illness integer, + mental_illness_indefinite_impairing integer, + project_id integer, + project_type integer, + project_name character varying, + project_hmis_pit_count integer, + entry_date date, + exit_date date, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + personal_id character varying, + hoh_age integer, + household_member_count integer, + culturally_specific integer, + different_identity integer, + non_binary integer, + more_than_one_gender boolean, + mid_east_n_african integer +); + + +-- +-- Name: hud_report_pit_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_pit_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_pit_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_pit_clients_id_seq OWNED BY public.hud_report_pit_clients.id; + + +-- +-- Name: hud_report_spm_bed_nights; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_spm_bed_nights ( + id bigint NOT NULL, + date date, + episode_id bigint, + service_id bigint, + enrollment_id bigint, + client_id bigint +); + + +-- +-- Name: hud_report_spm_bed_nights_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_spm_bed_nights_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_spm_bed_nights_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_spm_bed_nights_id_seq OWNED BY public.hud_report_spm_bed_nights.id; + + +-- +-- Name: hud_report_spm_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_spm_clients ( + id bigint NOT NULL, + client_id integer NOT NULL, + data_source_id integer NOT NULL, + report_instance_id integer NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + dob date, + first_name character varying, + last_name character varying, + m1a_es_sh_days integer, + m1a_es_sh_th_days integer, + m1b_es_sh_ph_days integer, + m1b_es_sh_th_ph_days integer, + m1_history jsonb, + m2_exit_from_project_type integer, + m2_exit_to_destination integer, + m2_reentry_days integer, + m2_history jsonb, + m3_active_project_types integer[], + m4_stayer boolean, + m4_latest_income numeric, + m4_latest_earned_income numeric, + m4_latest_non_earned_income numeric, + m4_earliest_income numeric, + m4_earliest_earned_income numeric, + m4_earliest_non_earned_income numeric, + m4_history jsonb, + m5_active_project_types integer[], + m5_recent_project_types integer[], + m5_history jsonb, + m6_exit_from_project_type integer, + m6_exit_to_destination integer, + m6_reentry_days integer, + m6c1_destination integer, + m6c2_destination integer, + m6_history jsonb, + m7a1_destination integer, + m7b1_destination integer, + m7b2_destination integer, + m7_history jsonb, + m3_history jsonb, + veteran boolean DEFAULT false NOT NULL, + m1_head_of_household boolean DEFAULT false NOT NULL, + m1_reporting_age integer, + m2_head_of_household boolean DEFAULT false NOT NULL, + m2_reporting_age integer, + m3_head_of_household boolean DEFAULT false NOT NULL, + m3_reporting_age integer, + m4_head_of_household boolean DEFAULT false NOT NULL, + m4_reporting_age integer, + m5_head_of_household boolean DEFAULT false NOT NULL, + m5_reporting_age integer, + m6_head_of_household boolean DEFAULT false NOT NULL, + m6_reporting_age integer, + m7_head_of_household boolean DEFAULT false NOT NULL, + m7_reporting_age integer, + m7b_history jsonb, + m2_project_id integer, + m3_project_id integer, + m4_project_id integer, + m5_project_id integer, + m7a1_project_id integer, + m7b_project_id integer, + personal_id character varying, + data_lab_public_id character varying, + source_client_personal_ids character varying +); + + +-- +-- Name: hud_report_spm_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_spm_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_spm_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_spm_clients_id_seq OWNED BY public.hud_report_spm_clients.id; + + +-- +-- Name: hud_report_spm_enrollment_links; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_spm_enrollment_links ( + id bigint NOT NULL, + enrollment_id bigint, + episode_id bigint +); + + +-- +-- Name: hud_report_spm_enrollment_links_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_spm_enrollment_links_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_spm_enrollment_links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_spm_enrollment_links_id_seq OWNED BY public.hud_report_spm_enrollment_links.id; + + +-- +-- Name: hud_report_spm_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_spm_enrollments ( + id bigint NOT NULL, + first_name character varying, + last_name character varying, + personal_id character varying, + data_source_id integer, + start_of_homelessness date, + entry_date date, + exit_date date, + move_in_date date, + project_type integer, + eligible_funding boolean, + prior_living_situation integer, + length_of_stay integer, + los_under_threshold boolean, + previous_street_essh boolean, + destination integer, + age integer, + previous_earned_income numeric, + previous_non_employment_income numeric, + previous_total_income numeric, + current_earned_income numeric, + current_non_employment_income numeric, + current_total_income numeric, + report_instance_id bigint, + client_id bigint, + previous_income_benefits_id bigint, + current_income_benefits_id bigint, + enrollment_id bigint, + days_enrolled integer +); + + +-- +-- Name: hud_report_spm_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_spm_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_spm_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_spm_enrollments_id_seq OWNED BY public.hud_report_spm_enrollments.id; + + +-- +-- Name: hud_report_spm_episodes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_spm_episodes ( + id bigint NOT NULL, + first_date date, + last_date date, + days_homeless integer, + literally_homeless_at_entry boolean, + client_id bigint +); + + +-- +-- Name: hud_report_spm_episodes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_spm_episodes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_spm_episodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_spm_episodes_id_seq OWNED BY public.hud_report_spm_episodes.id; + + +-- +-- Name: hud_report_spm_returns; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_spm_returns ( + id bigint NOT NULL, + exit_date date, + return_date date, + exit_destination integer, + exit_enrollment_id bigint, + return_enrollment_id bigint, + client_id bigint, + report_instance_id bigint, + days_to_return integer, + project_type integer +); + + +-- +-- Name: hud_report_spm_returns_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_spm_returns_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_spm_returns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_spm_returns_id_seq OWNED BY public.hud_report_spm_returns.id; + + +-- +-- Name: hud_report_universe_members; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.hud_report_universe_members ( + id bigint NOT NULL, + report_cell_id bigint, + universe_membership_type character varying, + universe_membership_id bigint, + client_id bigint, + first_name character varying, + last_name character varying, + deleted_at timestamp without time zone +); + + +-- +-- Name: hud_report_universe_members_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.hud_report_universe_members_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: hud_report_universe_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.hud_report_universe_members_id_seq OWNED BY public.hud_report_universe_members.id; + + +-- +-- Name: identify_duplicates_log; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.identify_duplicates_log ( + id integer NOT NULL, + started_at timestamp without time zone, + completed_at timestamp without time zone, + to_match integer, + matched integer, + new_created integer, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: identify_duplicates_log_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.identify_duplicates_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: identify_duplicates_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.identify_duplicates_log_id_seq OWNED BY public.identify_duplicates_log.id; + + +-- +-- Name: import_logs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.import_logs ( + id integer NOT NULL, + data_source_id integer, + files character varying, + import_errors text, + summary character varying, + completed_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + zip character varying, + upload_id integer, + encrypted_import_errors text, + encrypted_import_errors_iv character varying, + type character varying DEFAULT 'GrdaWarehouse::ImportLog'::character varying, + loader_log_id bigint, + importer_log_id bigint +); + + +-- +-- Name: import_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.import_logs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: import_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.import_logs_id_seq OWNED BY public.import_logs.id; + + +-- +-- Name: import_overrides; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.import_overrides ( + id bigint NOT NULL, + file_name character varying NOT NULL, + matched_hud_key character varying, + replaces_column character varying NOT NULL, + replaces_value character varying, + replacement_value character varying NOT NULL, + data_source_id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + description character varying +); + + +-- +-- Name: import_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.import_overrides_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: import_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.import_overrides_id_seq OWNED BY public.import_overrides.id; + + +-- +-- Name: inbound_api_configurations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.inbound_api_configurations ( + id bigint NOT NULL, + external_system_name character varying NOT NULL, + hashed_api_key character varying NOT NULL, + plain_text_reminder character varying NOT NULL, + version integer DEFAULT 0 NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + internal_system_id bigint +); + + +-- +-- Name: inbound_api_configurations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.inbound_api_configurations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: inbound_api_configurations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.inbound_api_configurations_id_seq OWNED BY public.inbound_api_configurations.id; + + +-- +-- Name: income_benefits_report_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.income_benefits_report_clients ( + id bigint NOT NULL, + report_id bigint NOT NULL, + client_id bigint NOT NULL, + date_range character varying NOT NULL, + first_name character varying, + middle_name character varying, + last_name character varying, + ethnicity integer, + race character varying, + dob date, + age integer, + gender integer, + household_id character varying, + head_of_household boolean, + enrollment_id bigint NOT NULL, + entry_date date, + exit_date date, + move_in_date date, + project_name character varying, + project_id bigint, + earlier_income_record_id bigint, + later_income_record_id bigint, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: income_benefits_report_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.income_benefits_report_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: income_benefits_report_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.income_benefits_report_clients_id_seq OWNED BY public.income_benefits_report_clients.id; + + +-- +-- Name: income_benefits_report_incomes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.income_benefits_report_incomes ( + id bigint NOT NULL, + report_id bigint NOT NULL, + client_id bigint NOT NULL, + income_benefits_id bigint NOT NULL, + stage character varying NOT NULL, + date_range character varying NOT NULL, + "InformationDate" date NOT NULL, + "IncomeFromAnySource" integer, + "TotalMonthlyIncome" numeric, + "Earned" integer, + "EarnedAmount" numeric, + "Unemployment" integer, + "UnemploymentAmount" numeric, + "SSI" integer, + "SSIAmount" numeric, + "SSDI" integer, + "SSDIAmount" numeric, + "VADisabilityService" integer, + "VADisabilityServiceAmount" numeric, + "VADisabilityNonService" integer, + "VADisabilityNonServiceAmount" numeric, + "PrivateDisability" integer, + "PrivateDisabilityAmount" numeric, + "WorkersComp" integer, + "WorkersCompAmount" numeric, + "TANF" integer, + "TANFAmount" numeric, + "GA" integer, + "GAAmount" numeric, + "SocSecRetirement" integer, + "SocSecRetirementAmount" numeric, + "Pension" integer, + "PensionAmount" numeric, + "ChildSupport" integer, + "ChildSupportAmount" numeric, + "Alimony" integer, + "AlimonyAmount" numeric, + "OtherIncomeSource" integer, + "OtherIncomeAmount" numeric, + "OtherIncomeSourceIdentify" character varying, + "BenefitsFromAnySource" integer, + "SNAP" integer, + "WIC" integer, + "TANFChildCare" integer, + "TANFTransportation" integer, + "OtherTANF" integer, + "OtherBenefitsSource" integer, + "OtherBenefitsSourceIdentify" character varying, + "InsuranceFromAnySource" integer, + "Medicaid" integer, + "NoMedicaidReason" integer, + "Medicare" integer, + "NoMedicareReason" integer, + "SCHIP" integer, + "NoSCHIPReason" integer, + "VAMedicalServices" integer, + "NoVAMedReason" integer, + "EmployerProvided" integer, + "NoEmployerProvidedReason" integer, + "COBRA" integer, + "NoCOBRAReason" integer, + "PrivatePay" integer, + "NoPrivatePayReason" integer, + "StateHealthIns" integer, + "NoStateHealthInsReason" integer, + "IndianHealthServices" integer, + "NoIndianHealthServicesReason" integer, + "OtherInsurance" integer, + "OtherInsuranceIdentify" character varying, + "HIVAIDSAssistance" integer, + "NoHIVAIDSAssistanceReason" integer, + "ADAP" integer, + "NoADAPReason" integer, + "ConnectionWithSOAR" integer, + "DataCollectionStage" integer +); + + +-- +-- Name: income_benefits_report_incomes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.income_benefits_report_incomes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: income_benefits_report_incomes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.income_benefits_report_incomes_id_seq OWNED BY public.income_benefits_report_incomes.id; + + +-- +-- Name: income_benefits_reports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.income_benefits_reports ( + id bigint NOT NULL, + user_id bigint, + options jsonb, + report_date_range character varying NOT NULL, + comparison_date_range character varying NOT NULL, + processing_errors character varying, + started_at timestamp without time zone, + completed_at timestamp without time zone, + failed_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: income_benefits_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.income_benefits_reports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: income_benefits_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.income_benefits_reports_id_seq OWNED BY public.income_benefits_reports.id; + + +-- +-- Name: index_stats; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.index_stats AS + WITH table_stats AS ( + SELECT psut.relname, + psut.n_live_tup, + ((1.0 * (psut.idx_scan)::numeric) / (GREATEST((1)::bigint, (psut.seq_scan + psut.idx_scan)))::numeric) AS index_use_ratio + FROM pg_stat_user_tables psut + ORDER BY psut.n_live_tup DESC + ), table_io AS ( + SELECT psiut.relname, + sum(psiut.heap_blks_read) AS table_page_read, + sum(psiut.heap_blks_hit) AS table_page_hit, + (sum(psiut.heap_blks_hit) / GREATEST((1)::numeric, (sum(psiut.heap_blks_hit) + sum(psiut.heap_blks_read)))) AS table_hit_ratio + FROM pg_statio_user_tables psiut + GROUP BY psiut.relname + ORDER BY (sum(psiut.heap_blks_read)) DESC + ), index_io AS ( + SELECT psiui.relname, + psiui.indexrelname, + sum(psiui.idx_blks_read) AS idx_page_read, + sum(psiui.idx_blks_hit) AS idx_page_hit, + ((1.0 * sum(psiui.idx_blks_hit)) / GREATEST(1.0, (sum(psiui.idx_blks_hit) + sum(psiui.idx_blks_read)))) AS idx_hit_ratio + FROM pg_statio_user_indexes psiui + GROUP BY psiui.relname, psiui.indexrelname + ORDER BY (sum(psiui.idx_blks_read)) DESC + ) + SELECT ts.relname, + ts.n_live_tup, + ts.index_use_ratio, + ti.table_page_read, + ti.table_page_hit, + ti.table_hit_ratio, + ii.indexrelname, + ii.idx_page_read, + ii.idx_page_hit, + ii.idx_hit_ratio + FROM ((table_stats ts + LEFT JOIN table_io ti ON ((ti.relname = ts.relname))) + LEFT JOIN index_io ii ON ((ii.relname = ts.relname))) + ORDER BY ti.table_page_read DESC, ii.idx_page_read DESC; + + +-- +-- Name: internal_systems; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.internal_systems ( + id bigint NOT NULL, + name character varying NOT NULL, + active boolean DEFAULT true NOT NULL, + auth_type character varying DEFAULT 'apikey'::character varying NOT NULL +); + + +-- +-- Name: internal_systems_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.internal_systems_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: internal_systems_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.internal_systems_id_seq OWNED BY public.internal_systems.id; + + +-- +-- Name: involved_in_imports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.involved_in_imports ( + id bigint NOT NULL, + importer_log_id bigint, + record_type character varying NOT NULL, + record_id bigint NOT NULL, + hud_key character varying NOT NULL, + record_action public.record_action +); + + +-- +-- Name: involved_in_imports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.involved_in_imports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: involved_in_imports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.involved_in_imports_id_seq OWNED BY public.involved_in_imports.id; + + +-- +-- Name: lftp_s3_syncs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.lftp_s3_syncs ( + id bigint NOT NULL, + data_source_id bigint NOT NULL, + ftp_host character varying NOT NULL, + ftp_user character varying NOT NULL, + encrypted_ftp_pass character varying NOT NULL, + encrypted_ftp_pass_iv character varying NOT NULL, + ftp_path character varying NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: lftp_s3_syncs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.lftp_s3_syncs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: lftp_s3_syncs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.lftp_s3_syncs_id_seq OWNED BY public.lftp_s3_syncs.id; + + +-- +-- Name: longitudinal_spm_results; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.longitudinal_spm_results ( + id bigint NOT NULL, + report_id bigint NOT NULL, + spm_id bigint NOT NULL, + start_date date, + end_date date, + measure character varying, + "table" character varying, + cell character varying, + value double precision, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: longitudinal_spm_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.longitudinal_spm_results_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: longitudinal_spm_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.longitudinal_spm_results_id_seq OWNED BY public.longitudinal_spm_results.id; + + +-- +-- Name: longitudinal_spm_spms; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.longitudinal_spm_spms ( + id bigint NOT NULL, + report_id bigint NOT NULL, + spm_id bigint NOT NULL, + start_date date, + end_date date, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: longitudinal_spm_spms_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.longitudinal_spm_spms_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: longitudinal_spm_spms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.longitudinal_spm_spms_id_seq OWNED BY public.longitudinal_spm_spms.id; + + +-- +-- Name: longitudinal_spms; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.longitudinal_spms ( + id bigint NOT NULL, + user_id bigint, + options jsonb, + processing_errors character varying, + started_at timestamp without time zone, + completed_at timestamp without time zone, + failed_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: longitudinal_spms_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.longitudinal_spms_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: longitudinal_spms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.longitudinal_spms_id_seq OWNED BY public.longitudinal_spms.id; + + +-- +-- Name: lookups_ethnicities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.lookups_ethnicities_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: lookups_ethnicities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.lookups_ethnicities_id_seq OWNED BY public.lookups_ethnicities.id; + + +-- +-- Name: lookups_funding_sources_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.lookups_funding_sources_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: lookups_funding_sources_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.lookups_funding_sources_id_seq OWNED BY public.lookups_funding_sources.id; + + +-- +-- Name: lookups_genders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.lookups_genders_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: lookups_genders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.lookups_genders_id_seq OWNED BY public.lookups_genders.id; + + +-- +-- Name: lookups_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.lookups_living_situations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: lookups_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.lookups_living_situations_id_seq OWNED BY public.lookups_living_situations.id; + + +-- +-- Name: lookups_project_types_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.lookups_project_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: lookups_project_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.lookups_project_types_id_seq OWNED BY public.lookups_project_types.id; + + +-- +-- Name: lookups_relationships_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.lookups_relationships_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: lookups_relationships_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.lookups_relationships_id_seq OWNED BY public.lookups_relationships.id; + + +-- +-- Name: lookups_tracking_methods; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.lookups_tracking_methods ( + id bigint NOT NULL, + value integer, + text character varying NOT NULL +); + + +-- +-- Name: lookups_tracking_methods_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.lookups_tracking_methods_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: lookups_tracking_methods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.lookups_tracking_methods_id_seq OWNED BY public.lookups_tracking_methods.id; + + +-- +-- Name: lookups_yes_no_etcs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.lookups_yes_no_etcs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: lookups_yes_no_etcs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.lookups_yes_no_etcs_id_seq OWNED BY public.lookups_yes_no_etcs.id; + + +-- +-- Name: lsa_rds_state_logs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.lsa_rds_state_logs ( + id bigint NOT NULL, + state character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: lsa_rds_state_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.lsa_rds_state_logs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: lsa_rds_state_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.lsa_rds_state_logs_id_seq OWNED BY public.lsa_rds_state_logs.id; + + +-- +-- Name: ma_monthly_performance_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ma_monthly_performance_enrollments ( + id bigint NOT NULL, + report_id bigint, + client_id bigint, + enrollment_id bigint, + project_id bigint, + project_coc_id bigint, + personal_id character varying, + city character varying, + coc_code character varying, + entry_date date NOT NULL, + exit_date date, + latest_for_client boolean, + chronically_homeless_at_entry boolean, + stay_length_in_days integer, + am_ind_ak_native boolean, + asian boolean, + black_af_american boolean, + native_hi_pacific boolean, + ethnicity boolean, + white boolean, + male boolean, + female boolean, + gender_other boolean, + transgender boolean, + questioning boolean, + no_single_gender boolean, + disabling_condition boolean, + reporting_age integer, + relationship_to_hoh integer, + household_id character varying, + household_type character varying, + household_members jsonb, + prior_living_situation integer, + months_homeless_past_three_years integer, + times_homeless_past_three_years integer, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + first_name character varying, + last_name character varying, + woman boolean, + man boolean, + culturally_specific boolean, + different_identity boolean, + non_binary boolean, + hispanic_latinaeo boolean, + mid_east_n_african boolean +); + + +-- +-- Name: ma_monthly_performance_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ma_monthly_performance_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ma_monthly_performance_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ma_monthly_performance_enrollments_id_seq OWNED BY public.ma_monthly_performance_enrollments.id; + + +-- +-- Name: ma_monthly_performance_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ma_monthly_performance_projects ( + id bigint NOT NULL, + report_id bigint, + project_id bigint, + project_coc_id bigint, + project_name character varying, + organization_name character varying, + coc_code character varying, + month_start date, + available_beds integer, + average_length_of_stay_in_days integer, + number_chronically_homeless_at_entry integer, + city character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + enrolled_client_count integer +); + + +-- +-- Name: ma_monthly_performance_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ma_monthly_performance_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ma_monthly_performance_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ma_monthly_performance_projects_id_seq OWNED BY public.ma_monthly_performance_projects.id; + + +-- +-- Name: ma_yya_report_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.ma_yya_report_clients ( + id bigint NOT NULL, + client_id bigint, + service_history_enrollment_id bigint, + entry_date date, + referral_source integer, + currently_homeless boolean, + at_risk_of_homelessness boolean, + initial_contact boolean, + direct_assistance boolean, + current_school_attendance integer, + current_educational_status integer, + age integer, + gender integer, + race integer, + ethnicity integer, + mental_health_disorder boolean, + substance_use_disorder boolean, + physical_disability boolean, + developmental_disability boolean, + pregnant boolean, + due_date date, + head_of_household boolean, + household_ages jsonb, + sexual_orientation integer, + most_recent_education_status integer, + health_insurance boolean, + subsequent_current_living_situations jsonb, + reported_previous_period boolean, + deleted_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + education_status_date date, + rehoused_on date, + flex_funds jsonb DEFAULT '[]'::jsonb, + zip_codes jsonb DEFAULT '[]'::jsonb, + language character varying, + followup_previous_period boolean +); + + +-- +-- Name: ma_yya_report_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.ma_yya_report_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: ma_yya_report_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.ma_yya_report_clients_id_seq OWNED BY public.ma_yya_report_clients.id; + + +-- +-- Name: new_service_history; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.new_service_history ( + id integer NOT NULL, + client_id integer NOT NULL, + data_source_id integer, + date date NOT NULL, + first_date_in_program date NOT NULL, + last_date_in_program date, + enrollment_group_id character varying(50), + age smallint, + destination integer, + head_of_household_id character varying(50), + household_id character varying(50), + project_id character varying(50), + project_name character varying(150), + project_type smallint, + project_tracking_method integer, + organization_id character varying(50), + record_type character varying(50) NOT NULL, + housing_status_at_entry integer, + housing_status_at_exit integer, + service_type smallint, + computed_project_type smallint, + presented_as_individual boolean, + other_clients_over_25 smallint DEFAULT 0 NOT NULL, + other_clients_under_18 smallint DEFAULT 0 NOT NULL, + other_clients_between_18_and_25 smallint DEFAULT 0 NOT NULL, + unaccompanied_youth boolean DEFAULT false NOT NULL, + parenting_youth boolean DEFAULT false NOT NULL, + parenting_juvenile boolean DEFAULT false NOT NULL, + children_only boolean DEFAULT false NOT NULL, + individual_adult boolean DEFAULT false NOT NULL, + individual_elder boolean DEFAULT false NOT NULL, + head_of_household boolean DEFAULT false NOT NULL +); + + +-- +-- Name: new_service_history_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.new_service_history_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: new_service_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.new_service_history_id_seq OWNED BY public.new_service_history.id; + + +-- +-- Name: nightly_census_by_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.nightly_census_by_projects ( + id integer NOT NULL, + date date NOT NULL, + project_id integer NOT NULL, + veterans integer DEFAULT 0, + non_veterans integer DEFAULT 0, + children integer DEFAULT 0, + adults integer DEFAULT 0, + youth integer DEFAULT 0, + families integer DEFAULT 0, + individuals integer DEFAULT 0, + parenting_youth integer DEFAULT 0, + parenting_juveniles integer DEFAULT 0, + all_clients integer DEFAULT 0, + beds integer DEFAULT 0, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + juveniles integer DEFAULT 0, + unaccompanied_minors integer DEFAULT 0, + youth_families integer DEFAULT 0, + family_parents integer DEFAULT 0 +); + + +-- +-- Name: nightly_census_by_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.nightly_census_by_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: nightly_census_by_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.nightly_census_by_projects_id_seq OWNED BY public.nightly_census_by_projects.id; + + +-- +-- Name: non_hmis_uploads; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.non_hmis_uploads ( + id integer NOT NULL, + data_source_id integer, + user_id integer, + delayed_job_id integer, + file character varying NOT NULL, + percent_complete double precision, + import_errors json, + content_type character varying, + content bytea, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + started_at timestamp without time zone, + completed_at timestamp without time zone, + deleted_at timestamp without time zone +); + + +-- +-- Name: non_hmis_uploads_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.non_hmis_uploads_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: non_hmis_uploads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.non_hmis_uploads_id_seq OWNED BY public.non_hmis_uploads.id; + + +-- +-- Name: organization_47_tes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.organization_47_tes ( + source_id integer +); + + +-- +-- Name: organization_48_tes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.organization_48_tes ( + source_id integer +); + + +-- +-- Name: organization_49_tes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.organization_49_tes ( + source_id integer +); + + +-- +-- Name: performance_measurement_goals; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.performance_measurement_goals ( + id bigint NOT NULL, + coc_code character varying NOT NULL, + people integer DEFAULT 3 NOT NULL, + capacity integer DEFAULT 90 NOT NULL, + time_time integer DEFAULT 90 NOT NULL, + time_stay integer DEFAULT 60 NOT NULL, + time_move_in integer DEFAULT 30 NOT NULL, + destination integer DEFAULT 85 NOT NULL, + recidivism_6_months integer DEFAULT 15 NOT NULL, + recidivism_24_months integer DEFAULT 25 NOT NULL, + income integer DEFAULT 3 NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + always_run_for_coc boolean DEFAULT false, + recidivism_12_months integer DEFAULT 20 NOT NULL, + active boolean DEFAULT true NOT NULL, + label character varying, + destination_so integer DEFAULT 85 NOT NULL, + destination_homeless_plus integer DEFAULT 85 NOT NULL, + destination_permanent integer DEFAULT 85 NOT NULL, + time_time_homeless_and_ph integer DEFAULT 90 NOT NULL, + equity_analysis_visible boolean DEFAULT false NOT NULL +); + + +-- +-- Name: performance_measurement_goals_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.performance_measurement_goals_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: performance_measurement_goals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.performance_measurement_goals_id_seq OWNED BY public.performance_measurement_goals.id; + + +-- +-- Name: performance_metrics_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.performance_metrics_clients ( + id bigint NOT NULL, + client_id bigint, + report_id bigint, + include_in_current_period boolean, + current_period_age integer, + current_period_earned_income_at_start integer, + current_period_earned_income_at_exit integer, + current_period_other_income_at_start integer, + current_period_other_income_at_exit integer, + current_caper_leaver boolean, + current_period_days_in_es integer, + current_period_days_in_rrh integer, + current_period_days_in_psh integer, + current_period_days_to_return integer, + current_period_spm_leaver boolean, + current_period_first_time boolean, + current_period_reentering boolean, + current_period_in_outflow boolean, + current_period_entering_housing boolean, + current_period_inactive boolean, + current_period_caper_id bigint, + current_period_spm_id bigint, + include_in_prior_period boolean, + prior_period_age integer, + prior_period_earned_income_at_start integer, + prior_period_earned_income_at_exit integer, + prior_period_other_income_at_start integer, + prior_period_other_income_at_exit integer, + prior_caper_leaver boolean, + prior_period_days_in_es integer, + prior_period_days_in_rrh integer, + prior_period_days_in_psh integer, + prior_period_days_to_return integer, + prior_period_spm_leaver boolean, + prior_period_first_time boolean, + prior_period_reentering boolean, + prior_period_in_outflow boolean, + prior_period_entering_housing boolean, + prior_period_inactive boolean, + prior_period_caper_id bigint, + prior_period_spm_id bigint, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + first_name character varying, + last_name character varying +); + + +-- +-- Name: performance_metrics_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.performance_metrics_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: performance_metrics_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.performance_metrics_clients_id_seq OWNED BY public.performance_metrics_clients.id; + + +-- +-- Name: places; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.places ( + id bigint NOT NULL, + location character varying NOT NULL, + lat_lon jsonb, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + city character varying, + state character varying, + zipcode character varying, + lat double precision, + lon double precision +); + + +-- +-- Name: places_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.places_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: places_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.places_id_seq OWNED BY public.places.id; + + +-- +-- Name: pm_client_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.pm_client_projects ( + id bigint NOT NULL, + client_id bigint, + project_id bigint, + deleted_at timestamp without time zone, + report_id integer, + for_question character varying, + period character varying, + household_type integer +); + + +-- +-- Name: COLUMN pm_client_projects.household_type; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.pm_client_projects.household_type IS '2.07.4'; + + +-- +-- Name: pm_client_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.pm_client_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: pm_client_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.pm_client_projects_id_seq OWNED BY public.pm_client_projects.id; + + +-- +-- Name: pm_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.pm_clients ( + id bigint NOT NULL, + report_id bigint, + client_id bigint, + dob date, + veteran boolean DEFAULT false NOT NULL, + reporting_age integer, + reporting_hoh boolean DEFAULT false NOT NULL, + reporting_stayer boolean DEFAULT false NOT NULL, + reporting_leaver boolean DEFAULT false NOT NULL, + reporting_first_time boolean DEFAULT false NOT NULL, + reporting_days_homeless_es_sh_th integer, + reporting_days_homeless_before_move_in integer, + reporting_destination integer, + reporting_days_to_return integer, + reporting_increased_income boolean DEFAULT false NOT NULL, + reporting_pit_project_id integer, + reporting_pit_project_type integer, + reporting_served_on_pit_date boolean DEFAULT false NOT NULL, + reporting_served_in_so boolean DEFAULT false NOT NULL, + reporting_current_project_types integer[], + reporting_prior_project_types integer[], + reporting_so_destination integer, + reporting_es_sh_th_rrh_destination integer, + reporting_moved_in_destination integer, + reporting_moved_in_stayer integer, + reporting_so_es_sh_th_2_yr_permanent_dest boolean DEFAULT false NOT NULL, + reporting_so_es_sh_th_return_6_mo boolean DEFAULT false NOT NULL, + reporting_so_es_sh_th_return_2_yr boolean DEFAULT false NOT NULL, + reporting_prior_living_situation integer, + reporting_prevention_tool_score integer, + reporting_ce_enrollment boolean DEFAULT false NOT NULL, + reporting_ce_diversion boolean DEFAULT false NOT NULL, + reporting_days_in_ce integer, + reporting_days_since_assessment integer, + reporting_days_ce_to_assessment integer, + reporting_days_ce_to_referral integer, + reporting_days_referral_to_ph_entry integer, + reporting_ce_assessment_score integer, + comparison_age integer, + comparison_hoh boolean DEFAULT false NOT NULL, + comparison_stayer boolean DEFAULT false NOT NULL, + comparison_leaver boolean DEFAULT false NOT NULL, + comparison_first_time boolean DEFAULT false NOT NULL, + comparison_days_homeless_es_sh_th integer, + comparison_days_homeless_before_move_in integer, + comparison_destination integer, + comparison_days_to_return integer, + comparison_increased_income boolean DEFAULT false NOT NULL, + comparison_pit_project_id integer, + comparison_pit_project_type integer, + comparison_served_on_pit_date boolean DEFAULT false NOT NULL, + comparison_served_in_so boolean DEFAULT false NOT NULL, + comparison_current_project_types integer[], + comparison_prior_project_types integer[], + comparison_so_destination integer, + comparison_es_sh_th_rrh_destination integer, + comparison_moved_in_destination integer, + comparison_moved_in_stayer integer, + comparison_so_es_sh_th_2_yr_permanent_dest boolean DEFAULT false NOT NULL, + comparison_so_es_sh_th_return_6_mo boolean DEFAULT false NOT NULL, + comparison_so_es_sh_th_return_2_yr boolean DEFAULT false NOT NULL, + comparison_prior_living_situation integer, + comparison_prevention_tool_score integer, + comparison_ce_enrollment boolean DEFAULT false NOT NULL, + comparison_ce_diversion boolean DEFAULT false NOT NULL, + comparison_days_in_ce integer, + comparison_days_since_assessment integer, + comparison_days_ce_to_assessment integer, + comparison_days_ce_to_referral integer, + comparison_days_referral_to_ph_entry integer, + comparison_ce_assessment_score integer, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + reporting_spm_id integer, + comparison_spm_id integer, + reporting_days_homeless_es_sh_th_ph integer, + reporting_income_stayer boolean, + comparison_income_stayer boolean, + reporting_income_leaver boolean, + comparison_income_leaver boolean, + reporting_served_on_pit_date_sheltered boolean DEFAULT false NOT NULL, + comparison_served_on_pit_date_sheltered boolean DEFAULT false NOT NULL, + reporting_served_on_pit_date_unsheltered boolean DEFAULT false NOT NULL, + comparison_served_on_pit_date_unsheltered boolean DEFAULT false NOT NULL, + comparison_days_homeless_es_sh_th_ph integer, + reporting_days_in_es_bed integer, + reporting_days_in_es_bed_details jsonb, + reporting_days_in_es_bed_in_period integer, + reporting_days_in_es_bed_details_in_period jsonb, + reporting_days_in_sh_bed integer, + reporting_days_in_sh_bed_details jsonb, + reporting_days_in_sh_bed_in_period integer, + reporting_days_in_sh_bed_details_in_period jsonb, + reporting_days_in_so_bed integer, + reporting_days_in_so_bed_details jsonb, + reporting_days_in_so_bed_in_period integer, + reporting_days_in_so_bed_details_in_period jsonb, + reporting_days_in_th_bed integer, + reporting_days_in_th_bed_details jsonb, + reporting_days_in_th_bed_in_period integer, + reporting_days_in_th_bed_details_in_period jsonb, + comparison_days_in_es_bed integer, + comparison_days_in_es_bed_details jsonb, + comparison_days_in_es_bed_in_period integer, + comparison_days_in_es_bed_details_in_period jsonb, + comparison_days_in_sh_bed integer, + comparison_days_in_sh_bed_details jsonb, + comparison_days_in_sh_bed_in_period integer, + comparison_days_in_sh_bed_details_in_period jsonb, + comparison_days_in_so_bed integer, + comparison_days_in_so_bed_details jsonb, + comparison_days_in_so_bed_in_period integer, + comparison_days_in_so_bed_details_in_period jsonb, + comparison_days_in_th_bed integer, + comparison_days_in_th_bed_details jsonb, + comparison_days_in_th_bed_in_period integer, + comparison_days_in_th_bed_details_in_period jsonb, + reporting_days_in_homeless_bed integer, + reporting_days_in_homeless_bed_details jsonb, + reporting_days_in_homeless_bed_in_period integer, + reporting_days_in_homeless_bed_details_in_period jsonb, + comparison_days_in_homeless_bed integer, + comparison_days_in_homeless_bed_details jsonb, + comparison_days_in_homeless_bed_in_period integer, + comparison_days_in_homeless_bed_details_in_period jsonb, + reporting_days_in_psh_bed integer, + reporting_days_in_psh_bed_details jsonb, + reporting_days_in_psh_bed_in_period integer, + reporting_days_in_psh_bed_details_in_period jsonb, + reporting_days_in_oph_bed integer, + reporting_days_in_oph_bed_details jsonb, + reporting_days_in_oph_bed_in_period integer, + reporting_days_in_oph_bed_details_in_period jsonb, + reporting_days_in_rrh_bed integer, + reporting_days_in_rrh_bed_details jsonb, + reporting_days_in_rrh_bed_in_period integer, + reporting_days_in_rrh_bed_details_in_period jsonb, + comparison_days_in_psh_bed integer, + comparison_days_in_psh_bed_details jsonb, + comparison_days_in_psh_bed_in_period integer, + comparison_days_in_psh_bed_details_in_period jsonb, + comparison_days_in_oph_bed integer, + comparison_days_in_oph_bed_details jsonb, + comparison_days_in_oph_bed_in_period integer, + comparison_days_in_oph_bed_details_in_period jsonb, + comparison_days_in_rrh_bed integer, + comparison_days_in_rrh_bed_details jsonb, + comparison_days_in_rrh_bed_in_period integer, + comparison_days_in_rrh_bed_details_in_period jsonb, + reporting_seen_in_range boolean DEFAULT false NOT NULL, + reporting_retention_or_positive_destination boolean DEFAULT false NOT NULL, + reporting_earned_income_stayer boolean DEFAULT false NOT NULL, + reporting_earned_income_leaver boolean DEFAULT false NOT NULL, + reporting_non_employment_income_stayer boolean DEFAULT false NOT NULL, + reporting_non_employment_income_leaver boolean DEFAULT false NOT NULL, + comparison_seen_in_range boolean DEFAULT false NOT NULL, + comparison_retention_or_positive_destination boolean DEFAULT false NOT NULL, + comparison_earned_income_stayer boolean DEFAULT false NOT NULL, + comparison_earned_income_leaver boolean DEFAULT false NOT NULL, + comparison_non_employment_income_stayer boolean DEFAULT false NOT NULL, + comparison_non_employment_income_leaver boolean DEFAULT false NOT NULL, + source_client_personal_ids character varying, + reporting_prior_destination integer, + comparison_prior_destination integer +); + + +-- +-- Name: pm_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.pm_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: pm_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.pm_clients_id_seq OWNED BY public.pm_clients.id; + + +-- +-- Name: pm_coc_static_spms; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.pm_coc_static_spms ( + id bigint NOT NULL, + goal_id bigint NOT NULL, + report_start date NOT NULL, + report_end date NOT NULL, + data jsonb DEFAULT '{}'::jsonb NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp(6) without time zone +); + + +-- +-- Name: pm_coc_static_spms_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.pm_coc_static_spms_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: pm_coc_static_spms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.pm_coc_static_spms_id_seq OWNED BY public.pm_coc_static_spms.id; + + +-- +-- Name: pm_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.pm_projects ( + id bigint NOT NULL, + report_id bigint, + reporting_ave_bed_capacity_per_night double precision, + reporting_ave_clients_per_night double precision, + comparison_ave_bed_capacity_per_night double precision, + comparison_ave_clients_per_night double precision, + deleted_at timestamp without time zone, + project_id integer, + period character varying +); + + +-- +-- Name: pm_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.pm_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: pm_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.pm_projects_id_seq OWNED BY public.pm_projects.id; + + +-- +-- Name: pm_results; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.pm_results ( + id bigint NOT NULL, + report_id bigint, + field character varying NOT NULL, + title character varying NOT NULL, + passed boolean DEFAULT false NOT NULL, + direction character varying, + primary_value integer, + primary_unit character varying, + secondary_value integer, + secondary_unit character varying, + value_label character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + comparison_primary_value integer, + system_level boolean DEFAULT false NOT NULL, + project_id integer, + goal double precision, + goal_progress double precision, + reporting_numerator integer, + reporting_denominator integer, + comparison_numerator integer, + comparison_denominator integer +); + + +-- +-- Name: pm_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.pm_results_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: pm_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.pm_results_id_seq OWNED BY public.pm_results.id; + + +-- +-- Name: project_access_group_members; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.project_access_group_members AS + SELECT targets.project_id, + group_viewable_entities.access_group_id + FROM (public.group_viewable_entities + JOIN ( SELECT "Project".data_source_id, + "Project".id AS project_id, + "Organization".id AS organization_id, + project_groups.id AS project_group_id + FROM (((public."Project" + LEFT JOIN public."Organization" ON ((("Organization"."DateDeleted" IS NULL) AND ("Organization".data_source_id = "Project".data_source_id) AND (("Organization"."OrganizationID")::text = ("Project"."OrganizationID")::text)))) + LEFT JOIN public.project_project_groups ON ((project_project_groups.project_id = "Project".id))) + LEFT JOIN public.project_groups ON (((project_groups.deleted_at IS NULL) AND (project_groups.id = project_project_groups.project_group_id)))) + WHERE ("Project"."DateDeleted" IS NULL)) targets ON (((group_viewable_entities.deleted_at IS NULL) AND ((((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::DataSource'::text) AND (group_viewable_entities.entity_id = targets.data_source_id)) OR (((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::Hud::Project'::text) AND (group_viewable_entities.entity_id = targets.project_id)) OR (((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::Hud::Organization'::text) AND (group_viewable_entities.entity_id = targets.organization_id)) OR ((((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::ProjectAccessGroup'::text) OR ((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::ProjectGroup'::text)) AND (group_viewable_entities.entity_id = targets.project_group_id)))))) + WHERE ((group_viewable_entities.deleted_at IS NULL) AND (group_viewable_entities.collection_id IS NULL)) + GROUP BY targets.project_id, group_viewable_entities.access_group_id; + + +-- +-- Name: project_collection_members; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.project_collection_members AS + SELECT targets.project_id, + group_viewable_entities.collection_id + FROM (public.group_viewable_entities + JOIN ( SELECT "Project".data_source_id, + "Project".id AS project_id, + "Organization".id AS organization_id, + project_groups.id AS project_group_id + FROM (((public."Project" + LEFT JOIN public."Organization" ON ((("Organization"."DateDeleted" IS NULL) AND ("Organization".data_source_id = "Project".data_source_id) AND (("Organization"."OrganizationID")::text = ("Project"."OrganizationID")::text)))) + LEFT JOIN public.project_project_groups ON ((project_project_groups.project_id = "Project".id))) + LEFT JOIN public.project_groups ON (((project_groups.deleted_at IS NULL) AND (project_groups.id = project_project_groups.project_group_id)))) + WHERE ("Project"."DateDeleted" IS NULL)) targets ON (((group_viewable_entities.deleted_at IS NULL) AND ((((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::DataSource'::text) AND (group_viewable_entities.entity_id = targets.data_source_id)) OR (((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::Hud::Project'::text) AND (group_viewable_entities.entity_id = targets.project_id)) OR (((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::Hud::Organization'::text) AND (group_viewable_entities.entity_id = targets.organization_id)) OR ((((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::ProjectAccessGroup'::text) OR ((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::ProjectGroup'::text)) AND (group_viewable_entities.entity_id = targets.project_group_id)))))) + WHERE ((group_viewable_entities.deleted_at IS NULL) AND (group_viewable_entities.collection_id IS NOT NULL)) + GROUP BY targets.project_id, group_viewable_entities.collection_id; + + +-- +-- Name: project_data_quality; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.project_data_quality ( + id integer NOT NULL, + project_id integer, + type character varying, + start date, + "end" date, + report json, + sent_at timestamp without time zone, + started_at timestamp without time zone, + completed_at timestamp without time zone, + deleted_at timestamp without time zone, + created_at timestamp without time zone, + updated_at timestamp without time zone, + processing_errors text, + project_group_id integer, + support json, + requestor_id integer, + notify_contacts boolean DEFAULT false +); + + +-- +-- Name: project_data_quality_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.project_data_quality_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: project_data_quality_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.project_data_quality_id_seq OWNED BY public.project_data_quality.id; + + +-- +-- Name: project_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.project_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: project_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.project_groups_id_seq OWNED BY public.project_groups.id; + + +-- +-- Name: project_pass_fails; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.project_pass_fails ( + id bigint NOT NULL, + user_id bigint, + options jsonb DEFAULT '{}'::jsonb, + started_at timestamp without time zone, + completed_at timestamp without time zone, + failed_at timestamp without time zone, + processing_errors text, + utilization_rate double precision, + projects_failing_universal_data_elements integer, + average_days_to_enter_entry_date double precision, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + thresholds jsonb DEFAULT '{}'::jsonb, + unit_utilization_rate double precision +); + + +-- +-- Name: project_pass_fails_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.project_pass_fails_clients ( + id bigint NOT NULL, + project_pass_fail_id bigint, + project_id bigint, + client_id bigint, + first_name character varying, + last_name character varying, + first_date_in_program date, + last_date_in_program date, + disabling_condition integer, + dob_quality integer, + dob date, + ethnicity integer, + gender integer, + name_quality integer, + race integer, + ssn_quality integer, + ssn character varying, + veteran_status integer, + relationship_to_hoh integer, + enrollment_created date, + enrollment_coc character varying, + days_to_enter_entry_date integer, + days_served integer, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + income_at_entry integer, + gender_multi character varying, + household_id character varying +); + + +-- +-- Name: project_pass_fails_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.project_pass_fails_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: project_pass_fails_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.project_pass_fails_clients_id_seq OWNED BY public.project_pass_fails_clients.id; + + +-- +-- Name: project_pass_fails_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.project_pass_fails_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: project_pass_fails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.project_pass_fails_id_seq OWNED BY public.project_pass_fails.id; + + +-- +-- Name: project_pass_fails_projects; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.project_pass_fails_projects ( + id bigint NOT NULL, + project_pass_fail_id bigint, + project_id bigint, + apr_id bigint, + available_beds double precision, + utilization_rate double precision, + name_error_rate double precision, + ssn_error_rate double precision, + race_error_rate double precision, + ethnicity_error_rate double precision, + gender_error_rate double precision, + dob_error_rate double precision, + veteran_status_error_rate double precision, + start_date_error_rate double precision, + relationship_to_hoh_error_rate double precision, + location_error_rate double precision, + disabling_condition_error_rate double precision, + utilization_count double precision, + name_error_count double precision, + ssn_error_count double precision, + race_error_count double precision, + ethnicity_error_count double precision, + gender_error_count double precision, + dob_error_count double precision, + veteran_status_error_count double precision, + start_date_error_count double precision, + relationship_to_hoh_error_count double precision, + location_error_count double precision, + disabling_condition_error_count double precision, + average_days_to_enter_entry_date double precision, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + income_at_entry_error_rate double precision, + income_at_entry_error_count integer, + available_units integer, + unit_utilization_rate double precision, + unit_utilization_count integer +); + + +-- +-- Name: project_pass_fails_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.project_pass_fails_projects_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: project_pass_fails_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.project_pass_fails_projects_id_seq OWNED BY public.project_pass_fails_projects.id; + + +-- +-- Name: project_project_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.project_project_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: project_project_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.project_project_groups_id_seq OWNED BY public.project_project_groups.id; + + +-- +-- Name: project_scorecard_reports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.project_scorecard_reports ( + id bigint NOT NULL, + project_id bigint, + project_group_id bigint, + status character varying DEFAULT 'pending'::character varying, + user_id bigint, + started_at timestamp without time zone, + completed_at timestamp without time zone, + sent_at timestamp without time zone, + deleted_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + recipient character varying, + subrecipient character varying, + start_date date, + end_date date, + funding_year character varying, + grant_term character varying, + utilization_jan integer, + utilization_apr integer, + utilization_jul integer, + utilization_oct integer, + utilization_proposed integer, + chronic_households_served integer, + total_households_served integer, + total_persons_served integer, + total_persons_with_positive_exit integer, + total_persons_exited integer, + excluded_exits integer, + average_los_leavers integer, + percent_increased_employment_income_at_exit integer, + percent_increased_other_cash_income_at_exit integer, + percent_returns_to_homelessness integer, + percent_pii_errors integer, + percent_ude_errors integer, + percent_income_and_housing_errors integer, + days_to_lease_up integer, + number_referrals integer, + accepted_referrals integer, + funds_expended integer, + amount_awarded integer, + months_since_start integer, + pit_participation boolean, + coc_meetings integer, + coc_meetings_attended integer, + improvement_plan character varying, + financial_plan character varying, + site_monitoring character varying, + total_ces_referrals integer, + accepted_ces_referrals integer, + clients_with_vispdats integer, + average_vispdat_score integer, + budget_plus_match integer, + prior_amount_awarded integer, + prior_funds_expended integer, + archive character varying, + expansion_year boolean, + special_population_only character varying, + project_less_than_two boolean, + geographic_location character varying, + apr_id bigint, + spm_id integer +); + + +-- +-- Name: project_scorecard_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.project_scorecard_reports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: project_scorecard_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.project_scorecard_reports_id_seq OWNED BY public.project_scorecard_reports.id; + + +-- +-- Name: psc_feedback_surveys; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.psc_feedback_surveys ( + id bigint NOT NULL, + client_id bigint, + user_id bigint, + conversation_on date, + location character varying, + listened_to_me character varying, + cared_about_me character varying, + knowledgeable character varying, + i_was_included character varying, + i_decided character varying, + supporting_my_needs character varying, + sensitive_to_culture character varying, + would_return character varying, + more_calm_and_control character varying, + satisfied character varying, + comments character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: psc_feedback_surveys_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.psc_feedback_surveys_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: psc_feedback_surveys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.psc_feedback_surveys_id_seq OWNED BY public.psc_feedback_surveys.id; + + +-- +-- Name: public_report_reports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.public_report_reports ( + id bigint NOT NULL, + user_id bigint, + type character varying, + start_date date, + end_date date, + filter jsonb, + state character varying, + html text, + published_url character varying, + embed_code character varying, + started_at timestamp without time zone, + completed_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + precalculated_data text, + version_slug character varying +); + + +-- +-- Name: public_report_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.public_report_reports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: public_report_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.public_report_reports_id_seq OWNED BY public.public_report_reports.id; + + +-- +-- Name: public_report_settings; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.public_report_settings ( + id bigint NOT NULL, + s3_region character varying, + s3_bucket character varying, + s3_prefix character varying, + encrypted_s3_access_key_id character varying, + encrypted_s3_access_key_id_iv character varying, + encrypted_s3_secret character varying, + encrypted_s3_secret_iv character varying, + color_0 character varying, + color_1 character varying, + color_2 character varying, + color_3 character varying, + color_4 character varying, + color_5 character varying, + color_6 character varying, + color_7 character varying, + color_8 character varying, + color_9 character varying, + color_10 character varying, + color_11 character varying, + color_12 character varying, + color_13 character varying, + color_14 character varying, + color_15 character varying, + color_16 character varying, + font_url character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + font_family_0 character varying, + font_family_1 character varying, + font_family_2 character varying, + font_family_3 character varying, + font_size_0 character varying, + font_size_1 character varying, + font_size_2 character varying, + font_size_3 character varying, + font_weight_0 character varying, + font_weight_1 character varying, + font_weight_2 character varying, + font_weight_3 character varying, + gender_color_0 character varying, + gender_color_1 character varying, + gender_color_2 character varying, + gender_color_3 character varying, + gender_color_4 character varying, + gender_color_5 character varying, + gender_color_6 character varying, + gender_color_7 character varying, + gender_color_8 character varying, + age_color_0 character varying, + age_color_1 character varying, + age_color_2 character varying, + age_color_3 character varying, + age_color_4 character varying, + age_color_5 character varying, + age_color_6 character varying, + age_color_7 character varying, + age_color_8 character varying, + household_composition_color_0 character varying, + household_composition_color_1 character varying, + household_composition_color_2 character varying, + household_composition_color_3 character varying, + household_composition_color_4 character varying, + household_composition_color_5 character varying, + household_composition_color_6 character varying, + household_composition_color_7 character varying, + household_composition_color_8 character varying, + race_color_0 character varying, + race_color_1 character varying, + race_color_2 character varying, + race_color_3 character varying, + race_color_4 character varying, + race_color_5 character varying, + race_color_6 character varying, + race_color_7 character varying, + race_color_8 character varying, + time_color_0 character varying, + time_color_1 character varying, + time_color_2 character varying, + time_color_3 character varying, + time_color_4 character varying, + time_color_5 character varying, + time_color_6 character varying, + time_color_7 character varying, + time_color_8 character varying, + housing_type_color_0 character varying, + housing_type_color_1 character varying, + housing_type_color_2 character varying, + housing_type_color_3 character varying, + housing_type_color_4 character varying, + housing_type_color_5 character varying, + housing_type_color_6 character varying, + housing_type_color_7 character varying, + housing_type_color_8 character varying, + population_color_0 character varying, + population_color_1 character varying, + population_color_2 character varying, + population_color_3 character varying, + population_color_4 character varying, + population_color_5 character varying, + population_color_6 character varying, + population_color_7 character varying, + population_color_8 character varying, + location_type_color_0 character varying, + location_type_color_1 character varying, + location_type_color_2 character varying, + location_type_color_3 character varying, + location_type_color_4 character varying, + location_type_color_5 character varying, + location_type_color_6 character varying, + location_type_color_7 character varying, + location_type_color_8 character varying, + summary_color character varying, + homeless_primary_color character varying, + youth_primary_color character varying, + adults_only_primary_color character varying, + adults_with_children_primary_color character varying, + children_only_primary_color character varying, + veterans_primary_color character varying, + map_type character varying DEFAULT 'coc'::character varying NOT NULL, + map_overall_population_method character varying DEFAULT 'state'::character varying NOT NULL, + iteration_type character varying DEFAULT 'quarter'::character varying NOT NULL +); + + +-- +-- Name: public_report_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.public_report_settings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: public_report_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.public_report_settings_id_seq OWNED BY public.public_report_settings.id; + + +-- +-- Name: published_reports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.published_reports ( + id bigint NOT NULL, + report_type character varying NOT NULL, + report_id bigint NOT NULL, + user_id bigint NOT NULL, + state character varying, + published_url character varying, + path character varying, + embed_code text, + html text, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: published_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.published_reports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: published_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.published_reports_id_seq OWNED BY public.published_reports.id; + + +-- +-- Name: recent_items; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.recent_items ( + id bigint NOT NULL, + owner_type character varying NOT NULL, + owner_id bigint NOT NULL, + item_type character varying NOT NULL, + item_id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: recent_items_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.recent_items_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: recent_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.recent_items_id_seq OWNED BY public.recent_items.id; + + +-- +-- Name: recent_report_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.recent_report_enrollments ( + "EnrollmentID" character varying(50), + "PersonalID" character varying, + "ProjectID" character varying(50), + "EntryDate" date, + "HouseholdID" character varying, + "RelationshipToHoH" integer, + "LivingSituation" integer, + "OtherResidencePrior" character varying, + "LengthOfStay" integer, + "DisablingCondition" integer, + "EntryFromStreetESSH" integer, + "DateToStreetESSH" date, + "ContinuouslyHomelessOneYear" integer, + "TimesHomelessPastThreeYears" integer, + "MonthsHomelessPastThreeYears" integer, + "MonthsHomelessThisTime" integer, + "StatusDocumented" integer, + "HousingStatus" integer, + "DateOfEngagement" date, + "InPermanentHousing" integer, + "MoveInDate" date, + "DateOfPATHStatus" date, + "ClientEnrolledInPATH" integer, + "ReasonNotEnrolled" integer, + "WorstHousingSituation" integer, + "PercentAMI" integer, + "LastPermanentStreet" character varying, + "LastPermanentCity" character varying(50), + "LastPermanentState" character varying(2), + "LastPermanentZIP" character varying(10), + "AddressDataQuality" integer, + "DateOfBCPStatus" date, + "EligibleForRHY" integer, + "ReasonNoServices" integer, + "SexualOrientation" integer, + "FormerWardChildWelfare" integer, + "ChildWelfareYears" integer, + "ChildWelfareMonths" integer, + "FormerWardJuvenileJustice" integer, + "JuvenileJusticeYears" integer, + "JuvenileJusticeMonths" integer, + "HouseholdDynamics" integer, + "SexualOrientationGenderIDYouth" integer, + "SexualOrientationGenderIDFam" integer, + "HousingIssuesYouth" integer, + "HousingIssuesFam" integer, + "SchoolEducationalIssuesYouth" integer, + "SchoolEducationalIssuesFam" integer, + "UnemploymentYouth" integer, + "UnemploymentFam" integer, + "MentalHealthIssuesYouth" integer, + "MentalHealthIssuesFam" integer, + "HealthIssuesYouth" integer, + "HealthIssuesFam" integer, + "PhysicalDisabilityYouth" integer, + "PhysicalDisabilityFam" integer, + "MentalDisabilityYouth" integer, + "MentalDisabilityFam" integer, + "AbuseAndNeglectYouth" integer, + "AbuseAndNeglectFam" integer, + "AlcoholDrugAbuseYouth" integer, + "AlcoholDrugAbuseFam" integer, + "InsufficientIncome" integer, + "ActiveMilitaryParent" integer, + "IncarceratedParent" integer, + "IncarceratedParentStatus" integer, + "ReferralSource" integer, + "CountOutreachReferralApproaches" integer, + "ExchangeForSex" integer, + "ExchangeForSexPastThreeMonths" integer, + "CountOfExchangeForSex" integer, + "AskedOrForcedToExchangeForSex" integer, + "AskedOrForcedToExchangeForSexPastThreeMonths" integer, + "WorkPlaceViolenceThreats" integer, + "WorkplacePromiseDifference" integer, + "CoercedToContinueWork" integer, + "LaborExploitPastThreeMonths" integer, + "HPScreeningScore" integer, + "VAMCStation_deleted" integer, + "DateCreated" timestamp without time zone, + "DateUpdated" timestamp without time zone, + "UserID" character varying(100), + "DateDeleted" timestamp without time zone, + "ExportID" character varying, + data_source_id integer, + id integer, + "LOSUnderThreshold" integer, + "PreviousStreetESSH" integer, + "UrgentReferral" integer, + "TimeToHousingLoss" integer, + "ZeroIncome" integer, + "AnnualPercentAMI" integer, + "FinancialChange" integer, + "HouseholdChange" integer, + "EvictionHistory" integer, + "SubsidyAtRisk" integer, + "LiteralHomelessHistory" integer, + "DisabledHoH" integer, + "CriminalRecord" integer, + "SexOffender" integer, + "DependentUnder6" integer, + "SingleParent" integer, + "HH5Plus" integer, + "IraqAfghanistan" integer, + "FemVet" integer, + "ThresholdScore" integer, + "ERVisits" integer, + "JailNights" integer, + "HospitalNights" integer, + "RunawayYouth" integer, + processed_hash character varying, + processed_as character varying, + roi_permission boolean, + last_locality character varying, + last_zipcode character varying, + source_hash character varying, + pending_date_deleted timestamp without time zone, + "SexualOrientationOther" character varying(100), + history_generated_on date, + original_household_id character varying, + service_history_processing_job_id bigint, + "MentalHealthDisorderFam" integer, + "AlcoholDrugUseDisorderFam" integer, + "ClientLeaseholder" integer, + "HOHLeasesholder" integer, + "IncarceratedAdult" integer, + "PrisonDischarge" integer, + "CurrentPregnant" integer, + "CoCPrioritized" integer, + "TargetScreenReqd" integer, + "HOHLeaseholder" integer, + "EnrollmentCoC" character varying, + "RentalSubsidyType" integer, + "TranslationNeeded" integer, + "PreferredLanguage" integer, + "PreferredLanguageDifferent" character varying, + "VAMCStation" character varying, + "LivingSituation2022" integer, + demographic_id integer, + client_id integer +); + + +-- +-- Name: recent_service_history; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.recent_service_history ( + id bigint, + client_id integer, + data_source_id integer, + date date, + first_date_in_program date, + last_date_in_program date, + enrollment_group_id character varying(50), + age smallint, + destination integer, + head_of_household_id character varying(50), + household_id character varying(50), + project_id integer, + project_type smallint, + project_tracking_method integer, + organization_id integer, + "LivingSituation" integer, + "HousingAssessment" integer, + service_type smallint, + presented_as_individual boolean +); + + +-- +-- Name: recurring_hmis_export_links; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.recurring_hmis_export_links ( + id integer NOT NULL, + hmis_export_id integer, + recurring_hmis_export_id integer, + exported_at date +); + + +-- +-- Name: recurring_hmis_export_links_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.recurring_hmis_export_links_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: recurring_hmis_export_links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.recurring_hmis_export_links_id_seq OWNED BY public.recurring_hmis_export_links.id; + + +-- +-- Name: recurring_hmis_exports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.recurring_hmis_exports ( + id integer NOT NULL, + every_n_days integer, + reporting_range character varying, + reporting_range_days integer, + user_id integer, + project_ids character varying, + created_at timestamp without time zone, + updated_at timestamp without time zone, + s3_region character varying, + s3_bucket character varying, + s3_prefix character varying, + encrypted_s3_access_key_id character varying, + encrypted_s3_access_key_id_iv character varying, + encrypted_s3_secret character varying, + encrypted_s3_secret_iv character varying, + deleted_at timestamp without time zone, + encrypted_zip_password character varying, + encrypted_zip_password_iv character varying, + encryption_type character varying, + options jsonb +); + + +-- +-- Name: recurring_hmis_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.recurring_hmis_exports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: recurring_hmis_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.recurring_hmis_exports_id_seq OWNED BY public.recurring_hmis_exports.id; + + +-- +-- Name: remote_configs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.remote_configs ( + id bigint NOT NULL, + type character varying NOT NULL, + remote_credential_id bigint, + active boolean DEFAULT false, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: remote_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.remote_configs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: remote_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.remote_configs_id_seq OWNED BY public.remote_configs.id; + + +-- +-- Name: remote_credentials; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.remote_credentials ( + id bigint NOT NULL, + type character varying NOT NULL, + active boolean DEFAULT false, + username character varying NOT NULL, + encrypted_password character varying NOT NULL, + encrypted_password_iv character varying, + region character varying, + bucket character varying, + path character varying, + endpoint character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone, + additional_headers jsonb DEFAULT '{}'::jsonb, + slug character varying +); + + +-- +-- Name: COLUMN remote_credentials.username; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.remote_credentials.username IS 'username or equivalent eg. s3_access_key_id'; + + +-- +-- Name: COLUMN remote_credentials.encrypted_password; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.remote_credentials.encrypted_password IS 'password or equivalent eg. s3_secret_access_key'; + + +-- +-- Name: remote_credentials_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.remote_credentials_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: remote_credentials_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.remote_credentials_id_seq OWNED BY public.remote_credentials.id; + + +-- +-- Name: report_definitions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.report_definitions ( + id integer NOT NULL, + report_group character varying, + url text, + name text, + description text, + weight integer DEFAULT 0 NOT NULL, + enabled boolean DEFAULT true NOT NULL, + limitable boolean DEFAULT true NOT NULL, + health boolean DEFAULT false, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: report_definitions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.report_definitions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: report_definitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.report_definitions_id_seq OWNED BY public.report_definitions.id; + + +-- +-- Name: report_disabilities; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.report_disabilities AS + SELECT "Disabilities"."DisabilitiesID", + "Disabilities"."EnrollmentID" AS "ProjectEntryID", + "Disabilities"."PersonalID", + "Disabilities"."InformationDate", + "Disabilities"."DisabilityType", + "Disabilities"."DisabilityResponse", + "Disabilities"."IndefiniteAndImpairs", + "Disabilities"."DocumentationOnFile", + "Disabilities"."ReceivingServices", + "Disabilities"."PATHHowConfirmed", + "Disabilities"."PATHSMIInformation", + "Disabilities"."TCellCountAvailable", + "Disabilities"."TCellCount", + "Disabilities"."TCellSource", + "Disabilities"."ViralLoadAvailable", + "Disabilities"."ViralLoad", + "Disabilities"."ViralLoadSource", + "Disabilities"."DataCollectionStage", + "Disabilities"."DateCreated", + "Disabilities"."DateUpdated", + "Disabilities"."UserID", + "Disabilities"."DateDeleted", + "Disabilities"."ExportID", + "Disabilities".data_source_id, + "Disabilities".id, + "Enrollment".id AS enrollment_id, + source_clients.id AS demographic_id, + destination_clients.id AS client_id + FROM ((((public."Disabilities" + JOIN public."Client" source_clients ON ((("Disabilities".data_source_id = source_clients.data_source_id) AND (("Disabilities"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) + JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) + JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) + JOIN public."Enrollment" ON ((("Disabilities".data_source_id = "Enrollment".data_source_id) AND (("Disabilities"."PersonalID")::text = ("Enrollment"."PersonalID")::text) AND (("Disabilities"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Enrollment"."DateDeleted" IS NULL)))) + WHERE ("Disabilities"."DateDeleted" IS NULL); + + +-- +-- Name: report_employment_educations; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.report_employment_educations AS + SELECT "EmploymentEducation"."EmploymentEducationID", + "EmploymentEducation"."EnrollmentID" AS "ProjectEntryID", + "EmploymentEducation"."PersonalID", + "EmploymentEducation"."InformationDate", + "EmploymentEducation"."LastGradeCompleted", + "EmploymentEducation"."SchoolStatus", + "EmploymentEducation"."Employed", + "EmploymentEducation"."EmploymentType", + "EmploymentEducation"."NotEmployedReason", + "EmploymentEducation"."DataCollectionStage", + "EmploymentEducation"."DateCreated", + "EmploymentEducation"."DateUpdated", + "EmploymentEducation"."UserID", + "EmploymentEducation"."DateDeleted", + "EmploymentEducation"."ExportID", + "EmploymentEducation".data_source_id, + "EmploymentEducation".id, + "Enrollment".id AS enrollment_id, + source_clients.id AS demographic_id, + destination_clients.id AS client_id + FROM ((((public."EmploymentEducation" + JOIN public."Client" source_clients ON ((("EmploymentEducation".data_source_id = source_clients.data_source_id) AND (("EmploymentEducation"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) + JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) + JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) + JOIN public."Enrollment" ON ((("EmploymentEducation".data_source_id = "Enrollment".data_source_id) AND (("EmploymentEducation"."PersonalID")::text = ("Enrollment"."PersonalID")::text) AND (("EmploymentEducation"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Enrollment"."DateDeleted" IS NULL)))) + WHERE ("EmploymentEducation"."DateDeleted" IS NULL); + + +-- +-- Name: report_enrollments; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.report_enrollments AS + SELECT "Enrollment"."EnrollmentID" AS "ProjectEntryID", + "Enrollment"."PersonalID", + "Enrollment"."ProjectID", + "Enrollment"."EntryDate", + "Enrollment"."HouseholdID", + "Enrollment"."RelationshipToHoH", + "Enrollment"."LivingSituation" AS "ResidencePrior", + "Enrollment"."OtherResidencePrior", + "Enrollment"."LengthOfStay" AS "ResidencePriorLengthOfStay", + "Enrollment"."DisablingCondition", + "Enrollment"."EntryFromStreetESSH", + "Enrollment"."DateToStreetESSH", + "Enrollment"."ContinuouslyHomelessOneYear", + "Enrollment"."TimesHomelessPastThreeYears", + "Enrollment"."MonthsHomelessPastThreeYears", + "Enrollment"."MonthsHomelessThisTime", + "Enrollment"."StatusDocumented", + "Enrollment"."HousingStatus", + "Enrollment"."DateOfEngagement", + "Enrollment"."InPermanentHousing", + "Enrollment"."MoveInDate" AS "ResidentialMoveInDate", + "Enrollment"."DateOfPATHStatus", + "Enrollment"."ClientEnrolledInPATH", + "Enrollment"."ReasonNotEnrolled", + "Enrollment"."WorstHousingSituation", + "Enrollment"."PercentAMI", + "Enrollment"."LastPermanentStreet", + "Enrollment"."LastPermanentCity", + "Enrollment"."LastPermanentState", + "Enrollment"."LastPermanentZIP", + "Enrollment"."AddressDataQuality", + "Enrollment"."DateOfBCPStatus", + "Enrollment"."EligibleForRHY" AS "FYSBYouth", + "Enrollment"."ReasonNoServices", + "Enrollment"."SexualOrientation", + "Enrollment"."FormerWardChildWelfare", + "Enrollment"."ChildWelfareYears", + "Enrollment"."ChildWelfareMonths", + "Enrollment"."FormerWardJuvenileJustice", + "Enrollment"."JuvenileJusticeYears", + "Enrollment"."JuvenileJusticeMonths", + "Enrollment"."HouseholdDynamics", + "Enrollment"."SexualOrientationGenderIDYouth", + "Enrollment"."SexualOrientationGenderIDFam", + "Enrollment"."HousingIssuesYouth", + "Enrollment"."HousingIssuesFam", + "Enrollment"."SchoolEducationalIssuesYouth", + "Enrollment"."SchoolEducationalIssuesFam", + "Enrollment"."UnemploymentYouth", + "Enrollment"."UnemploymentFam", + "Enrollment"."MentalHealthIssuesYouth", + "Enrollment"."MentalHealthIssuesFam", + "Enrollment"."HealthIssuesYouth", + "Enrollment"."HealthIssuesFam", + "Enrollment"."PhysicalDisabilityYouth", + "Enrollment"."PhysicalDisabilityFam", + "Enrollment"."MentalDisabilityYouth", + "Enrollment"."MentalDisabilityFam", + "Enrollment"."AbuseAndNeglectYouth", + "Enrollment"."AbuseAndNeglectFam", + "Enrollment"."AlcoholDrugAbuseYouth", + "Enrollment"."AlcoholDrugAbuseFam", + "Enrollment"."InsufficientIncome", + "Enrollment"."ActiveMilitaryParent", + "Enrollment"."IncarceratedParent", + "Enrollment"."IncarceratedParentStatus", + "Enrollment"."ReferralSource", + "Enrollment"."CountOutreachReferralApproaches", + "Enrollment"."ExchangeForSex", + "Enrollment"."ExchangeForSexPastThreeMonths", + "Enrollment"."CountOfExchangeForSex", + "Enrollment"."AskedOrForcedToExchangeForSex", + "Enrollment"."AskedOrForcedToExchangeForSexPastThreeMonths", + "Enrollment"."WorkPlaceViolenceThreats", + "Enrollment"."WorkplacePromiseDifference", + "Enrollment"."CoercedToContinueWork", + "Enrollment"."LaborExploitPastThreeMonths", + "Enrollment"."HPScreeningScore", + "Enrollment"."VAMCStation_deleted" AS "VAMCStation", + "Enrollment"."DateCreated", + "Enrollment"."DateUpdated", + "Enrollment"."UserID", + "Enrollment"."DateDeleted", + "Enrollment"."ExportID", + "Enrollment".data_source_id, + "Enrollment".id, + "Enrollment"."LOSUnderThreshold", + "Enrollment"."PreviousStreetESSH", + "Enrollment"."UrgentReferral", + "Enrollment"."TimeToHousingLoss", + "Enrollment"."ZeroIncome", + "Enrollment"."AnnualPercentAMI", + "Enrollment"."FinancialChange", + "Enrollment"."HouseholdChange", + "Enrollment"."EvictionHistory", + "Enrollment"."SubsidyAtRisk", + "Enrollment"."LiteralHomelessHistory", + "Enrollment"."DisabledHoH", + "Enrollment"."CriminalRecord", + "Enrollment"."SexOffender", + "Enrollment"."DependentUnder6", + "Enrollment"."SingleParent", + "Enrollment"."HH5Plus", + "Enrollment"."IraqAfghanistan", + "Enrollment"."FemVet", + "Enrollment"."ThresholdScore", + "Enrollment"."ERVisits", + "Enrollment"."JailNights", + "Enrollment"."HospitalNights", + "Enrollment"."RunawayYouth", + "Enrollment".processed_hash, + source_clients.id AS demographic_id, + destination_clients.id AS client_id + FROM (((public."Enrollment" + JOIN public."Client" source_clients ON ((("Enrollment".data_source_id = source_clients.data_source_id) AND (("Enrollment"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) + JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) + JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) + WHERE ("Enrollment"."DateDeleted" IS NULL); + + +-- +-- Name: report_exits; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.report_exits AS + SELECT "Exit"."ExitID", + "Exit"."EnrollmentID" AS "ProjectEntryID", + "Exit"."PersonalID", + "Exit"."ExitDate", + "Exit"."Destination", + "Exit"."OtherDestination", + "Exit"."AssessmentDisposition", + "Exit"."OtherDisposition", + "Exit"."HousingAssessment", + "Exit"."SubsidyInformation", + "Exit"."ConnectionWithSOAR", + "Exit"."WrittenAftercarePlan", + "Exit"."AssistanceMainstreamBenefits", + "Exit"."PermanentHousingPlacement", + "Exit"."TemporaryShelterPlacement", + "Exit"."ExitCounseling", + "Exit"."FurtherFollowUpServices", + "Exit"."ScheduledFollowUpContacts", + "Exit"."ResourcePackage", + "Exit"."OtherAftercarePlanOrAction", + "Exit"."ProjectCompletionStatus", + "Exit"."EarlyExitReason", + "Exit"."FamilyReunificationAchieved", + "Exit"."DateCreated", + "Exit"."DateUpdated", + "Exit"."UserID", + "Exit"."DateDeleted", + "Exit"."ExportID", + "Exit".data_source_id, + "Exit".id, + "Exit"."ExchangeForSex", + "Exit"."ExchangeForSexPastThreeMonths", + "Exit"."CountOfExchangeForSex", + "Exit"."AskedOrForcedToExchangeForSex", + "Exit"."AskedOrForcedToExchangeForSexPastThreeMonths", + "Exit"."WorkPlaceViolenceThreats", + "Exit"."WorkplacePromiseDifference", + "Exit"."CoercedToContinueWork", + "Exit"."LaborExploitPastThreeMonths", + "Exit"."CounselingReceived", + "Exit"."IndividualCounseling", + "Exit"."FamilyCounseling", + "Exit"."GroupCounseling", + "Exit"."SessionCountAtExit", + "Exit"."PostExitCounselingPlan", + "Exit"."SessionsInPlan", + "Exit"."DestinationSafeClient", + "Exit"."DestinationSafeWorker", + "Exit"."PosAdultConnections", + "Exit"."PosPeerConnections", + "Exit"."PosCommunityConnections", + "Exit"."AftercareDate", + "Exit"."AftercareProvided", + "Exit"."EmailSocialMedia", + "Exit"."Telephone", + "Exit"."InPersonIndividual", + "Exit"."InPersonGroup", + "Exit"."CMExitReason", + "Enrollment".id AS enrollment_id, + source_clients.id AS demographic_id, + destination_clients.id AS client_id + FROM ((((public."Exit" + JOIN public."Client" source_clients ON ((("Exit".data_source_id = source_clients.data_source_id) AND (("Exit"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) + JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) + JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) + JOIN public."Enrollment" ON ((("Exit".data_source_id = "Enrollment".data_source_id) AND (("Exit"."PersonalID")::text = ("Enrollment"."PersonalID")::text) AND (("Exit"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Enrollment"."DateDeleted" IS NULL)))) + WHERE ("Exit"."DateDeleted" IS NULL); + + +-- +-- Name: report_health_and_dvs; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.report_health_and_dvs AS + SELECT "HealthAndDV"."HealthAndDVID", + "HealthAndDV"."EnrollmentID" AS "ProjectEntryID", + "HealthAndDV"."PersonalID", + "HealthAndDV"."InformationDate", + "HealthAndDV"."DomesticViolenceVictim", + "HealthAndDV"."WhenOccurred", + "HealthAndDV"."CurrentlyFleeing", + "HealthAndDV"."GeneralHealthStatus", + "HealthAndDV"."DentalHealthStatus", + "HealthAndDV"."MentalHealthStatus", + "HealthAndDV"."PregnancyStatus", + "HealthAndDV"."DueDate", + "HealthAndDV"."DataCollectionStage", + "HealthAndDV"."DateCreated", + "HealthAndDV"."DateUpdated", + "HealthAndDV"."UserID", + "HealthAndDV"."DateDeleted", + "HealthAndDV"."ExportID", + "HealthAndDV".data_source_id, + "HealthAndDV".id, + "Enrollment".id AS enrollment_id, + source_clients.id AS demographic_id, + destination_clients.id AS client_id + FROM ((((public."HealthAndDV" + JOIN public."Client" source_clients ON ((("HealthAndDV".data_source_id = source_clients.data_source_id) AND (("HealthAndDV"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) + JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) + JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) + JOIN public."Enrollment" ON ((("HealthAndDV".data_source_id = "Enrollment".data_source_id) AND (("HealthAndDV"."PersonalID")::text = ("Enrollment"."PersonalID")::text) AND (("HealthAndDV"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Enrollment"."DateDeleted" IS NULL)))) + WHERE ("HealthAndDV"."DateDeleted" IS NULL); + + +-- +-- Name: report_income_benefits; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.report_income_benefits AS + SELECT "IncomeBenefits"."IncomeBenefitsID", + "IncomeBenefits"."EnrollmentID" AS "ProjectEntryID", + "IncomeBenefits"."PersonalID", + "IncomeBenefits"."InformationDate", + "IncomeBenefits"."IncomeFromAnySource", + "IncomeBenefits"."TotalMonthlyIncome", + "IncomeBenefits"."Earned", + "IncomeBenefits"."EarnedAmount", + "IncomeBenefits"."Unemployment", + "IncomeBenefits"."UnemploymentAmount", + "IncomeBenefits"."SSI", + "IncomeBenefits"."SSIAmount", + "IncomeBenefits"."SSDI", + "IncomeBenefits"."SSDIAmount", + "IncomeBenefits"."VADisabilityService", + "IncomeBenefits"."VADisabilityServiceAmount", + "IncomeBenefits"."VADisabilityNonService", + "IncomeBenefits"."VADisabilityNonServiceAmount", + "IncomeBenefits"."PrivateDisability", + "IncomeBenefits"."PrivateDisabilityAmount", + "IncomeBenefits"."WorkersComp", + "IncomeBenefits"."WorkersCompAmount", + "IncomeBenefits"."TANF", + "IncomeBenefits"."TANFAmount", + "IncomeBenefits"."GA", + "IncomeBenefits"."GAAmount", + "IncomeBenefits"."SocSecRetirement", + "IncomeBenefits"."SocSecRetirementAmount", + "IncomeBenefits"."Pension", + "IncomeBenefits"."PensionAmount", + "IncomeBenefits"."ChildSupport", + "IncomeBenefits"."ChildSupportAmount", + "IncomeBenefits"."Alimony", + "IncomeBenefits"."AlimonyAmount", + "IncomeBenefits"."OtherIncomeSource", + "IncomeBenefits"."OtherIncomeAmount", + "IncomeBenefits"."OtherIncomeSourceIdentify", + "IncomeBenefits"."BenefitsFromAnySource", + "IncomeBenefits"."SNAP", + "IncomeBenefits"."WIC", + "IncomeBenefits"."TANFChildCare", + "IncomeBenefits"."TANFTransportation", + "IncomeBenefits"."OtherTANF", + "IncomeBenefits"."RentalAssistanceOngoing", + "IncomeBenefits"."RentalAssistanceTemp", + "IncomeBenefits"."OtherBenefitsSource", + "IncomeBenefits"."OtherBenefitsSourceIdentify", + "IncomeBenefits"."InsuranceFromAnySource", + "IncomeBenefits"."Medicaid", + "IncomeBenefits"."NoMedicaidReason", + "IncomeBenefits"."Medicare", + "IncomeBenefits"."NoMedicareReason", + "IncomeBenefits"."SCHIP", + "IncomeBenefits"."NoSCHIPReason", + "IncomeBenefits"."VAMedicalServices", + "IncomeBenefits"."NoVAMedReason", + "IncomeBenefits"."EmployerProvided", + "IncomeBenefits"."NoEmployerProvidedReason", + "IncomeBenefits"."COBRA", + "IncomeBenefits"."NoCOBRAReason", + "IncomeBenefits"."PrivatePay", + "IncomeBenefits"."NoPrivatePayReason", + "IncomeBenefits"."StateHealthIns", + "IncomeBenefits"."NoStateHealthInsReason", + "IncomeBenefits"."HIVAIDSAssistance", + "IncomeBenefits"."NoHIVAIDSAssistanceReason", + "IncomeBenefits"."ADAP", + "IncomeBenefits"."NoADAPReason", + "IncomeBenefits"."DataCollectionStage", + "IncomeBenefits"."DateCreated", + "IncomeBenefits"."DateUpdated", + "IncomeBenefits"."UserID", + "IncomeBenefits"."DateDeleted", + "IncomeBenefits"."ExportID", + "IncomeBenefits".data_source_id, + "IncomeBenefits".id, + "IncomeBenefits"."IndianHealthServices", + "IncomeBenefits"."NoIndianHealthServicesReason", + "IncomeBenefits"."OtherInsurance", + "IncomeBenefits"."OtherInsuranceIdentify", + "IncomeBenefits"."ConnectionWithSOAR", + "Enrollment".id AS enrollment_id, + source_clients.id AS demographic_id, + destination_clients.id AS client_id + FROM ((((public."IncomeBenefits" + JOIN public."Client" source_clients ON ((("IncomeBenefits".data_source_id = source_clients.data_source_id) AND (("IncomeBenefits"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) + JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) + JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) + JOIN public."Enrollment" ON ((("IncomeBenefits".data_source_id = "Enrollment".data_source_id) AND (("IncomeBenefits"."PersonalID")::text = ("Enrollment"."PersonalID")::text) AND (("IncomeBenefits"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Enrollment"."DateDeleted" IS NULL)))) + WHERE ("IncomeBenefits"."DateDeleted" IS NULL); + + +-- +-- Name: report_services; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.report_services AS + SELECT "Services"."ServicesID", + "Services"."EnrollmentID" AS "ProjectEntryID", + "Services"."PersonalID", + "Services"."DateProvided", + "Services"."RecordType", + "Services"."TypeProvided", + "Services"."OtherTypeProvided", + "Services"."SubTypeProvided", + "Services"."FAAmount", + "Services"."ReferralOutcome", + "Services"."DateCreated", + "Services"."DateUpdated", + "Services"."UserID", + "Services"."DateDeleted", + "Services"."ExportID", + "Services".data_source_id, + "Services".id, + "Enrollment".id AS enrollment_id, + source_clients.id AS demographic_id, + destination_clients.id AS client_id + FROM ((((public."Services" + JOIN public."Client" source_clients ON ((("Services".data_source_id = source_clients.data_source_id) AND (("Services"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) + JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) + JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) + JOIN public."Enrollment" ON ((("Services".data_source_id = "Enrollment".data_source_id) AND (("Services"."PersonalID")::text = ("Enrollment"."PersonalID")::text) AND (("Services"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Enrollment"."DateDeleted" IS NULL)))) + WHERE ("Services"."DateDeleted" IS NULL); + + +-- +-- Name: report_tokens; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.report_tokens ( + id integer NOT NULL, + report_id integer NOT NULL, + contact_id integer NOT NULL, + token character varying NOT NULL, + expires_at timestamp without time zone NOT NULL, + accessed_at timestamp without time zone, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +-- +-- Name: report_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.report_tokens_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: report_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.report_tokens_id_seq OWNED BY public.report_tokens.id; + + +-- +-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.schema_migrations ( + version character varying NOT NULL +); + + +-- +-- Name: secure_files; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.secure_files ( + id integer NOT NULL, + name character varying, + file character varying, + content_type character varying, + content bytea, + size integer, + sender_id integer, + recipient_id integer, + created_at timestamp without time zone, + updated_at timestamp without time zone, + deleted_at timestamp without time zone +); + + +-- +-- Name: secure_files_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.secure_files_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: secure_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.secure_files_id_seq OWNED BY public.secure_files.id; + + +-- +-- Name: service_history_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_enrollments ( + id bigint NOT NULL, + client_id integer NOT NULL, + data_source_id integer, + date date NOT NULL, + first_date_in_program date NOT NULL, + last_date_in_program date, + enrollment_group_id character varying(50), + project_id character varying(50), + age smallint, + destination integer, + head_of_household_id character varying(50), + household_id character varying(50), + project_name character varying, + project_type smallint, + project_tracking_method integer, + organization_id character varying(50), + record_type character varying(50) NOT NULL, + housing_status_at_entry integer, + housing_status_at_exit integer, + service_type smallint, + computed_project_type smallint, + presented_as_individual boolean, + other_clients_over_25 smallint DEFAULT 0 NOT NULL, + other_clients_under_18 smallint DEFAULT 0 NOT NULL, + other_clients_between_18_and_25 smallint DEFAULT 0 NOT NULL, + unaccompanied_youth boolean DEFAULT false NOT NULL, + parenting_youth boolean DEFAULT false NOT NULL, + parenting_juvenile boolean DEFAULT false NOT NULL, + children_only boolean DEFAULT false NOT NULL, + individual_adult boolean DEFAULT false NOT NULL, + individual_elder boolean DEFAULT false NOT NULL, + head_of_household boolean DEFAULT false NOT NULL, + move_in_date date, + unaccompanied_minor boolean DEFAULT false +); + + +-- +-- Name: service_history_services_was_for_inheritance; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_was_for_inheritance ( + id bigint NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.service_history_services_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: service_history_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.service_history_services_id_seq OWNED BY public.service_history_services_was_for_inheritance.id; + + +-- +-- Name: service_history_services; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +) +PARTITION BY RANGE (date); + + +-- +-- Name: service_history; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.service_history AS + SELECT service_history_services.id, + service_history_services.client_id, + service_history_enrollments.data_source_id, + service_history_services.date, + service_history_enrollments.first_date_in_program, + service_history_enrollments.last_date_in_program, + service_history_enrollments.enrollment_group_id, + service_history_enrollments.project_id, + service_history_services.age, + service_history_enrollments.destination, + service_history_enrollments.head_of_household_id, + service_history_enrollments.household_id, + service_history_enrollments.project_name, + service_history_services.project_type, + service_history_enrollments.project_tracking_method, + service_history_enrollments.organization_id, + service_history_services.record_type, + service_history_enrollments.housing_status_at_entry, + service_history_enrollments.housing_status_at_exit, + service_history_services.service_type, + service_history_enrollments.computed_project_type, + service_history_enrollments.presented_as_individual, + service_history_enrollments.other_clients_over_25, + service_history_enrollments.other_clients_under_18, + service_history_enrollments.other_clients_between_18_and_25, + service_history_enrollments.unaccompanied_youth, + service_history_enrollments.parenting_youth, + service_history_enrollments.parenting_juvenile, + service_history_enrollments.children_only, + service_history_enrollments.individual_adult, + service_history_enrollments.individual_elder, + service_history_enrollments.head_of_household + FROM (public.service_history_services + JOIN public.service_history_enrollments ON ((service_history_services.service_history_enrollment_id = service_history_enrollments.id))) +UNION + SELECT service_history_enrollments.id, + service_history_enrollments.client_id, + service_history_enrollments.data_source_id, + service_history_enrollments.date, + service_history_enrollments.first_date_in_program, + service_history_enrollments.last_date_in_program, + service_history_enrollments.enrollment_group_id, + service_history_enrollments.project_id, + service_history_enrollments.age, + service_history_enrollments.destination, + service_history_enrollments.head_of_household_id, + service_history_enrollments.household_id, + service_history_enrollments.project_name, + service_history_enrollments.project_type, + service_history_enrollments.project_tracking_method, + service_history_enrollments.organization_id, + service_history_enrollments.record_type, + service_history_enrollments.housing_status_at_entry, + service_history_enrollments.housing_status_at_exit, + service_history_enrollments.service_type, + service_history_enrollments.computed_project_type, + service_history_enrollments.presented_as_individual, + service_history_enrollments.other_clients_over_25, + service_history_enrollments.other_clients_under_18, + service_history_enrollments.other_clients_between_18_and_25, + service_history_enrollments.unaccompanied_youth, + service_history_enrollments.parenting_youth, + service_history_enrollments.parenting_juvenile, + service_history_enrollments.children_only, + service_history_enrollments.individual_adult, + service_history_enrollments.individual_elder, + service_history_enrollments.head_of_household + FROM public.service_history_enrollments; + + +-- +-- Name: service_history_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.service_history_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: service_history_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.service_history_enrollments_id_seq OWNED BY public.service_history_enrollments.id; + + +-- +-- Name: service_history_services_2000; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2000 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2001; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2001 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2002; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2002 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2003; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2003 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2004; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2004 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2005; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2005 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2006; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2006 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2007; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2007 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2008; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2008 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2009; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2009 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2010; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2010 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2011; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2011 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2012; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2012 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2013; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2013 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2014; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2014 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2015; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2015 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2016; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2016 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2017; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2017 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2018; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2018 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2019; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2019 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2020; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2020 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2021; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2021 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2022; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2022 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2023; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2023 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2024; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2024 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2025; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2025 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2026; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2026 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2027; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2027 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2028; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2028 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2029; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2029 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2030; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2030 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2031; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2031 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2032; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2032 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2033; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2033 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2034; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2034 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2035; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2035 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2036; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2036 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2037; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2037 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2038; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2038 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2039; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2039 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2040; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2040 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2041; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2041 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2042; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2042 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2043; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2043 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2044; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2044 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2045; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2045 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2046; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2046 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2047; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2047 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2048; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2048 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2049; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2049 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_2050; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_2050 ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_history_services_materialized; Type: MATERIALIZED VIEW; Schema: public; Owner: - +-- + +CREATE MATERIALIZED VIEW public.service_history_services_materialized AS + SELECT id, + service_history_enrollment_id, + record_type, + date, + age, + service_type, + client_id, + project_type, + homeless, + literally_homeless + FROM public.service_history_services + WITH NO DATA; + + +-- +-- Name: service_history_services_remainder; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_history_services_remainder ( + id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, + service_history_enrollment_id integer NOT NULL, + record_type character varying(50) NOT NULL, + date date NOT NULL, + age smallint, + service_type smallint, + client_id integer, + project_type smallint, + homeless boolean, + literally_homeless boolean +); + + +-- +-- Name: service_scanning_scanner_ids; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_scanning_scanner_ids ( + id bigint NOT NULL, + client_id bigint NOT NULL, + source_type character varying NOT NULL, + scanned_id character varying NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: service_scanning_scanner_ids_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.service_scanning_scanner_ids_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: service_scanning_scanner_ids_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.service_scanning_scanner_ids_id_seq OWNED BY public.service_scanning_scanner_ids.id; + + +-- +-- Name: service_scanning_services; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.service_scanning_services ( + id bigint NOT NULL, + client_id bigint NOT NULL, + project_id bigint NOT NULL, + user_id bigint NOT NULL, + type character varying NOT NULL, + other_type character varying, + provided_at timestamp without time zone, + note character varying, + created_at timestamp without time zone, + updated_at timestamp without time zone, + deleted_at timestamp without time zone +); + + +-- +-- Name: service_scanning_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.service_scanning_services_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: service_scanning_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.service_scanning_services_id_seq OWNED BY public.service_scanning_services.id; + + +-- +-- Name: shape_block_groups; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.shape_block_groups ( + id bigint NOT NULL, + statefp character varying, + countyfp character varying, + tractce character varying, + blkgrpce character varying, + geoid character varying, + namelsad character varying, + mtfcc character varying, + funcstat character varying, + aland double precision, + awater double precision, + intptlat character varying, + intptlon character varying, + full_geoid character varying, + simplified_geom public.geometry(MultiPolygon,4326), + geom public.geometry(MultiPolygon,4326) +); + + +-- +-- Name: shape_block_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.shape_block_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: shape_block_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.shape_block_groups_id_seq OWNED BY public.shape_block_groups.id; + + +-- +-- Name: shape_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.shape_cocs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: shape_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.shape_cocs_id_seq OWNED BY public.shape_cocs.id; + + +-- +-- Name: shape_counties_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.shape_counties_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: shape_counties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.shape_counties_id_seq OWNED BY public.shape_counties.id; + + +-- +-- Name: shape_places; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.shape_places ( + id bigint NOT NULL, + statefp character varying, + placefp character varying, + placens character varying, + full_geoid character varying, + geoid character varying, + name character varying, + namelsad character varying, + lsad character varying, + classfp character varying, + pcicbsa character varying, + pcinecta character varying, + mtfcc character varying, + funcstat character varying, + aland double precision, + awater double precision, + intptlat character varying, + intptlon character varying, + simplified_geom public.geometry(MultiPolygon,4326), + geom public.geometry(MultiPolygon,4326) +); + + +-- +-- Name: shape_places_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.shape_places_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: shape_places_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.shape_places_id_seq OWNED BY public.shape_places.id; + + +-- +-- Name: shape_states_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.shape_states_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: shape_states_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.shape_states_id_seq OWNED BY public.shape_states.id; + + +-- +-- Name: shape_towns; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.shape_towns ( + id bigint NOT NULL, + statefp character varying, + fy integer, + town_id integer, + town character varying, + shape_area numeric, + shape_len numeric, + full_geoid character varying, + geoid character varying, + simplified_geom public.geometry(MultiPolygon,4326), + geom public.geometry(MultiPolygon,4326) +); + + +-- +-- Name: shape_towns_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.shape_towns_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: shape_towns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.shape_towns_id_seq OWNED BY public.shape_towns.id; + + +-- +-- Name: shape_zip_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.shape_zip_codes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: shape_zip_codes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.shape_zip_codes_id_seq OWNED BY public.shape_zip_codes.id; + + +-- +-- Name: simple_report_cells; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.simple_report_cells ( + id bigint NOT NULL, + report_instance_id bigint, + name character varying, + universe boolean DEFAULT false, + summary integer, + deleted_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + structured_data jsonb +); + + +-- +-- Name: simple_report_cells_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.simple_report_cells_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: simple_report_cells_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.simple_report_cells_id_seq OWNED BY public.simple_report_cells.id; + + +-- +-- Name: simple_report_instances; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.simple_report_instances ( + id bigint NOT NULL, + type character varying, + options json, + user_id bigint, + deleted_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + started_at timestamp without time zone, + completed_at timestamp without time zone, + failed_at timestamp without time zone, + goal_configuration_id bigint, + path character varying +); + + +-- +-- Name: simple_report_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.simple_report_instances_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: simple_report_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.simple_report_instances_id_seq OWNED BY public.simple_report_instances.id; + + +-- +-- Name: simple_report_universe_members; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.simple_report_universe_members ( + id bigint NOT NULL, + report_cell_id bigint, + universe_membership_type character varying, + universe_membership_id bigint, + client_id bigint, + first_name character varying, + last_name character varying, + deleted_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: simple_report_universe_members_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.simple_report_universe_members_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: simple_report_universe_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.simple_report_universe_members_id_seq OWNED BY public.simple_report_universe_members.id; + + +-- +-- Name: synthetic_assessments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.synthetic_assessments ( + id bigint NOT NULL, + enrollment_id bigint, + client_id bigint, + type character varying, + source_type character varying, + source_id bigint, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + hud_assessment_assessment_id character varying +); + + +-- +-- Name: synthetic_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.synthetic_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: synthetic_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.synthetic_assessments_id_seq OWNED BY public.synthetic_assessments.id; + + +-- +-- Name: synthetic_ce_assessment_project_configs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.synthetic_ce_assessment_project_configs ( + id bigint NOT NULL, + project_id bigint NOT NULL, + active boolean DEFAULT false NOT NULL, + assessment_type integer NOT NULL, + assessment_level integer NOT NULL, + prioritization_status integer NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: synthetic_ce_assessment_project_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.synthetic_ce_assessment_project_configs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: synthetic_ce_assessment_project_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.synthetic_ce_assessment_project_configs_id_seq OWNED BY public.synthetic_ce_assessment_project_configs.id; + + +-- +-- Name: synthetic_events; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.synthetic_events ( + id bigint NOT NULL, + enrollment_id bigint, + client_id bigint, + type character varying, + source_type character varying, + source_id bigint, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + hud_event_event_id character varying, + calculated_referral_result integer, + calculated_referral_date date +); + + +-- +-- Name: synthetic_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.synthetic_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: synthetic_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.synthetic_events_id_seq OWNED BY public.synthetic_events.id; + + +-- +-- Name: synthetic_youth_education_statuses; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.synthetic_youth_education_statuses ( + id bigint NOT NULL, + enrollment_id bigint, + client_id bigint, + type character varying, + source_type character varying, + source_id bigint, + hud_youth_education_status_youth_education_status_id character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: synthetic_youth_education_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.synthetic_youth_education_statuses_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: synthetic_youth_education_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.synthetic_youth_education_statuses_id_seq OWNED BY public.synthetic_youth_education_statuses.id; + + +-- +-- Name: system_colors; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.system_colors ( + id bigint NOT NULL, + slug character varying NOT NULL, + background_color character varying NOT NULL, + foreground_color character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: system_colors_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.system_colors_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: system_colors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.system_colors_id_seq OWNED BY public.system_colors.id; + + +-- +-- Name: system_pathways_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.system_pathways_clients ( + id bigint NOT NULL, + client_id bigint, + first_name character varying, + last_name character varying, + personal_ids character varying, + dob date, + age integer, + am_ind_ak_native boolean, + asian boolean, + black_af_american boolean, + native_hi_pacific boolean, + white boolean, + ethnicity integer, + male boolean, + female boolean, + gender_other boolean, + transgender boolean, + questioning boolean, + no_single_gender boolean, + veteran_status integer, + involves_ce boolean, + system boolean, + destination integer, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + destination_homeless boolean DEFAULT false, + destination_temporary boolean DEFAULT false, + destination_institutional boolean DEFAULT false, + destination_other boolean DEFAULT false, + destination_permanent boolean DEFAULT false, + returned_project_type integer, + returned_project_name character varying, + returned_project_entry_date date, + returned_project_enrollment_id bigint, + returned_project_project_id bigint, + report_id bigint, + deleted_at timestamp without time zone, + days_to_return integer, + ce_assessment boolean DEFAULT false NOT NULL, + woman boolean, + man boolean, + culturally_specific boolean, + different_identity boolean, + non_binary boolean, + hispanic_latinaeo boolean, + mid_east_n_african boolean +); + + +-- +-- Name: system_pathways_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.system_pathways_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: system_pathways_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.system_pathways_clients_id_seq OWNED BY public.system_pathways_clients.id; + + +-- +-- Name: system_pathways_enrollments; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.system_pathways_enrollments ( + id bigint NOT NULL, + client_id bigint NOT NULL, + from_project_type integer, + project_id bigint NOT NULL, + enrollment_id bigint NOT NULL, + project_type integer NOT NULL, + destination integer, + project_name character varying, + entry_date date, + exit_date date, + stay_length integer, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + relationship_to_hoh integer, + household_id character varying, + household_type character varying, + report_id bigint, + deleted_at timestamp without time zone, + final_enrollment boolean DEFAULT false NOT NULL, + move_in_date date, + days_to_move_in integer, + days_to_exit_after_move_in integer, + chronic_at_entry boolean, + disabling_condition integer +); + + +-- +-- Name: COLUMN system_pathways_enrollments.from_project_type; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.system_pathways_enrollments.from_project_type IS 'null for System'; + + +-- +-- Name: COLUMN system_pathways_enrollments.destination; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.system_pathways_enrollments.destination IS 'Only stored for final enrollment'; + + +-- +-- Name: system_pathways_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.system_pathways_enrollments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: system_pathways_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.system_pathways_enrollments_id_seq OWNED BY public.system_pathways_enrollments.id; + + +-- +-- Name: taggings; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.taggings ( + id integer NOT NULL, + tag_id integer, + taggable_id integer, + taggable_type character varying, + tagger_id integer, + tagger_type character varying, + context character varying(128), + created_at timestamp without time zone +); + + +-- +-- Name: taggings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.taggings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: taggings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.taggings_id_seq OWNED BY public.taggings.id; + + +-- +-- Name: tags; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.tags ( + id integer NOT NULL, + name character varying, + taggings_count integer DEFAULT 0 +); + + +-- +-- Name: tags_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.tags_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.tags_id_seq OWNED BY public.tags.id; + + +-- +-- Name: talentlms_completed_trainings; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.talentlms_completed_trainings ( + id bigint NOT NULL, + login_id bigint NOT NULL, + config_id bigint NOT NULL, + completion_date date NOT NULL, + course_id bigint +); + + +-- +-- Name: talentlms_completed_trainings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.talentlms_completed_trainings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: talentlms_completed_trainings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.talentlms_completed_trainings_id_seq OWNED BY public.talentlms_completed_trainings.id; + + +-- +-- Name: talentlms_configs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.talentlms_configs ( + id bigint NOT NULL, + subdomain character varying, + encrypted_api_key character varying, + encrypted_api_key_iv character varying, + create_new_accounts boolean DEFAULT true, + allow_automatic_redirect_to_course boolean DEFAULT true +); + + +-- +-- Name: talentlms_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.talentlms_configs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: talentlms_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.talentlms_configs_id_seq OWNED BY public.talentlms_configs.id; + + +-- +-- Name: talentlms_courses; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.talentlms_courses ( + id bigint NOT NULL, + config_id bigint, + courseid integer, + months_to_expiration integer, + name character varying, + "default" boolean DEFAULT false, + start_date date, + end_date date +); + + +-- +-- Name: talentlms_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.talentlms_courses_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: talentlms_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.talentlms_courses_id_seq OWNED BY public.talentlms_courses.id; + + +-- +-- Name: talentlms_logins; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.talentlms_logins ( + id bigint NOT NULL, + user_id bigint, + login character varying, + encrypted_password character varying, + encrypted_password_iv character varying, + lms_user_id integer, + config_id bigint +); + + +-- +-- Name: talentlms_logins_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.talentlms_logins_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: talentlms_logins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.talentlms_logins_id_seq OWNED BY public.talentlms_logins.id; + + +-- +-- Name: temp_export_enrollment_186s_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.temp_export_enrollment_186s_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: temp_export_enrollment_186s; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.temp_export_enrollment_186s ( + id bigint DEFAULT nextval('public.temp_export_enrollment_186s_id_seq'::regclass) NOT NULL, + source_id integer +); + + +-- +-- Name: temp_export_enrollment_187s_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.temp_export_enrollment_187s_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: temp_export_enrollment_187s; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.temp_export_enrollment_187s ( + id bigint DEFAULT nextval('public.temp_export_enrollment_187s_id_seq'::regclass) NOT NULL, + source_id integer +); + + +-- +-- Name: temp_export_enrollment_189s_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.temp_export_enrollment_189s_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: temp_export_enrollment_189s; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.temp_export_enrollment_189s ( + id bigint DEFAULT nextval('public.temp_export_enrollment_189s_id_seq'::regclass) NOT NULL, + source_id integer +); + + +-- +-- Name: temp_export_enrollment_222s_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.temp_export_enrollment_222s_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: temp_export_enrollment_222s; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.temp_export_enrollment_222s ( + id bigint DEFAULT nextval('public.temp_export_enrollment_222s_id_seq'::regclass) NOT NULL, + source_id integer +); + + +-- +-- Name: temp_export_exit_188s_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.temp_export_exit_188s_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: temp_export_exit_188s; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.temp_export_exit_188s ( + id bigint DEFAULT nextval('public.temp_export_exit_188s_id_seq'::regclass) NOT NULL, + source_id integer +); + + +-- +-- Name: text_message_messages; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.text_message_messages ( + id bigint NOT NULL, + topic_id bigint, + subscriber_id bigint, + send_on_or_after date, + sent_at timestamp without time zone, + sent_to character varying, + content character varying, + source_id integer, + source_type character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + delivery_status character varying +); + + +-- +-- Name: text_message_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.text_message_messages_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: text_message_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.text_message_messages_id_seq OWNED BY public.text_message_messages.id; + + +-- +-- Name: text_message_topic_subscribers; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.text_message_topic_subscribers ( + id bigint NOT NULL, + topic_id bigint, + subscribed_at timestamp without time zone, + unsubscribed_at timestamp without time zone, + first_name character varying, + last_name character varying, + phone_number character varying, + preferred_language character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + client_id integer +); + + +-- +-- Name: text_message_topic_subscribers_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.text_message_topic_subscribers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: text_message_topic_subscribers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.text_message_topic_subscribers_id_seq OWNED BY public.text_message_topic_subscribers.id; + + +-- +-- Name: text_message_topics; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.text_message_topics ( + id bigint NOT NULL, + arn character varying, + title character varying, + active_topic boolean DEFAULT true NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + send_hour integer +); + + +-- +-- Name: text_message_topics_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.text_message_topics_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: text_message_topics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.text_message_topics_id_seq OWNED BY public.text_message_topics.id; + + +-- +-- Name: themes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.themes ( + id bigint NOT NULL, + client character varying NOT NULL, + hmis_origin character varying, + hmis_value jsonb, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + remote_credential_id bigint, + css_file_contents text, + scss_file_contents text +); + + +-- +-- Name: themes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.themes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: themes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.themes_id_seq OWNED BY public.themes.id; + + +-- +-- Name: todd_stats; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.todd_stats AS + SELECT relname, + round(( + CASE + WHEN ((n_live_tup + n_dead_tup) = 0) THEN (0)::double precision + ELSE ((n_dead_tup)::double precision / ((n_dead_tup + n_live_tup))::double precision) + END * (100.0)::double precision)) AS "Frag %", + n_live_tup AS "Live rows", + n_dead_tup AS "Dead rows", + n_mod_since_analyze AS "Rows modified since analyze", + CASE + WHEN (COALESCE(last_vacuum, '1999-01-01 00:00:00+00'::timestamp with time zone) > COALESCE(last_autovacuum, '1999-01-01 00:00:00+00'::timestamp with time zone)) THEN last_vacuum + ELSE COALESCE(last_autovacuum, '1999-01-01 00:00:00+00'::timestamp with time zone) + END AS last_vacuum, + CASE + WHEN (COALESCE(last_analyze, '1999-01-01 00:00:00+00'::timestamp with time zone) > COALESCE(last_autoanalyze, '1999-01-01 00:00:00+00'::timestamp with time zone)) THEN last_analyze + ELSE COALESCE(last_autoanalyze, '1999-01-01 00:00:00+00'::timestamp with time zone) + END AS last_analyze, + (vacuum_count + autovacuum_count) AS vacuum_count, + (analyze_count + autoanalyze_count) AS analyze_count + FROM pg_stat_all_tables + WHERE (schemaname <> ALL (ARRAY['pg_toast'::name, 'information_schema'::name, 'pg_catalog'::name])); + + +-- +-- Name: tx_research_exports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.tx_research_exports ( + id bigint NOT NULL, + user_id bigint, + export_id bigint, + options jsonb DEFAULT '{}'::jsonb, + started_at timestamp without time zone, + completed_at timestamp without time zone, + failed_at timestamp without time zone, + processing_errors text, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: tx_research_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.tx_research_exports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: tx_research_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.tx_research_exports_id_seq OWNED BY public.tx_research_exports.id; + + +-- +-- Name: uploads; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.uploads ( + id integer NOT NULL, + data_source_id integer, + user_id integer, + file character varying NOT NULL, + percent_complete double precision, + unzipped_path character varying, + unzipped_files json, + summary json, + import_errors json, + content_type character varying, + content bytea, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + started_at timestamp without time zone, + completed_at timestamp without time zone, + deleted_at timestamp without time zone, + delayed_job_id integer, + deidentified boolean DEFAULT false, + project_whitelist boolean DEFAULT false, + encrypted_content text, + encrypted_content_iv character varying +); + + +-- +-- Name: uploads_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.uploads_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: uploads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.uploads_id_seq OWNED BY public.uploads.id; + + +-- +-- Name: user_client_permissions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.user_client_permissions ( + id bigint NOT NULL, + user_id integer NOT NULL, + client_id integer NOT NULL, + viewable boolean DEFAULT false, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: user_client_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.user_client_permissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: user_client_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.user_client_permissions_id_seq OWNED BY public.user_client_permissions.id; + + +-- +-- Name: user_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.user_clients ( + id integer NOT NULL, + user_id integer NOT NULL, + client_id integer NOT NULL, + confidential boolean DEFAULT false NOT NULL, + relationship character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + start_date date, + end_date date, + client_notifications boolean DEFAULT false +); + + +-- +-- Name: user_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.user_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: user_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.user_clients_id_seq OWNED BY public.user_clients.id; + + +-- +-- Name: user_viewable_entities; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.user_viewable_entities ( + id integer NOT NULL, + user_id integer NOT NULL, + entity_id integer NOT NULL, + entity_type character varying NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: user_viewable_entities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.user_viewable_entities_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: user_viewable_entities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.user_viewable_entities_id_seq OWNED BY public.user_viewable_entities.id; + + +-- +-- Name: va_check_histories; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.va_check_histories ( + id bigint NOT NULL, + client_id bigint, + response character varying, + check_date date, + user_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +-- +-- Name: va_check_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.va_check_histories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: va_check_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.va_check_histories_id_seq OWNED BY public.va_check_histories.id; + + +-- +-- Name: verification_sources; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.verification_sources ( + id integer NOT NULL, + client_id integer, + location character varying, + created_at timestamp without time zone, + updated_at timestamp without time zone, + verified_at timestamp without time zone, + type character varying +); + + +-- +-- Name: verification_sources_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.verification_sources_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: verification_sources_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.verification_sources_id_seq OWNED BY public.verification_sources.id; + + +-- +-- Name: versions; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.versions ( + id bigint NOT NULL, + item_type character varying NOT NULL, + item_id bigint NOT NULL, + event character varying NOT NULL, + whodunnit character varying, + object jsonb, + object_changes jsonb, + created_at timestamp without time zone, + session_id character varying, + request_id character varying, + user_id bigint, + referenced_user_id bigint, + referenced_entity_name character varying, + migrated_app_version_id bigint, + true_user_id bigint, + client_id bigint, + enrollment_id bigint, + project_id bigint +); + + +-- +-- Name: COLUMN versions.migrated_app_version_id; Type: COMMENT; Schema: public; Owner: - +-- + +COMMENT ON COLUMN public.versions.migrated_app_version_id IS 'app database version record'; + + +-- +-- Name: versions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.versions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: versions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.versions_id_seq OWNED BY public.versions.id; + + +-- +-- Name: vispdats; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.vispdats ( + id integer NOT NULL, + client_id integer, + nickname character varying, + language_answer integer, + hiv_release boolean, + sleep_answer integer, + sleep_answer_other character varying, + homeless integer, + homeless_refused boolean, + episodes_homeless integer, + episodes_homeless_refused boolean, + emergency_healthcare integer, + emergency_healthcare_refused boolean, + ambulance integer, + ambulance_refused boolean, + inpatient integer, + inpatient_refused boolean, + crisis_service integer, + crisis_service_refused boolean, + talked_to_police integer, + talked_to_police_refused boolean, + jail integer, + jail_refused boolean, + attacked_answer integer, + threatened_answer integer, + legal_answer integer, + tricked_answer integer, + risky_answer integer, + owe_money_answer integer, + get_money_answer integer, + activities_answer integer, + basic_needs_answer integer, + abusive_answer integer, + leave_answer integer, + chronic_answer integer, + hiv_answer integer, + disability_answer integer, + avoid_help_answer integer, + pregnant_answer integer, + eviction_answer integer, + drinking_answer integer, + mental_answer integer, + head_answer integer, + learning_answer integer, + brain_answer integer, + medication_answer integer, + sell_answer integer, + trauma_answer integer, + find_location character varying, + find_time character varying, + when_answer integer, + phone character varying, + email character varying, + picture_answer integer, + score integer, + recommendation character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + submitted_at timestamp without time zone, + homeless_period integer, + release_signed_on date, + drug_release boolean, + migrated_case_manager character varying, + migrated_interviewer_name character varying, + migrated_interviewer_email character varying, + migrated_filed_by character varying, + migrated boolean DEFAULT false NOT NULL, + housing_release_confirmed boolean DEFAULT false, + user_id integer, + priority_score integer, + active boolean DEFAULT false, + type character varying DEFAULT 'GrdaWarehouse::Vispdat::Individual'::character varying, + marijuana_answer integer, + incarcerated_before_18_answer integer, + homeless_due_to_ran_away_answer integer, + homeless_due_to_religions_beliefs_answer integer, + homeless_due_to_family_answer integer, + homeless_due_to_gender_identity_answer integer, + violence_between_family_members_answer integer, + parent2_none boolean DEFAULT false, + parent2_first_name character varying, + parent2_nickname character varying, + parent2_last_name character varying, + parent2_language_answer character varying, + parent2_dob date, + parent2_ssn character varying, + parent2_release_signed_on date, + parent2_drug_release boolean DEFAULT false, + parent2_hiv_release boolean DEFAULT false, + number_of_children_under_18_with_family integer, + number_of_children_under_18_with_family_refused boolean DEFAULT false, + number_of_children_under_18_not_with_family integer, + number_of_children_under_18_not_with_family_refused boolean DEFAULT false, + any_member_pregnant_answer integer, + family_member_tri_morbidity_answer integer, + any_children_removed_answer integer, + any_family_legal_issues_answer integer, + any_children_lived_with_family_answer integer, + any_child_abuse_answer integer, + children_attend_school_answer integer, + family_members_changed_answer integer, + other_family_members_answer integer, + planned_family_activities_answer integer, + time_spent_alone_13_answer integer, + time_spent_alone_12_answer integer, + time_spent_helping_siblings_answer integer, + number_of_bedrooms integer DEFAULT 0, + contact_method character varying +); + + +-- +-- Name: vispdats_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.vispdats_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: vispdats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.vispdats_id_seq OWNED BY public.vispdats.id; + + +-- +-- Name: warehouse_client_service_history; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.warehouse_client_service_history ( + id integer NOT NULL, + client_id integer NOT NULL, + data_source_id integer, + date date NOT NULL, + first_date_in_program date NOT NULL, + last_date_in_program date, + enrollment_group_id character varying(50), + age integer, + destination integer, + head_of_household_id character varying(50), + household_id character varying(50), + project_id character varying(50), + project_name character varying(150), + project_type integer, + project_tracking_method integer, + organization_id character varying(50), + record_type character varying(50) NOT NULL, + housing_status_at_entry integer, + housing_status_at_exit integer, + service_type integer, + computed_project_type integer, + presented_as_individual boolean, + other_clients_over_25 integer DEFAULT 0 NOT NULL, + other_clients_under_18 integer DEFAULT 0 NOT NULL, + other_clients_between_18_and_25 integer DEFAULT 0 NOT NULL, + unaccompanied_youth boolean DEFAULT false NOT NULL, + parenting_youth boolean DEFAULT false NOT NULL, + parenting_juvenile boolean DEFAULT false NOT NULL, + children_only boolean DEFAULT false NOT NULL, + individual_adult boolean DEFAULT false NOT NULL, + individual_elder boolean DEFAULT false NOT NULL, + head_of_household boolean DEFAULT false NOT NULL +); + + +-- +-- Name: warehouse_client_service_history_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.warehouse_client_service_history_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: warehouse_client_service_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.warehouse_client_service_history_id_seq OWNED BY public.warehouse_client_service_history.id; + + +-- +-- Name: warehouse_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.warehouse_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: warehouse_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.warehouse_clients_id_seq OWNED BY public.warehouse_clients.id; + + +-- +-- Name: warehouse_clients_processed; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.warehouse_clients_processed ( + id integer NOT NULL, + client_id integer, + routine character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + last_service_updated_at timestamp without time zone, + days_served integer, + first_date_served date, + last_date_served date, + first_homeless_date date, + last_homeless_date date, + homeless_days integer, + first_chronic_date date, + last_chronic_date date, + chronic_days integer, + days_homeless_last_three_years integer, + literally_homeless_last_three_years integer, + enrolled_homeless_shelter boolean, + enrolled_homeless_unsheltered boolean, + enrolled_permanent_housing boolean, + eto_coordinated_entry_assessment_score integer, + household_members character varying, + last_homeless_visit character varying, + open_enrollments jsonb, + rrh_desired boolean, + vispdat_priority_score integer, + vispdat_score integer, + active_in_cas_match boolean DEFAULT false, + last_exit_destination character varying, + last_cas_match_date timestamp without time zone, + lgbtq_from_hmis character varying, + days_homeless_plus_overrides integer, + cohorts_ongoing_enrollments_es jsonb, + cohorts_ongoing_enrollments_sh jsonb, + cohorts_ongoing_enrollments_th jsonb, + cohorts_ongoing_enrollments_so jsonb, + cohorts_ongoing_enrollments_psh jsonb, + cohorts_ongoing_enrollments_rrh jsonb, + last_intentional_contacts character varying +); + + +-- +-- Name: warehouse_clients_processed_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.warehouse_clients_processed_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: warehouse_clients_processed_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.warehouse_clients_processed_id_seq OWNED BY public.warehouse_clients_processed.id; + + +-- +-- Name: warehouse_reports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.warehouse_reports ( + id integer NOT NULL, + parameters json, + data json, + type character varying, + started_at timestamp without time zone, + finished_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + client_count integer, + support json, + token character varying, + user_id integer, + deleted_at timestamp without time zone +); + + +-- +-- Name: warehouse_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.warehouse_reports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: warehouse_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.warehouse_reports_id_seq OWNED BY public.warehouse_reports.id; + + +-- +-- Name: weather; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.weather ( + id integer NOT NULL, + url character varying NOT NULL, + body text NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +-- +-- Name: weather_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.weather_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: weather_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.weather_id_seq OWNED BY public.weather.id; + + +-- +-- Name: whitelisted_projects_for_clients; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.whitelisted_projects_for_clients ( + id integer NOT NULL, + data_source_id integer NOT NULL, + "ProjectID" character varying NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +-- +-- Name: whitelisted_projects_for_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.whitelisted_projects_for_clients_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: whitelisted_projects_for_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.whitelisted_projects_for_clients_id_seq OWNED BY public.whitelisted_projects_for_clients.id; + + +-- +-- Name: youth_case_managements; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.youth_case_managements ( + id integer NOT NULL, + client_id integer, + user_id integer, + engaged_on date, + activity text, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + housing_status character varying, + other_housing_status character varying, + imported boolean DEFAULT false, + zip_code character varying +); + + +-- +-- Name: youth_case_managements_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.youth_case_managements_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: youth_case_managements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.youth_case_managements_id_seq OWNED BY public.youth_case_managements.id; + + +-- +-- Name: youth_exports; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.youth_exports ( + id integer NOT NULL, + user_id integer NOT NULL, + options jsonb, + headers jsonb, + rows jsonb, + client_count integer, + started_at timestamp without time zone, + completed_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +-- +-- Name: youth_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.youth_exports_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: youth_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.youth_exports_id_seq OWNED BY public.youth_exports.id; + + +-- +-- Name: youth_follow_ups; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.youth_follow_ups ( + id integer NOT NULL, + client_id integer, + user_id integer, + contacted_on date, + housing_status character varying, + zip_code character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + action character varying, + action_on date, + required_on date, + case_management_id integer +); + + +-- +-- Name: youth_follow_ups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.youth_follow_ups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: youth_follow_ups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.youth_follow_ups_id_seq OWNED BY public.youth_follow_ups.id; + + +-- +-- Name: youth_intakes; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.youth_intakes ( + id integer NOT NULL, + client_id integer, + user_id integer, + type character varying, + other_staff_completed_intake boolean DEFAULT false NOT NULL, + client_dob date, + staff_name character varying, + staff_email character varying, + engagement_date date NOT NULL, + exit_date date, + unaccompanied character varying NOT NULL, + street_outreach_contact character varying NOT NULL, + housing_status character varying NOT NULL, + other_agency_involvement character varying, + owns_cell_phone character varying, + secondary_education character varying NOT NULL, + attending_college character varying NOT NULL, + health_insurance character varying NOT NULL, + requesting_financial_assistance character varying NOT NULL, + staff_believes_youth_under_24 character varying NOT NULL, + client_gender integer NOT NULL, + client_lgbtq character varying NOT NULL, + client_race jsonb NOT NULL, + client_ethnicity integer, + client_primary_language character varying NOT NULL, + pregnant_or_parenting character varying NOT NULL, + disabilities jsonb NOT NULL, + how_hear character varying, + needs_shelter character varying NOT NULL, + referred_to_shelter character varying DEFAULT 'f'::character varying NOT NULL, + in_stable_housing character varying NOT NULL, + stable_housing_zipcode character varying, + youth_experiencing_homelessness_at_start character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + turned_away boolean DEFAULT false NOT NULL, + college_pilot character varying DEFAULT 'No'::character varying NOT NULL, + graduating_college character varying DEFAULT 'No'::character varying NOT NULL, + imported boolean DEFAULT false, + first_name character varying, + last_name character varying, + ssn character varying, + other_agency_involvements json DEFAULT '[]'::json +); + + +-- +-- Name: youth_intakes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.youth_intakes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: youth_intakes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.youth_intakes_id_seq OWNED BY public.youth_intakes.id; + + +-- +-- Name: youth_referrals; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.youth_referrals ( + id integer NOT NULL, + client_id integer, + user_id integer, + referred_on date, + referred_to character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone, + imported boolean DEFAULT false, + notes character varying +); + + +-- +-- Name: youth_referrals_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.youth_referrals_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: youth_referrals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- + +ALTER SEQUENCE public.youth_referrals_id_seq OWNED BY public.youth_referrals.id; + + +-- +-- Name: hmis_2022_clients_partitioned_0; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_0 FOR VALUES WITH (modulus 71, remainder 0); + + +-- +-- Name: hmis_2022_clients_partitioned_1; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_1 FOR VALUES WITH (modulus 71, remainder 1); + + +-- +-- Name: hmis_2022_clients_partitioned_10; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_10 FOR VALUES WITH (modulus 71, remainder 10); + + +-- +-- Name: hmis_2022_clients_partitioned_11; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_11 FOR VALUES WITH (modulus 71, remainder 11); + + +-- +-- Name: hmis_2022_clients_partitioned_12; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_12 FOR VALUES WITH (modulus 71, remainder 12); + + +-- +-- Name: hmis_2022_clients_partitioned_13; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_13 FOR VALUES WITH (modulus 71, remainder 13); + + +-- +-- Name: hmis_2022_clients_partitioned_14; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_14 FOR VALUES WITH (modulus 71, remainder 14); + + +-- +-- Name: hmis_2022_clients_partitioned_15; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_15 FOR VALUES WITH (modulus 71, remainder 15); + + +-- +-- Name: hmis_2022_clients_partitioned_16; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_16 FOR VALUES WITH (modulus 71, remainder 16); + + +-- +-- Name: hmis_2022_clients_partitioned_17; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_17 FOR VALUES WITH (modulus 71, remainder 17); + + +-- +-- Name: hmis_2022_clients_partitioned_18; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_18 FOR VALUES WITH (modulus 71, remainder 18); + + +-- +-- Name: hmis_2022_clients_partitioned_19; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_19 FOR VALUES WITH (modulus 71, remainder 19); + + +-- +-- Name: hmis_2022_clients_partitioned_2; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_2 FOR VALUES WITH (modulus 71, remainder 2); + + +-- +-- Name: hmis_2022_clients_partitioned_20; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_20 FOR VALUES WITH (modulus 71, remainder 20); + + +-- +-- Name: hmis_2022_clients_partitioned_21; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_21 FOR VALUES WITH (modulus 71, remainder 21); + + +-- +-- Name: hmis_2022_clients_partitioned_22; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_22 FOR VALUES WITH (modulus 71, remainder 22); + + +-- +-- Name: hmis_2022_clients_partitioned_23; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_23 FOR VALUES WITH (modulus 71, remainder 23); + + +-- +-- Name: hmis_2022_clients_partitioned_24; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_24 FOR VALUES WITH (modulus 71, remainder 24); + + +-- +-- Name: hmis_2022_clients_partitioned_25; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_25 FOR VALUES WITH (modulus 71, remainder 25); + + +-- +-- Name: hmis_2022_clients_partitioned_26; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_26 FOR VALUES WITH (modulus 71, remainder 26); + + +-- +-- Name: hmis_2022_clients_partitioned_27; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_27 FOR VALUES WITH (modulus 71, remainder 27); + + +-- +-- Name: hmis_2022_clients_partitioned_28; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_28 FOR VALUES WITH (modulus 71, remainder 28); + + +-- +-- Name: hmis_2022_clients_partitioned_29; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_29 FOR VALUES WITH (modulus 71, remainder 29); + + +-- +-- Name: hmis_2022_clients_partitioned_3; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_3 FOR VALUES WITH (modulus 71, remainder 3); + + +-- +-- Name: hmis_2022_clients_partitioned_30; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_30 FOR VALUES WITH (modulus 71, remainder 30); + + +-- +-- Name: hmis_2022_clients_partitioned_31; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_31 FOR VALUES WITH (modulus 71, remainder 31); + + +-- +-- Name: hmis_2022_clients_partitioned_32; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_32 FOR VALUES WITH (modulus 71, remainder 32); + + +-- +-- Name: hmis_2022_clients_partitioned_33; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_33 FOR VALUES WITH (modulus 71, remainder 33); + + +-- +-- Name: hmis_2022_clients_partitioned_34; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_34 FOR VALUES WITH (modulus 71, remainder 34); + + +-- +-- Name: hmis_2022_clients_partitioned_35; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_35 FOR VALUES WITH (modulus 71, remainder 35); + + +-- +-- Name: hmis_2022_clients_partitioned_36; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_36 FOR VALUES WITH (modulus 71, remainder 36); + + +-- +-- Name: hmis_2022_clients_partitioned_37; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_37 FOR VALUES WITH (modulus 71, remainder 37); + + +-- +-- Name: hmis_2022_clients_partitioned_38; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_38 FOR VALUES WITH (modulus 71, remainder 38); + + +-- +-- Name: hmis_2022_clients_partitioned_39; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_39 FOR VALUES WITH (modulus 71, remainder 39); + + +-- +-- Name: hmis_2022_clients_partitioned_4; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_4 FOR VALUES WITH (modulus 71, remainder 4); + + +-- +-- Name: hmis_2022_clients_partitioned_40; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_40 FOR VALUES WITH (modulus 71, remainder 40); + + +-- +-- Name: hmis_2022_clients_partitioned_41; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_41 FOR VALUES WITH (modulus 71, remainder 41); + + +-- +-- Name: hmis_2022_clients_partitioned_42; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_42 FOR VALUES WITH (modulus 71, remainder 42); + + +-- +-- Name: hmis_2022_clients_partitioned_43; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_43 FOR VALUES WITH (modulus 71, remainder 43); + + +-- +-- Name: hmis_2022_clients_partitioned_44; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_44 FOR VALUES WITH (modulus 71, remainder 44); + + +-- +-- Name: hmis_2022_clients_partitioned_45; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_45 FOR VALUES WITH (modulus 71, remainder 45); + + +-- +-- Name: hmis_2022_clients_partitioned_46; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_46 FOR VALUES WITH (modulus 71, remainder 46); + + +-- +-- Name: hmis_2022_clients_partitioned_47; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_47 FOR VALUES WITH (modulus 71, remainder 47); + + +-- +-- Name: hmis_2022_clients_partitioned_48; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_48 FOR VALUES WITH (modulus 71, remainder 48); + + +-- +-- Name: hmis_2022_clients_partitioned_49; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_49 FOR VALUES WITH (modulus 71, remainder 49); + + +-- +-- Name: hmis_2022_clients_partitioned_5; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_5 FOR VALUES WITH (modulus 71, remainder 5); + + +-- +-- Name: hmis_2022_clients_partitioned_50; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_50 FOR VALUES WITH (modulus 71, remainder 50); + + +-- +-- Name: hmis_2022_clients_partitioned_51; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_51 FOR VALUES WITH (modulus 71, remainder 51); + + +-- +-- Name: hmis_2022_clients_partitioned_52; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_52 FOR VALUES WITH (modulus 71, remainder 52); + + +-- +-- Name: hmis_2022_clients_partitioned_53; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_53 FOR VALUES WITH (modulus 71, remainder 53); + + +-- +-- Name: hmis_2022_clients_partitioned_54; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_54 FOR VALUES WITH (modulus 71, remainder 54); + + +-- +-- Name: hmis_2022_clients_partitioned_55; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_55 FOR VALUES WITH (modulus 71, remainder 55); + + +-- +-- Name: hmis_2022_clients_partitioned_56; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_56 FOR VALUES WITH (modulus 71, remainder 56); + + +-- +-- Name: hmis_2022_clients_partitioned_57; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_57 FOR VALUES WITH (modulus 71, remainder 57); + + +-- +-- Name: hmis_2022_clients_partitioned_58; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_58 FOR VALUES WITH (modulus 71, remainder 58); + + +-- +-- Name: hmis_2022_clients_partitioned_59; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_59 FOR VALUES WITH (modulus 71, remainder 59); + + +-- +-- Name: hmis_2022_clients_partitioned_6; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_6 FOR VALUES WITH (modulus 71, remainder 6); + + +-- +-- Name: hmis_2022_clients_partitioned_60; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_60 FOR VALUES WITH (modulus 71, remainder 60); + + +-- +-- Name: hmis_2022_clients_partitioned_61; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_61 FOR VALUES WITH (modulus 71, remainder 61); + + +-- +-- Name: hmis_2022_clients_partitioned_62; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_62 FOR VALUES WITH (modulus 71, remainder 62); + + +-- +-- Name: hmis_2022_clients_partitioned_63; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_63 FOR VALUES WITH (modulus 71, remainder 63); + + +-- +-- Name: hmis_2022_clients_partitioned_64; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_64 FOR VALUES WITH (modulus 71, remainder 64); + + +-- +-- Name: hmis_2022_clients_partitioned_65; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_65 FOR VALUES WITH (modulus 71, remainder 65); + + +-- +-- Name: hmis_2022_clients_partitioned_66; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_66 FOR VALUES WITH (modulus 71, remainder 66); + + +-- +-- Name: hmis_2022_clients_partitioned_67; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_67 FOR VALUES WITH (modulus 71, remainder 67); + + +-- +-- Name: hmis_2022_clients_partitioned_68; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_68 FOR VALUES WITH (modulus 71, remainder 68); + + +-- +-- Name: hmis_2022_clients_partitioned_69; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_69 FOR VALUES WITH (modulus 71, remainder 69); + + +-- +-- Name: hmis_2022_clients_partitioned_7; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_7 FOR VALUES WITH (modulus 71, remainder 7); + + +-- +-- Name: hmis_2022_clients_partitioned_70; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_70 FOR VALUES WITH (modulus 71, remainder 70); + + +-- +-- Name: hmis_2022_clients_partitioned_8; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_8 FOR VALUES WITH (modulus 71, remainder 8); + + +-- +-- Name: hmis_2022_clients_partitioned_9; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ATTACH PARTITION hmis.hmis_2022_clients_partitioned_9 FOR VALUES WITH (modulus 71, remainder 9); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_0 FOR VALUES WITH (modulus 71, remainder 0); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_1 FOR VALUES WITH (modulus 71, remainder 1); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_10 FOR VALUES WITH (modulus 71, remainder 10); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_11 FOR VALUES WITH (modulus 71, remainder 11); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_12 FOR VALUES WITH (modulus 71, remainder 12); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_13 FOR VALUES WITH (modulus 71, remainder 13); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_14 FOR VALUES WITH (modulus 71, remainder 14); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_15 FOR VALUES WITH (modulus 71, remainder 15); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_16 FOR VALUES WITH (modulus 71, remainder 16); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_17 FOR VALUES WITH (modulus 71, remainder 17); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_18 FOR VALUES WITH (modulus 71, remainder 18); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_19 FOR VALUES WITH (modulus 71, remainder 19); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_2 FOR VALUES WITH (modulus 71, remainder 2); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_20 FOR VALUES WITH (modulus 71, remainder 20); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_21 FOR VALUES WITH (modulus 71, remainder 21); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_22 FOR VALUES WITH (modulus 71, remainder 22); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_23 FOR VALUES WITH (modulus 71, remainder 23); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_24 FOR VALUES WITH (modulus 71, remainder 24); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_25 FOR VALUES WITH (modulus 71, remainder 25); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_26 FOR VALUES WITH (modulus 71, remainder 26); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_27 FOR VALUES WITH (modulus 71, remainder 27); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_28 FOR VALUES WITH (modulus 71, remainder 28); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_29 FOR VALUES WITH (modulus 71, remainder 29); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_3 FOR VALUES WITH (modulus 71, remainder 3); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_30 FOR VALUES WITH (modulus 71, remainder 30); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_31 FOR VALUES WITH (modulus 71, remainder 31); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_32 FOR VALUES WITH (modulus 71, remainder 32); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_33 FOR VALUES WITH (modulus 71, remainder 33); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_34 FOR VALUES WITH (modulus 71, remainder 34); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_35 FOR VALUES WITH (modulus 71, remainder 35); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_36 FOR VALUES WITH (modulus 71, remainder 36); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_37 FOR VALUES WITH (modulus 71, remainder 37); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_38 FOR VALUES WITH (modulus 71, remainder 38); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_39 FOR VALUES WITH (modulus 71, remainder 39); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_4 FOR VALUES WITH (modulus 71, remainder 4); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_40 FOR VALUES WITH (modulus 71, remainder 40); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_41 FOR VALUES WITH (modulus 71, remainder 41); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_42 FOR VALUES WITH (modulus 71, remainder 42); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_43 FOR VALUES WITH (modulus 71, remainder 43); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_44 FOR VALUES WITH (modulus 71, remainder 44); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_45 FOR VALUES WITH (modulus 71, remainder 45); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_46 FOR VALUES WITH (modulus 71, remainder 46); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_47 FOR VALUES WITH (modulus 71, remainder 47); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_48 FOR VALUES WITH (modulus 71, remainder 48); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_49 FOR VALUES WITH (modulus 71, remainder 49); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_5 FOR VALUES WITH (modulus 71, remainder 5); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_50 FOR VALUES WITH (modulus 71, remainder 50); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_51 FOR VALUES WITH (modulus 71, remainder 51); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_52 FOR VALUES WITH (modulus 71, remainder 52); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_53 FOR VALUES WITH (modulus 71, remainder 53); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_54 FOR VALUES WITH (modulus 71, remainder 54); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_55 FOR VALUES WITH (modulus 71, remainder 55); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_56 FOR VALUES WITH (modulus 71, remainder 56); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_57 FOR VALUES WITH (modulus 71, remainder 57); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_58 FOR VALUES WITH (modulus 71, remainder 58); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_59 FOR VALUES WITH (modulus 71, remainder 59); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_6 FOR VALUES WITH (modulus 71, remainder 6); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_60 FOR VALUES WITH (modulus 71, remainder 60); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_61 FOR VALUES WITH (modulus 71, remainder 61); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_62 FOR VALUES WITH (modulus 71, remainder 62); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_63 FOR VALUES WITH (modulus 71, remainder 63); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_64 FOR VALUES WITH (modulus 71, remainder 64); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_65 FOR VALUES WITH (modulus 71, remainder 65); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_66 FOR VALUES WITH (modulus 71, remainder 66); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_67 FOR VALUES WITH (modulus 71, remainder 67); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_68 FOR VALUES WITH (modulus 71, remainder 68); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_69 FOR VALUES WITH (modulus 71, remainder 69); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_7 FOR VALUES WITH (modulus 71, remainder 7); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_70 FOR VALUES WITH (modulus 71, remainder 70); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_8 FOR VALUES WITH (modulus 71, remainder 8); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_9 FOR VALUES WITH (modulus 71, remainder 9); + + +-- +-- Name: hmis_2022_exits_partitioned_0; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_0 FOR VALUES WITH (modulus 71, remainder 0); + + +-- +-- Name: hmis_2022_exits_partitioned_1; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_1 FOR VALUES WITH (modulus 71, remainder 1); + + +-- +-- Name: hmis_2022_exits_partitioned_10; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_10 FOR VALUES WITH (modulus 71, remainder 10); + + +-- +-- Name: hmis_2022_exits_partitioned_11; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_11 FOR VALUES WITH (modulus 71, remainder 11); + + +-- +-- Name: hmis_2022_exits_partitioned_12; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_12 FOR VALUES WITH (modulus 71, remainder 12); + + +-- +-- Name: hmis_2022_exits_partitioned_13; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_13 FOR VALUES WITH (modulus 71, remainder 13); + + +-- +-- Name: hmis_2022_exits_partitioned_14; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_14 FOR VALUES WITH (modulus 71, remainder 14); + + +-- +-- Name: hmis_2022_exits_partitioned_15; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_15 FOR VALUES WITH (modulus 71, remainder 15); + + +-- +-- Name: hmis_2022_exits_partitioned_16; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_16 FOR VALUES WITH (modulus 71, remainder 16); + + +-- +-- Name: hmis_2022_exits_partitioned_17; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_17 FOR VALUES WITH (modulus 71, remainder 17); + + +-- +-- Name: hmis_2022_exits_partitioned_18; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_18 FOR VALUES WITH (modulus 71, remainder 18); + + +-- +-- Name: hmis_2022_exits_partitioned_19; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_19 FOR VALUES WITH (modulus 71, remainder 19); + + +-- +-- Name: hmis_2022_exits_partitioned_2; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_2 FOR VALUES WITH (modulus 71, remainder 2); + + +-- +-- Name: hmis_2022_exits_partitioned_20; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_20 FOR VALUES WITH (modulus 71, remainder 20); + + +-- +-- Name: hmis_2022_exits_partitioned_21; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_21 FOR VALUES WITH (modulus 71, remainder 21); + + +-- +-- Name: hmis_2022_exits_partitioned_22; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_22 FOR VALUES WITH (modulus 71, remainder 22); + + +-- +-- Name: hmis_2022_exits_partitioned_23; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_23 FOR VALUES WITH (modulus 71, remainder 23); + + +-- +-- Name: hmis_2022_exits_partitioned_24; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_24 FOR VALUES WITH (modulus 71, remainder 24); + + +-- +-- Name: hmis_2022_exits_partitioned_25; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_25 FOR VALUES WITH (modulus 71, remainder 25); + + +-- +-- Name: hmis_2022_exits_partitioned_26; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_26 FOR VALUES WITH (modulus 71, remainder 26); + + +-- +-- Name: hmis_2022_exits_partitioned_27; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_27 FOR VALUES WITH (modulus 71, remainder 27); + + +-- +-- Name: hmis_2022_exits_partitioned_28; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_28 FOR VALUES WITH (modulus 71, remainder 28); + + +-- +-- Name: hmis_2022_exits_partitioned_29; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_29 FOR VALUES WITH (modulus 71, remainder 29); + + +-- +-- Name: hmis_2022_exits_partitioned_3; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_3 FOR VALUES WITH (modulus 71, remainder 3); + + +-- +-- Name: hmis_2022_exits_partitioned_30; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_30 FOR VALUES WITH (modulus 71, remainder 30); + + +-- +-- Name: hmis_2022_exits_partitioned_31; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_31 FOR VALUES WITH (modulus 71, remainder 31); + + +-- +-- Name: hmis_2022_exits_partitioned_32; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_32 FOR VALUES WITH (modulus 71, remainder 32); + + +-- +-- Name: hmis_2022_exits_partitioned_33; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_33 FOR VALUES WITH (modulus 71, remainder 33); + + +-- +-- Name: hmis_2022_exits_partitioned_34; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_34 FOR VALUES WITH (modulus 71, remainder 34); + + +-- +-- Name: hmis_2022_exits_partitioned_35; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_35 FOR VALUES WITH (modulus 71, remainder 35); + + +-- +-- Name: hmis_2022_exits_partitioned_36; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_36 FOR VALUES WITH (modulus 71, remainder 36); + + +-- +-- Name: hmis_2022_exits_partitioned_37; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_37 FOR VALUES WITH (modulus 71, remainder 37); + + +-- +-- Name: hmis_2022_exits_partitioned_38; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_38 FOR VALUES WITH (modulus 71, remainder 38); + + +-- +-- Name: hmis_2022_exits_partitioned_39; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_39 FOR VALUES WITH (modulus 71, remainder 39); + + +-- +-- Name: hmis_2022_exits_partitioned_4; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_4 FOR VALUES WITH (modulus 71, remainder 4); + + +-- +-- Name: hmis_2022_exits_partitioned_40; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_40 FOR VALUES WITH (modulus 71, remainder 40); + + +-- +-- Name: hmis_2022_exits_partitioned_41; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_41 FOR VALUES WITH (modulus 71, remainder 41); + + +-- +-- Name: hmis_2022_exits_partitioned_42; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_42 FOR VALUES WITH (modulus 71, remainder 42); + + +-- +-- Name: hmis_2022_exits_partitioned_43; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_43 FOR VALUES WITH (modulus 71, remainder 43); + + +-- +-- Name: hmis_2022_exits_partitioned_44; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_44 FOR VALUES WITH (modulus 71, remainder 44); + + +-- +-- Name: hmis_2022_exits_partitioned_45; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_45 FOR VALUES WITH (modulus 71, remainder 45); + + +-- +-- Name: hmis_2022_exits_partitioned_46; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_46 FOR VALUES WITH (modulus 71, remainder 46); + + +-- +-- Name: hmis_2022_exits_partitioned_47; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_47 FOR VALUES WITH (modulus 71, remainder 47); + + +-- +-- Name: hmis_2022_exits_partitioned_48; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_48 FOR VALUES WITH (modulus 71, remainder 48); + + +-- +-- Name: hmis_2022_exits_partitioned_49; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_49 FOR VALUES WITH (modulus 71, remainder 49); + + +-- +-- Name: hmis_2022_exits_partitioned_5; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_5 FOR VALUES WITH (modulus 71, remainder 5); + + +-- +-- Name: hmis_2022_exits_partitioned_50; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_50 FOR VALUES WITH (modulus 71, remainder 50); + + +-- +-- Name: hmis_2022_exits_partitioned_51; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_51 FOR VALUES WITH (modulus 71, remainder 51); + + +-- +-- Name: hmis_2022_exits_partitioned_52; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_52 FOR VALUES WITH (modulus 71, remainder 52); + + +-- +-- Name: hmis_2022_exits_partitioned_53; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_53 FOR VALUES WITH (modulus 71, remainder 53); + + +-- +-- Name: hmis_2022_exits_partitioned_54; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_54 FOR VALUES WITH (modulus 71, remainder 54); + + +-- +-- Name: hmis_2022_exits_partitioned_55; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_55 FOR VALUES WITH (modulus 71, remainder 55); + + +-- +-- Name: hmis_2022_exits_partitioned_56; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_56 FOR VALUES WITH (modulus 71, remainder 56); + + +-- +-- Name: hmis_2022_exits_partitioned_57; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_57 FOR VALUES WITH (modulus 71, remainder 57); + + +-- +-- Name: hmis_2022_exits_partitioned_58; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_58 FOR VALUES WITH (modulus 71, remainder 58); + + +-- +-- Name: hmis_2022_exits_partitioned_59; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_59 FOR VALUES WITH (modulus 71, remainder 59); + + +-- +-- Name: hmis_2022_exits_partitioned_6; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_6 FOR VALUES WITH (modulus 71, remainder 6); + + +-- +-- Name: hmis_2022_exits_partitioned_60; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_60 FOR VALUES WITH (modulus 71, remainder 60); + + +-- +-- Name: hmis_2022_exits_partitioned_61; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_61 FOR VALUES WITH (modulus 71, remainder 61); + + +-- +-- Name: hmis_2022_exits_partitioned_62; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_62 FOR VALUES WITH (modulus 71, remainder 62); + + +-- +-- Name: hmis_2022_exits_partitioned_63; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_63 FOR VALUES WITH (modulus 71, remainder 63); + + +-- +-- Name: hmis_2022_exits_partitioned_64; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_64 FOR VALUES WITH (modulus 71, remainder 64); + + +-- +-- Name: hmis_2022_exits_partitioned_65; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_65 FOR VALUES WITH (modulus 71, remainder 65); + + +-- +-- Name: hmis_2022_exits_partitioned_66; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_66 FOR VALUES WITH (modulus 71, remainder 66); + + +-- +-- Name: hmis_2022_exits_partitioned_67; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_67 FOR VALUES WITH (modulus 71, remainder 67); + + +-- +-- Name: hmis_2022_exits_partitioned_68; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_68 FOR VALUES WITH (modulus 71, remainder 68); + + +-- +-- Name: hmis_2022_exits_partitioned_69; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_69 FOR VALUES WITH (modulus 71, remainder 69); + + +-- +-- Name: hmis_2022_exits_partitioned_7; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_7 FOR VALUES WITH (modulus 71, remainder 7); + + +-- +-- Name: hmis_2022_exits_partitioned_70; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_70 FOR VALUES WITH (modulus 71, remainder 70); + + +-- +-- Name: hmis_2022_exits_partitioned_8; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_8 FOR VALUES WITH (modulus 71, remainder 8); + + +-- +-- Name: hmis_2022_exits_partitioned_9; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ATTACH PARTITION hmis.hmis_2022_exits_partitioned_9 FOR VALUES WITH (modulus 71, remainder 9); + + +-- +-- Name: hmis_2022_services_partitioned_0; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_0 FOR VALUES WITH (modulus 71, remainder 0); + + +-- +-- Name: hmis_2022_services_partitioned_1; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_1 FOR VALUES WITH (modulus 71, remainder 1); + + +-- +-- Name: hmis_2022_services_partitioned_10; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_10 FOR VALUES WITH (modulus 71, remainder 10); + + +-- +-- Name: hmis_2022_services_partitioned_11; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_11 FOR VALUES WITH (modulus 71, remainder 11); + + +-- +-- Name: hmis_2022_services_partitioned_12; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_12 FOR VALUES WITH (modulus 71, remainder 12); + + +-- +-- Name: hmis_2022_services_partitioned_13; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_13 FOR VALUES WITH (modulus 71, remainder 13); + + +-- +-- Name: hmis_2022_services_partitioned_14; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_14 FOR VALUES WITH (modulus 71, remainder 14); + + +-- +-- Name: hmis_2022_services_partitioned_15; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_15 FOR VALUES WITH (modulus 71, remainder 15); + + +-- +-- Name: hmis_2022_services_partitioned_16; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_16 FOR VALUES WITH (modulus 71, remainder 16); + + +-- +-- Name: hmis_2022_services_partitioned_17; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_17 FOR VALUES WITH (modulus 71, remainder 17); + + +-- +-- Name: hmis_2022_services_partitioned_18; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_18 FOR VALUES WITH (modulus 71, remainder 18); + + +-- +-- Name: hmis_2022_services_partitioned_19; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_19 FOR VALUES WITH (modulus 71, remainder 19); + + +-- +-- Name: hmis_2022_services_partitioned_2; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_2 FOR VALUES WITH (modulus 71, remainder 2); + + +-- +-- Name: hmis_2022_services_partitioned_20; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_20 FOR VALUES WITH (modulus 71, remainder 20); + + +-- +-- Name: hmis_2022_services_partitioned_21; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_21 FOR VALUES WITH (modulus 71, remainder 21); + + +-- +-- Name: hmis_2022_services_partitioned_22; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_22 FOR VALUES WITH (modulus 71, remainder 22); + + +-- +-- Name: hmis_2022_services_partitioned_23; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_23 FOR VALUES WITH (modulus 71, remainder 23); + + +-- +-- Name: hmis_2022_services_partitioned_24; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_24 FOR VALUES WITH (modulus 71, remainder 24); + + +-- +-- Name: hmis_2022_services_partitioned_25; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_25 FOR VALUES WITH (modulus 71, remainder 25); + + +-- +-- Name: hmis_2022_services_partitioned_26; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_26 FOR VALUES WITH (modulus 71, remainder 26); + + +-- +-- Name: hmis_2022_services_partitioned_27; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_27 FOR VALUES WITH (modulus 71, remainder 27); + + +-- +-- Name: hmis_2022_services_partitioned_28; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_28 FOR VALUES WITH (modulus 71, remainder 28); + + +-- +-- Name: hmis_2022_services_partitioned_29; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_29 FOR VALUES WITH (modulus 71, remainder 29); + + +-- +-- Name: hmis_2022_services_partitioned_3; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_3 FOR VALUES WITH (modulus 71, remainder 3); + + +-- +-- Name: hmis_2022_services_partitioned_30; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_30 FOR VALUES WITH (modulus 71, remainder 30); + + +-- +-- Name: hmis_2022_services_partitioned_31; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_31 FOR VALUES WITH (modulus 71, remainder 31); + + +-- +-- Name: hmis_2022_services_partitioned_32; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_32 FOR VALUES WITH (modulus 71, remainder 32); + + +-- +-- Name: hmis_2022_services_partitioned_33; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_33 FOR VALUES WITH (modulus 71, remainder 33); + + +-- +-- Name: hmis_2022_services_partitioned_34; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_34 FOR VALUES WITH (modulus 71, remainder 34); + + +-- +-- Name: hmis_2022_services_partitioned_35; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_35 FOR VALUES WITH (modulus 71, remainder 35); + + +-- +-- Name: hmis_2022_services_partitioned_36; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_36 FOR VALUES WITH (modulus 71, remainder 36); + + +-- +-- Name: hmis_2022_services_partitioned_37; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_37 FOR VALUES WITH (modulus 71, remainder 37); + + +-- +-- Name: hmis_2022_services_partitioned_38; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_38 FOR VALUES WITH (modulus 71, remainder 38); + + +-- +-- Name: hmis_2022_services_partitioned_39; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_39 FOR VALUES WITH (modulus 71, remainder 39); + + +-- +-- Name: hmis_2022_services_partitioned_4; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_4 FOR VALUES WITH (modulus 71, remainder 4); + + +-- +-- Name: hmis_2022_services_partitioned_40; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_40 FOR VALUES WITH (modulus 71, remainder 40); + + +-- +-- Name: hmis_2022_services_partitioned_41; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_41 FOR VALUES WITH (modulus 71, remainder 41); + + +-- +-- Name: hmis_2022_services_partitioned_42; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_42 FOR VALUES WITH (modulus 71, remainder 42); + + +-- +-- Name: hmis_2022_services_partitioned_43; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_43 FOR VALUES WITH (modulus 71, remainder 43); + + +-- +-- Name: hmis_2022_services_partitioned_44; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_44 FOR VALUES WITH (modulus 71, remainder 44); + + +-- +-- Name: hmis_2022_services_partitioned_45; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_45 FOR VALUES WITH (modulus 71, remainder 45); + + +-- +-- Name: hmis_2022_services_partitioned_46; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_46 FOR VALUES WITH (modulus 71, remainder 46); + + +-- +-- Name: hmis_2022_services_partitioned_47; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_47 FOR VALUES WITH (modulus 71, remainder 47); + + +-- +-- Name: hmis_2022_services_partitioned_48; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_48 FOR VALUES WITH (modulus 71, remainder 48); + + +-- +-- Name: hmis_2022_services_partitioned_49; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_49 FOR VALUES WITH (modulus 71, remainder 49); + + +-- +-- Name: hmis_2022_services_partitioned_5; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_5 FOR VALUES WITH (modulus 71, remainder 5); + + +-- +-- Name: hmis_2022_services_partitioned_50; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_50 FOR VALUES WITH (modulus 71, remainder 50); + + +-- +-- Name: hmis_2022_services_partitioned_51; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_51 FOR VALUES WITH (modulus 71, remainder 51); + + +-- +-- Name: hmis_2022_services_partitioned_52; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_52 FOR VALUES WITH (modulus 71, remainder 52); + + +-- +-- Name: hmis_2022_services_partitioned_53; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_53 FOR VALUES WITH (modulus 71, remainder 53); + + +-- +-- Name: hmis_2022_services_partitioned_54; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_54 FOR VALUES WITH (modulus 71, remainder 54); + + +-- +-- Name: hmis_2022_services_partitioned_55; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_55 FOR VALUES WITH (modulus 71, remainder 55); + + +-- +-- Name: hmis_2022_services_partitioned_56; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_56 FOR VALUES WITH (modulus 71, remainder 56); + + +-- +-- Name: hmis_2022_services_partitioned_57; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_57 FOR VALUES WITH (modulus 71, remainder 57); + + +-- +-- Name: hmis_2022_services_partitioned_58; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_58 FOR VALUES WITH (modulus 71, remainder 58); + + +-- +-- Name: hmis_2022_services_partitioned_59; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_59 FOR VALUES WITH (modulus 71, remainder 59); + + +-- +-- Name: hmis_2022_services_partitioned_6; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_6 FOR VALUES WITH (modulus 71, remainder 6); + + +-- +-- Name: hmis_2022_services_partitioned_60; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_60 FOR VALUES WITH (modulus 71, remainder 60); + + +-- +-- Name: hmis_2022_services_partitioned_61; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_61 FOR VALUES WITH (modulus 71, remainder 61); + + +-- +-- Name: hmis_2022_services_partitioned_62; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_62 FOR VALUES WITH (modulus 71, remainder 62); + + +-- +-- Name: hmis_2022_services_partitioned_63; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_63 FOR VALUES WITH (modulus 71, remainder 63); + + +-- +-- Name: hmis_2022_services_partitioned_64; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_64 FOR VALUES WITH (modulus 71, remainder 64); + + +-- +-- Name: hmis_2022_services_partitioned_65; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_65 FOR VALUES WITH (modulus 71, remainder 65); + + +-- +-- Name: hmis_2022_services_partitioned_66; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_66 FOR VALUES WITH (modulus 71, remainder 66); + + +-- +-- Name: hmis_2022_services_partitioned_67; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_67 FOR VALUES WITH (modulus 71, remainder 67); + + +-- +-- Name: hmis_2022_services_partitioned_68; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_68 FOR VALUES WITH (modulus 71, remainder 68); + + +-- +-- Name: hmis_2022_services_partitioned_69; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_69 FOR VALUES WITH (modulus 71, remainder 69); + + +-- +-- Name: hmis_2022_services_partitioned_7; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_7 FOR VALUES WITH (modulus 71, remainder 7); + + +-- +-- Name: hmis_2022_services_partitioned_70; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_70 FOR VALUES WITH (modulus 71, remainder 70); + + +-- +-- Name: hmis_2022_services_partitioned_8; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_8 FOR VALUES WITH (modulus 71, remainder 8); + + +-- +-- Name: hmis_2022_services_partitioned_9; Type: TABLE ATTACH; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ATTACH PARTITION hmis.hmis_2022_services_partitioned_9 FOR VALUES WITH (modulus 71, remainder 9); + + +-- +-- Name: service_history_services_2000; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2000 FOR VALUES FROM ('2000-01-01') TO ('2001-01-01'); + + +-- +-- Name: service_history_services_2001; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2001 FOR VALUES FROM ('2001-01-01') TO ('2002-01-01'); + + +-- +-- Name: service_history_services_2002; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2002 FOR VALUES FROM ('2002-01-01') TO ('2003-01-01'); + + +-- +-- Name: service_history_services_2003; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2003 FOR VALUES FROM ('2003-01-01') TO ('2004-01-01'); + + +-- +-- Name: service_history_services_2004; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2004 FOR VALUES FROM ('2004-01-01') TO ('2005-01-01'); + + +-- +-- Name: service_history_services_2005; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2005 FOR VALUES FROM ('2005-01-01') TO ('2006-01-01'); + + +-- +-- Name: service_history_services_2006; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2006 FOR VALUES FROM ('2006-01-01') TO ('2007-01-01'); + + +-- +-- Name: service_history_services_2007; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2007 FOR VALUES FROM ('2007-01-01') TO ('2008-01-01'); + + +-- +-- Name: service_history_services_2008; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2008 FOR VALUES FROM ('2008-01-01') TO ('2009-01-01'); + + +-- +-- Name: service_history_services_2009; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2009 FOR VALUES FROM ('2009-01-01') TO ('2010-01-01'); + + +-- +-- Name: service_history_services_2010; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2010 FOR VALUES FROM ('2010-01-01') TO ('2011-01-01'); + + +-- +-- Name: service_history_services_2011; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2011 FOR VALUES FROM ('2011-01-01') TO ('2012-01-01'); + + +-- +-- Name: service_history_services_2012; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2012 FOR VALUES FROM ('2012-01-01') TO ('2013-01-01'); + + +-- +-- Name: service_history_services_2013; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2013 FOR VALUES FROM ('2013-01-01') TO ('2014-01-01'); + + +-- +-- Name: service_history_services_2014; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2014 FOR VALUES FROM ('2014-01-01') TO ('2015-01-01'); + + +-- +-- Name: service_history_services_2015; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2015 FOR VALUES FROM ('2015-01-01') TO ('2016-01-01'); + + +-- +-- Name: service_history_services_2016; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2016 FOR VALUES FROM ('2016-01-01') TO ('2017-01-01'); + + +-- +-- Name: service_history_services_2017; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2017 FOR VALUES FROM ('2017-01-01') TO ('2018-01-01'); + + +-- +-- Name: service_history_services_2018; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2018 FOR VALUES FROM ('2018-01-01') TO ('2019-01-01'); + + +-- +-- Name: service_history_services_2019; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2019 FOR VALUES FROM ('2019-01-01') TO ('2020-01-01'); + + +-- +-- Name: service_history_services_2020; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2020 FOR VALUES FROM ('2020-01-01') TO ('2021-01-01'); + + +-- +-- Name: service_history_services_2021; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2021 FOR VALUES FROM ('2021-01-01') TO ('2022-01-01'); + + +-- +-- Name: service_history_services_2022; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2022 FOR VALUES FROM ('2022-01-01') TO ('2023-01-01'); + + +-- +-- Name: service_history_services_2023; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2023 FOR VALUES FROM ('2023-01-01') TO ('2024-01-01'); + + +-- +-- Name: service_history_services_2024; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2024 FOR VALUES FROM ('2024-01-01') TO ('2025-01-01'); + + +-- +-- Name: service_history_services_2025; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2025 FOR VALUES FROM ('2025-01-01') TO ('2026-01-01'); + + +-- +-- Name: service_history_services_2026; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2026 FOR VALUES FROM ('2026-01-01') TO ('2027-01-01'); + + +-- +-- Name: service_history_services_2027; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2027 FOR VALUES FROM ('2027-01-01') TO ('2028-01-01'); + + +-- +-- Name: service_history_services_2028; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2028 FOR VALUES FROM ('2028-01-01') TO ('2029-01-01'); + + +-- +-- Name: service_history_services_2029; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2029 FOR VALUES FROM ('2029-01-01') TO ('2030-01-01'); + + +-- +-- Name: service_history_services_2030; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2030 FOR VALUES FROM ('2030-01-01') TO ('2031-01-01'); + + +-- +-- Name: service_history_services_2031; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2031 FOR VALUES FROM ('2031-01-01') TO ('2032-01-01'); + + +-- +-- Name: service_history_services_2032; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2032 FOR VALUES FROM ('2032-01-01') TO ('2033-01-01'); + + +-- +-- Name: service_history_services_2033; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2033 FOR VALUES FROM ('2033-01-01') TO ('2034-01-01'); + + +-- +-- Name: service_history_services_2034; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2034 FOR VALUES FROM ('2034-01-01') TO ('2035-01-01'); + + +-- +-- Name: service_history_services_2035; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2035 FOR VALUES FROM ('2035-01-01') TO ('2036-01-01'); + + +-- +-- Name: service_history_services_2036; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2036 FOR VALUES FROM ('2036-01-01') TO ('2037-01-01'); + + +-- +-- Name: service_history_services_2037; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2037 FOR VALUES FROM ('2037-01-01') TO ('2038-01-01'); + + +-- +-- Name: service_history_services_2038; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2038 FOR VALUES FROM ('2038-01-01') TO ('2039-01-01'); + + +-- +-- Name: service_history_services_2039; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2039 FOR VALUES FROM ('2039-01-01') TO ('2040-01-01'); + + +-- +-- Name: service_history_services_2040; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2040 FOR VALUES FROM ('2040-01-01') TO ('2041-01-01'); + + +-- +-- Name: service_history_services_2041; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2041 FOR VALUES FROM ('2041-01-01') TO ('2042-01-01'); + + +-- +-- Name: service_history_services_2042; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2042 FOR VALUES FROM ('2042-01-01') TO ('2043-01-01'); + + +-- +-- Name: service_history_services_2043; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2043 FOR VALUES FROM ('2043-01-01') TO ('2044-01-01'); + + +-- +-- Name: service_history_services_2044; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2044 FOR VALUES FROM ('2044-01-01') TO ('2045-01-01'); + + +-- +-- Name: service_history_services_2045; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2045 FOR VALUES FROM ('2045-01-01') TO ('2046-01-01'); + + +-- +-- Name: service_history_services_2046; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2046 FOR VALUES FROM ('2046-01-01') TO ('2047-01-01'); + + +-- +-- Name: service_history_services_2047; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2047 FOR VALUES FROM ('2047-01-01') TO ('2048-01-01'); + + +-- +-- Name: service_history_services_2048; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2048 FOR VALUES FROM ('2048-01-01') TO ('2049-01-01'); + + +-- +-- Name: service_history_services_2049; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2049 FOR VALUES FROM ('2049-01-01') TO ('2050-01-01'); + + +-- +-- Name: service_history_services_2050; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2050 FOR VALUES FROM ('2050-01-01') TO ('2051-01-01'); + + +-- +-- Name: service_history_services_remainder; Type: TABLE ATTACH; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_remainder DEFAULT; + + +-- +-- Name: Affiliation id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Affiliation" ALTER COLUMN id SET DEFAULT nextval('public."Affiliation_id_seq"'::regclass); + + +-- +-- Name: Assessment id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Assessment" ALTER COLUMN id SET DEFAULT nextval('public."Assessment_id_seq"'::regclass); + + +-- +-- Name: AssessmentQuestions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."AssessmentQuestions" ALTER COLUMN id SET DEFAULT nextval('public."AssessmentQuestions_id_seq"'::regclass); + + +-- +-- Name: AssessmentResults id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."AssessmentResults" ALTER COLUMN id SET DEFAULT nextval('public."AssessmentResults_id_seq"'::regclass); + + +-- +-- Name: CEParticipation id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CEParticipation" ALTER COLUMN id SET DEFAULT nextval('public."CEParticipation_id_seq"'::regclass); + + +-- +-- Name: Client id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Client" ALTER COLUMN id SET DEFAULT nextval('public."Client_id_seq"'::regclass); + + +-- +-- Name: CurrentLivingSituation id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CurrentLivingSituation" ALTER COLUMN id SET DEFAULT nextval('public."CurrentLivingSituation_id_seq"'::regclass); + + +-- +-- Name: CustomAssessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomAssessments" ALTER COLUMN id SET DEFAULT nextval('public."CustomAssessments_id_seq"'::regclass); + + +-- +-- Name: CustomCaseNote id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomCaseNote" ALTER COLUMN id SET DEFAULT nextval('public."CustomCaseNote_id_seq"'::regclass); + + +-- +-- Name: CustomClientAddress id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomClientAddress" ALTER COLUMN id SET DEFAULT nextval('public."CustomClientAddress_id_seq"'::regclass); + + +-- +-- Name: CustomClientAssessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomClientAssessments" ALTER COLUMN id SET DEFAULT nextval('public."CustomClientAssessments_id_seq"'::regclass); + + +-- +-- Name: CustomClientContactPoint id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomClientContactPoint" ALTER COLUMN id SET DEFAULT nextval('public."CustomClientContactPoint_id_seq"'::regclass); + + +-- +-- Name: CustomClientName id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomClientName" ALTER COLUMN id SET DEFAULT nextval('public."CustomClientName_id_seq"'::regclass); + + +-- +-- Name: CustomDataElementDefinitions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomDataElementDefinitions" ALTER COLUMN id SET DEFAULT nextval('public."CustomDataElementDefinitions_id_seq"'::regclass); + + +-- +-- Name: CustomDataElements id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomDataElements" ALTER COLUMN id SET DEFAULT nextval('public."CustomDataElements_id_seq"'::regclass); + + +-- +-- Name: CustomProjectAssessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomProjectAssessments" ALTER COLUMN id SET DEFAULT nextval('public."CustomProjectAssessments_id_seq"'::regclass); + + +-- +-- Name: CustomServiceCategories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomServiceCategories" ALTER COLUMN id SET DEFAULT nextval('public."CustomServiceCategories_id_seq"'::regclass); + + +-- +-- Name: CustomServiceTypes id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomServiceTypes" ALTER COLUMN id SET DEFAULT nextval('public."CustomServiceTypes_id_seq"'::regclass); + + +-- +-- Name: CustomServices id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomServices" ALTER COLUMN id SET DEFAULT nextval('public."CustomServices_id_seq"'::regclass); + + +-- +-- Name: Disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Disabilities" ALTER COLUMN id SET DEFAULT nextval('public."Disabilities_id_seq"'::regclass); + + +-- +-- Name: EmploymentEducation id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."EmploymentEducation" ALTER COLUMN id SET DEFAULT nextval('public."EmploymentEducation_id_seq"'::regclass); + + +-- +-- Name: Enrollment id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Enrollment" ALTER COLUMN id SET DEFAULT nextval('public."Enrollment_id_seq"'::regclass); + + +-- +-- Name: EnrollmentCoC id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."EnrollmentCoC" ALTER COLUMN id SET DEFAULT nextval('public."EnrollmentCoC_id_seq"'::regclass); + + +-- +-- Name: Event id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Event" ALTER COLUMN id SET DEFAULT nextval('public."Event_id_seq"'::regclass); + + +-- +-- Name: Exit id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Exit" ALTER COLUMN id SET DEFAULT nextval('public."Exit_id_seq"'::regclass); + + +-- +-- Name: Export id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Export" ALTER COLUMN id SET DEFAULT nextval('public."Export_id_seq"'::regclass); + + +-- +-- Name: Funder id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Funder" ALTER COLUMN id SET DEFAULT nextval('public."Funder_id_seq"'::regclass); + + +-- +-- Name: Geography id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Geography" ALTER COLUMN id SET DEFAULT nextval('public."Geography_id_seq"'::regclass); + + +-- +-- Name: HMISParticipation id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."HMISParticipation" ALTER COLUMN id SET DEFAULT nextval('public."HMISParticipation_id_seq"'::regclass); + + +-- +-- Name: HealthAndDV id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."HealthAndDV" ALTER COLUMN id SET DEFAULT nextval('public."HealthAndDV_id_seq"'::regclass); + + +-- +-- Name: IncomeBenefits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."IncomeBenefits" ALTER COLUMN id SET DEFAULT nextval('public."IncomeBenefits_id_seq"'::regclass); + + +-- +-- Name: Inventory id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Inventory" ALTER COLUMN id SET DEFAULT nextval('public."Inventory_id_seq"'::regclass); + + +-- +-- Name: Organization id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Organization" ALTER COLUMN id SET DEFAULT nextval('public."Organization_id_seq"'::regclass); + + +-- +-- Name: Project id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Project" ALTER COLUMN id SET DEFAULT nextval('public."Project_id_seq"'::regclass); + + +-- +-- Name: ProjectCoC id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."ProjectCoC" ALTER COLUMN id SET DEFAULT nextval('public."ProjectCoC_id_seq"'::regclass); + + +-- +-- Name: Services id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Services" ALTER COLUMN id SET DEFAULT nextval('public."Services_id_seq"'::regclass); + + +-- +-- Name: User id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."User" ALTER COLUMN id SET DEFAULT nextval('public."User_id_seq"'::regclass); + + +-- +-- Name: YouthEducationStatus id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."YouthEducationStatus" ALTER COLUMN id SET DEFAULT nextval('public."YouthEducationStatus_id_seq"'::regclass); + + +-- +-- Name: ac_hmis_projects_import_attempts id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ac_hmis_projects_import_attempts ALTER COLUMN id SET DEFAULT nextval('public.ac_hmis_projects_import_attempts_id_seq'::regclass); + + +-- +-- Name: ad_hoc_batches id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ad_hoc_batches ALTER COLUMN id SET DEFAULT nextval('public.ad_hoc_batches_id_seq'::regclass); + + +-- +-- Name: ad_hoc_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ad_hoc_clients ALTER COLUMN id SET DEFAULT nextval('public.ad_hoc_clients_id_seq'::regclass); + + +-- +-- Name: ad_hoc_data_sources id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ad_hoc_data_sources ALTER COLUMN id SET DEFAULT nextval('public.ad_hoc_data_sources_id_seq'::regclass); + + +-- +-- Name: administrative_events id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.administrative_events ALTER COLUMN id SET DEFAULT nextval('public.administrative_events_id_seq'::regclass); + + +-- +-- Name: anomalies id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.anomalies ALTER COLUMN id SET DEFAULT nextval('public.anomalies_id_seq'::regclass); + + +-- +-- Name: ansd_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ansd_enrollments ALTER COLUMN id SET DEFAULT nextval('public.ansd_enrollments_id_seq'::regclass); + + +-- +-- Name: ansd_events id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ansd_events ALTER COLUMN id SET DEFAULT nextval('public.ansd_events_id_seq'::regclass); + + +-- +-- Name: api_client_data_source_ids id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.api_client_data_source_ids ALTER COLUMN id SET DEFAULT nextval('public.api_client_data_source_ids_id_seq'::regclass); + + +-- +-- Name: assessment_answer_lookups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.assessment_answer_lookups ALTER COLUMN id SET DEFAULT nextval('public.assessment_answer_lookups_id_seq'::regclass); + + +-- +-- Name: available_file_tags id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.available_file_tags ALTER COLUMN id SET DEFAULT nextval('public.available_file_tags_id_seq'::regclass); + + +-- +-- Name: bo_configs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.bo_configs ALTER COLUMN id SET DEFAULT nextval('public.bo_configs_id_seq'::regclass); + + +-- +-- Name: boston_project_scorecard_reports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.boston_project_scorecard_reports ALTER COLUMN id SET DEFAULT nextval('public.boston_project_scorecard_reports_id_seq'::regclass); + + +-- +-- Name: boston_report_configs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.boston_report_configs ALTER COLUMN id SET DEFAULT nextval('public.boston_report_configs_id_seq'::regclass); + + +-- +-- Name: cas_availabilities id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_availabilities ALTER COLUMN id SET DEFAULT nextval('public.cas_availabilities_id_seq'::regclass); + + +-- +-- Name: cas_ce_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_ce_assessments ALTER COLUMN id SET DEFAULT nextval('public.cas_ce_assessments_id_seq'::regclass); + + +-- +-- Name: cas_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_enrollments ALTER COLUMN id SET DEFAULT nextval('public.cas_enrollments_id_seq'::regclass); + + +-- +-- Name: cas_houseds id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_houseds ALTER COLUMN id SET DEFAULT nextval('public.cas_houseds_id_seq'::regclass); + + +-- +-- Name: cas_non_hmis_client_histories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_non_hmis_client_histories ALTER COLUMN id SET DEFAULT nextval('public.cas_non_hmis_client_histories_id_seq'::regclass); + + +-- +-- Name: cas_programs_to_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_programs_to_projects ALTER COLUMN id SET DEFAULT nextval('public.cas_programs_to_projects_id_seq'::regclass); + + +-- +-- Name: cas_referral_events id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_referral_events ALTER COLUMN id SET DEFAULT nextval('public.cas_referral_events_id_seq'::regclass); + + +-- +-- Name: cas_reports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_reports ALTER COLUMN id SET DEFAULT nextval('public.cas_reports_id_seq'::regclass); + + +-- +-- Name: cas_vacancies id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_vacancies ALTER COLUMN id SET DEFAULT nextval('public.cas_vacancies_id_seq'::regclass); + + +-- +-- Name: ce_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ce_assessments ALTER COLUMN id SET DEFAULT nextval('public.ce_assessments_id_seq'::regclass); + + +-- +-- Name: ce_performance_ce_aprs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ce_performance_ce_aprs ALTER COLUMN id SET DEFAULT nextval('public.ce_performance_ce_aprs_id_seq'::regclass); + + +-- +-- Name: ce_performance_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ce_performance_clients ALTER COLUMN id SET DEFAULT nextval('public.ce_performance_clients_id_seq'::regclass); + + +-- +-- Name: ce_performance_goals id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ce_performance_goals ALTER COLUMN id SET DEFAULT nextval('public.ce_performance_goals_id_seq'::regclass); + + +-- +-- Name: ce_performance_results id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ce_performance_results ALTER COLUMN id SET DEFAULT nextval('public.ce_performance_results_id_seq'::regclass); + + +-- +-- Name: census_by_project_types id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.census_by_project_types ALTER COLUMN id SET DEFAULT nextval('public.census_by_project_types_id_seq'::regclass); + + +-- +-- Name: census_groups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.census_groups ALTER COLUMN id SET DEFAULT nextval('public.census_groups_id_seq'::regclass); + + +-- +-- Name: census_values id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.census_values ALTER COLUMN id SET DEFAULT nextval('public.census_values_id_seq'::regclass); + + +-- +-- Name: census_variables id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.census_variables ALTER COLUMN id SET DEFAULT nextval('public.census_variables_id_seq'::regclass); + + +-- +-- Name: censuses id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.censuses ALTER COLUMN id SET DEFAULT nextval('public.censuses_id_seq'::regclass); + + +-- +-- Name: ch_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ch_enrollments ALTER COLUMN id SET DEFAULT nextval('public.ch_enrollments_id_seq'::regclass); + + +-- +-- Name: children id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.children ALTER COLUMN id SET DEFAULT nextval('public.children_id_seq'::regclass); + + +-- +-- Name: chronics id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.chronics ALTER COLUMN id SET DEFAULT nextval('public.chronics_id_seq'::regclass); + + +-- +-- Name: clh_locations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.clh_locations ALTER COLUMN id SET DEFAULT nextval('public.clh_locations_id_seq'::regclass); + + +-- +-- Name: client_contacts id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.client_contacts ALTER COLUMN id SET DEFAULT nextval('public.client_contacts_id_seq'::regclass); + + +-- +-- Name: client_matches id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.client_matches ALTER COLUMN id SET DEFAULT nextval('public.client_matches_id_seq'::regclass); + + +-- +-- Name: client_merge_histories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.client_merge_histories ALTER COLUMN id SET DEFAULT nextval('public.client_merge_histories_id_seq'::regclass); + + +-- +-- Name: client_notes id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.client_notes ALTER COLUMN id SET DEFAULT nextval('public.client_notes_id_seq'::regclass); + + +-- +-- Name: client_roi_authorizations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.client_roi_authorizations ALTER COLUMN id SET DEFAULT nextval('public.client_roi_authorizations_id_seq'::regclass); + + +-- +-- Name: client_split_histories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.client_split_histories ALTER COLUMN id SET DEFAULT nextval('public.client_split_histories_id_seq'::regclass); + + +-- +-- Name: coc_codes id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.coc_codes ALTER COLUMN id SET DEFAULT nextval('public.coc_codes_id_seq'::regclass); + + +-- +-- Name: coc_pit_counts id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.coc_pit_counts ALTER COLUMN id SET DEFAULT nextval('public.coc_pit_counts_id_seq'::regclass); + + +-- +-- Name: cohort_client_changes id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cohort_client_changes ALTER COLUMN id SET DEFAULT nextval('public.cohort_client_changes_id_seq'::regclass); + + +-- +-- Name: cohort_client_notes id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cohort_client_notes ALTER COLUMN id SET DEFAULT nextval('public.cohort_client_notes_id_seq'::regclass); + + +-- +-- Name: cohort_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cohort_clients ALTER COLUMN id SET DEFAULT nextval('public.cohort_clients_id_seq'::regclass); + + +-- +-- Name: cohort_column_options id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cohort_column_options ALTER COLUMN id SET DEFAULT nextval('public.cohort_column_options_id_seq'::regclass); + + +-- +-- Name: cohort_tabs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cohort_tabs ALTER COLUMN id SET DEFAULT nextval('public.cohort_tabs_id_seq'::regclass); + + +-- +-- Name: cohorts id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cohorts ALTER COLUMN id SET DEFAULT nextval('public.cohorts_id_seq'::regclass); + + +-- +-- Name: configs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.configs ALTER COLUMN id SET DEFAULT nextval('public.configs_id_seq'::regclass); + + +-- +-- Name: contacts id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.contacts ALTER COLUMN id SET DEFAULT nextval('public.contacts_id_seq'::regclass); + + +-- +-- Name: csg_engage_agencies id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.csg_engage_agencies ALTER COLUMN id SET DEFAULT nextval('public.csg_engage_agencies_id_seq'::regclass); + + +-- +-- Name: csg_engage_program_mappings id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.csg_engage_program_mappings ALTER COLUMN id SET DEFAULT nextval('public.csg_engage_program_mappings_id_seq'::regclass); + + +-- +-- Name: csg_engage_program_reports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.csg_engage_program_reports ALTER COLUMN id SET DEFAULT nextval('public.csg_engage_program_reports_id_seq'::regclass); + + +-- +-- Name: csg_engage_programs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.csg_engage_programs ALTER COLUMN id SET DEFAULT nextval('public.csg_engage_programs_id_seq'::regclass); + + +-- +-- Name: csg_engage_reports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.csg_engage_reports ALTER COLUMN id SET DEFAULT nextval('public.csg_engage_reports_id_seq'::regclass); + + +-- +-- Name: custom_imports_b_al_rows id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.custom_imports_b_al_rows ALTER COLUMN id SET DEFAULT nextval('public.custom_imports_b_al_rows_id_seq'::regclass); + + +-- +-- Name: custom_imports_b_contacts_rows id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.custom_imports_b_contacts_rows ALTER COLUMN id SET DEFAULT nextval('public.custom_imports_b_contacts_rows_id_seq'::regclass); + + +-- +-- Name: custom_imports_b_coo_rows id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.custom_imports_b_coo_rows ALTER COLUMN id SET DEFAULT nextval('public.custom_imports_b_coo_rows_id_seq'::regclass); + + +-- +-- Name: custom_imports_b_services_rows id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.custom_imports_b_services_rows ALTER COLUMN id SET DEFAULT nextval('public.custom_imports_b_services_rows_id_seq'::regclass); + + +-- +-- Name: custom_imports_config id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.custom_imports_config ALTER COLUMN id SET DEFAULT nextval('public.custom_imports_config_id_seq'::regclass); + + +-- +-- Name: custom_imports_files id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.custom_imports_files ALTER COLUMN id SET DEFAULT nextval('public.custom_imports_files_id_seq'::regclass); + + +-- +-- Name: dashboard_export_reports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.dashboard_export_reports ALTER COLUMN id SET DEFAULT nextval('public.dashboard_export_reports_id_seq'::regclass); + + +-- +-- Name: data_monitorings id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.data_monitorings ALTER COLUMN id SET DEFAULT nextval('public.data_monitorings_id_seq'::regclass); + + +-- +-- Name: data_sources id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.data_sources ALTER COLUMN id SET DEFAULT nextval('public.data_sources_id_seq'::regclass); + + +-- +-- Name: datasets id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.datasets ALTER COLUMN id SET DEFAULT nextval('public.datasets_id_seq'::regclass); + + +-- +-- Name: direct_financial_assistances id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.direct_financial_assistances ALTER COLUMN id SET DEFAULT nextval('public.direct_financial_assistances_id_seq'::regclass); + + +-- +-- Name: document_exports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.document_exports ALTER COLUMN id SET DEFAULT nextval('public.document_exports_id_seq'::regclass); + + +-- +-- Name: eccovia_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eccovia_assessments ALTER COLUMN id SET DEFAULT nextval('public.eccovia_assessments_id_seq'::regclass); + + +-- +-- Name: eccovia_case_managers id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eccovia_case_managers ALTER COLUMN id SET DEFAULT nextval('public.eccovia_case_managers_id_seq'::regclass); + + +-- +-- Name: eccovia_client_contacts id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eccovia_client_contacts ALTER COLUMN id SET DEFAULT nextval('public.eccovia_client_contacts_id_seq'::regclass); + + +-- +-- Name: eccovia_fetches id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eccovia_fetches ALTER COLUMN id SET DEFAULT nextval('public.eccovia_fetches_id_seq'::regclass); + + +-- +-- Name: enrollment_change_histories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.enrollment_change_histories ALTER COLUMN id SET DEFAULT nextval('public.enrollment_change_histories_id_seq'::regclass); + + +-- +-- Name: enrollment_extras id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.enrollment_extras ALTER COLUMN id SET DEFAULT nextval('public.enrollment_extras_id_seq'::regclass); + + +-- +-- Name: eto_api_configs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eto_api_configs ALTER COLUMN id SET DEFAULT nextval('public.eto_api_configs_id_seq'::regclass); + + +-- +-- Name: eto_client_lookups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eto_client_lookups ALTER COLUMN id SET DEFAULT nextval('public.eto_client_lookups_id_seq'::regclass); + + +-- +-- Name: eto_subject_response_lookups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eto_subject_response_lookups ALTER COLUMN id SET DEFAULT nextval('public.eto_subject_response_lookups_id_seq'::regclass); + + +-- +-- Name: eto_touch_point_lookups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eto_touch_point_lookups ALTER COLUMN id SET DEFAULT nextval('public.eto_touch_point_lookups_id_seq'::regclass); + + +-- +-- Name: eto_touch_point_response_times id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eto_touch_point_response_times ALTER COLUMN id SET DEFAULT nextval('public.eto_touch_point_response_times_id_seq'::regclass); + + +-- +-- Name: exports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.exports ALTER COLUMN id SET DEFAULT nextval('public.exports_id_seq'::regclass); + + +-- +-- Name: exports_ad_hoc_anons id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.exports_ad_hoc_anons ALTER COLUMN id SET DEFAULT nextval('public.exports_ad_hoc_anons_id_seq'::regclass); + + +-- +-- Name: exports_ad_hocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.exports_ad_hocs ALTER COLUMN id SET DEFAULT nextval('public.exports_ad_hocs_id_seq'::regclass); + + +-- +-- Name: external_ids id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.external_ids ALTER COLUMN id SET DEFAULT nextval('public.external_ids_id_seq'::regclass); + + +-- +-- Name: external_reporting_cohort_permissions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.external_reporting_cohort_permissions ALTER COLUMN id SET DEFAULT nextval('public.external_reporting_cohort_permissions_id_seq'::regclass); + + +-- +-- Name: external_reporting_project_permissions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.external_reporting_project_permissions ALTER COLUMN id SET DEFAULT nextval('public.external_reporting_project_permissions_id_seq'::regclass); + + +-- +-- Name: external_request_logs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.external_request_logs ALTER COLUMN id SET DEFAULT nextval('public.external_request_logs_id_seq'::regclass); + + +-- +-- Name: fake_data id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.fake_data ALTER COLUMN id SET DEFAULT nextval('public.fake_data_id_seq'::regclass); + + +-- +-- Name: favorites id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.favorites ALTER COLUMN id SET DEFAULT nextval('public.favorites_id_seq'::regclass); + + +-- +-- Name: federal_census_breakdowns id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.federal_census_breakdowns ALTER COLUMN id SET DEFAULT nextval('public.federal_census_breakdowns_id_seq'::regclass); + + +-- +-- Name: files id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.files ALTER COLUMN id SET DEFAULT nextval('public.files_id_seq'::regclass); + + +-- +-- Name: financial_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.financial_clients ALTER COLUMN id SET DEFAULT nextval('public.financial_clients_id_seq'::regclass); + + +-- +-- Name: financial_providers id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.financial_providers ALTER COLUMN id SET DEFAULT nextval('public.financial_providers_id_seq'::regclass); + + +-- +-- Name: financial_transactions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.financial_transactions ALTER COLUMN id SET DEFAULT nextval('public.financial_transactions_id_seq'::regclass); + + +-- +-- Name: generate_service_history_batch_logs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.generate_service_history_batch_logs ALTER COLUMN id SET DEFAULT nextval('public.generate_service_history_batch_logs_id_seq'::regclass); + + +-- +-- Name: generate_service_history_log id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.generate_service_history_log ALTER COLUMN id SET DEFAULT nextval('public.generate_service_history_log_id_seq'::regclass); + + +-- +-- Name: generic_services id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.generic_services ALTER COLUMN id SET DEFAULT nextval('public.generic_services_id_seq'::regclass); + + +-- +-- Name: grades id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.grades ALTER COLUMN id SET DEFAULT nextval('public.grades_id_seq'::regclass); + + +-- +-- Name: group_viewable_entities id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.group_viewable_entities ALTER COLUMN id SET DEFAULT nextval('public.group_viewable_entities_id_seq'::regclass); + + +-- +-- Name: hap_report_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hap_report_clients ALTER COLUMN id SET DEFAULT nextval('public.hap_report_clients_id_seq'::regclass); + + +-- +-- Name: hap_report_eraps id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hap_report_eraps ALTER COLUMN id SET DEFAULT nextval('public.hap_report_eraps_id_seq'::regclass); + + +-- +-- Name: health_emergency_ama_restrictions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_ama_restrictions ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_ama_restrictions_id_seq'::regclass); + + +-- +-- Name: health_emergency_clinical_triages id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_clinical_triages ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_clinical_triages_id_seq'::regclass); + + +-- +-- Name: health_emergency_isolations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_isolations ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_isolations_id_seq'::regclass); + + +-- +-- Name: health_emergency_test_batches id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_test_batches ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_test_batches_id_seq'::regclass); + + +-- +-- Name: health_emergency_tests id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_tests ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_tests_id_seq'::regclass); + + +-- +-- Name: health_emergency_triages id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_triages ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_triages_id_seq'::regclass); + + +-- +-- Name: health_emergency_uploaded_tests id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_uploaded_tests ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_uploaded_tests_id_seq'::regclass); + + +-- +-- Name: health_emergency_vaccinations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_vaccinations ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_vaccinations_id_seq'::regclass); + + +-- +-- Name: helps id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.helps ALTER COLUMN id SET DEFAULT nextval('public.helps_id_seq'::regclass); + + +-- +-- Name: hmis_2020_affiliations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_affiliations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_affiliations_id_seq'::regclass); + + +-- +-- Name: hmis_2020_aggregated_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_aggregated_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_aggregated_enrollments_id_seq'::regclass); + + +-- +-- Name: hmis_2020_aggregated_exits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_aggregated_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_aggregated_exits_id_seq'::regclass); + + +-- +-- Name: hmis_2020_assessment_questions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_assessment_questions ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_assessment_questions_id_seq'::regclass); + + +-- +-- Name: hmis_2020_assessment_results id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_assessment_results ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_assessment_results_id_seq'::regclass); + + +-- +-- Name: hmis_2020_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_assessments_id_seq'::regclass); + + +-- +-- Name: hmis_2020_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_clients_id_seq'::regclass); + + +-- +-- Name: hmis_2020_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_current_living_situations_id_seq'::regclass); + + +-- +-- Name: hmis_2020_disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_disabilities ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_disabilities_id_seq'::regclass); + + +-- +-- Name: hmis_2020_employment_educations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_employment_educations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_employment_educations_id_seq'::regclass); + + +-- +-- Name: hmis_2020_enrollment_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_enrollment_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_enrollment_cocs_id_seq'::regclass); + + +-- +-- Name: hmis_2020_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_enrollments_id_seq'::regclass); + + +-- +-- Name: hmis_2020_events id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_events_id_seq'::regclass); + + +-- +-- Name: hmis_2020_exits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_exits_id_seq'::regclass); + + +-- +-- Name: hmis_2020_exports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_exports ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_exports_id_seq'::regclass); + + +-- +-- Name: hmis_2020_funders id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_funders ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_funders_id_seq'::regclass); + + +-- +-- Name: hmis_2020_health_and_dvs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_health_and_dvs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_health_and_dvs_id_seq'::regclass); + + +-- +-- Name: hmis_2020_income_benefits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_income_benefits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_income_benefits_id_seq'::regclass); + + +-- +-- Name: hmis_2020_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_inventories_id_seq'::regclass); + + +-- +-- Name: hmis_2020_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_organizations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_organizations_id_seq'::regclass); + + +-- +-- Name: hmis_2020_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_project_cocs_id_seq'::regclass); + + +-- +-- Name: hmis_2020_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_projects ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_projects_id_seq'::regclass); + + +-- +-- Name: hmis_2020_services id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_services ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_services_id_seq'::regclass); + + +-- +-- Name: hmis_2020_users id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_users ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_users_id_seq'::regclass); + + +-- +-- Name: hmis_2022_affiliations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_affiliations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_affiliations_id_seq'::regclass); + + +-- +-- Name: hmis_2022_assessment_questions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_assessment_questions ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_assessment_questions_id_seq'::regclass); + + +-- +-- Name: hmis_2022_assessment_results id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_assessment_results ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_assessment_results_id_seq'::regclass); + + +-- +-- Name: hmis_2022_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_assessments_id_seq'::regclass); + + +-- +-- Name: hmis_2022_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass); + + +-- +-- Name: hmis_2022_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_current_living_situations_id_seq'::regclass); + + +-- +-- Name: hmis_2022_disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_disabilities ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_disabilities_id_seq'::regclass); + + +-- +-- Name: hmis_2022_employment_educations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_employment_educations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_employment_educations_id_seq'::regclass); + + +-- +-- Name: hmis_2022_enrollment_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollment_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_enrollment_cocs_id_seq'::regclass); + + +-- +-- Name: hmis_2022_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass); + + +-- +-- Name: hmis_2022_events id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_events_id_seq'::regclass); + + +-- +-- Name: hmis_2022_exits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass); + + +-- +-- Name: hmis_2022_exports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exports ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_exports_id_seq'::regclass); + + +-- +-- Name: hmis_2022_funders id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_funders ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_funders_id_seq'::regclass); + + +-- +-- Name: hmis_2022_health_and_dvs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_health_and_dvs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_health_and_dvs_id_seq'::regclass); + + +-- +-- Name: hmis_2022_income_benefits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_income_benefits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_income_benefits_id_seq'::regclass); + + +-- +-- Name: hmis_2022_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_inventories_id_seq'::regclass); + + +-- +-- Name: hmis_2022_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_organizations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_organizations_id_seq'::regclass); + + +-- +-- Name: hmis_2022_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_project_cocs_id_seq'::regclass); + + +-- +-- Name: hmis_2022_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_projects ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_projects_id_seq'::regclass); + + +-- +-- Name: hmis_2022_services id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass); + + +-- +-- Name: hmis_2022_users id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_users ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_users_id_seq'::regclass); + + +-- +-- Name: hmis_2022_youth_education_statuses id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_youth_education_statuses ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_youth_education_statuses_id_seq'::regclass); + + +-- +-- Name: hmis_2024_affiliations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_affiliations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_affiliations_id_seq'::regclass); + + +-- +-- Name: hmis_2024_assessment_questions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_assessment_questions ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_assessment_questions_id_seq'::regclass); + + +-- +-- Name: hmis_2024_assessment_results id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_assessment_results ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_assessment_results_id_seq'::regclass); + + +-- +-- Name: hmis_2024_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_assessments_id_seq'::regclass); + + +-- +-- Name: hmis_2024_ce_participations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_ce_participations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_ce_participations_id_seq'::regclass); + + +-- +-- Name: hmis_2024_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_clients_id_seq'::regclass); + + +-- +-- Name: hmis_2024_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_current_living_situations_id_seq'::regclass); + + +-- +-- Name: hmis_2024_disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_disabilities ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_disabilities_id_seq'::regclass); + + +-- +-- Name: hmis_2024_employment_educations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_employment_educations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_employment_educations_id_seq'::regclass); + + +-- +-- Name: hmis_2024_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_enrollments_id_seq'::regclass); + + +-- +-- Name: hmis_2024_events id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_events_id_seq'::regclass); + + +-- +-- Name: hmis_2024_exits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_exits_id_seq'::regclass); + + +-- +-- Name: hmis_2024_exports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_exports ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_exports_id_seq'::regclass); + + +-- +-- Name: hmis_2024_funders id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_funders ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_funders_id_seq'::regclass); + + +-- +-- Name: hmis_2024_health_and_dvs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_health_and_dvs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_health_and_dvs_id_seq'::regclass); + + +-- +-- Name: hmis_2024_hmis_participations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_hmis_participations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_hmis_participations_id_seq'::regclass); + + +-- +-- Name: hmis_2024_income_benefits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_income_benefits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_income_benefits_id_seq'::regclass); + + +-- +-- Name: hmis_2024_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_inventories_id_seq'::regclass); + + +-- +-- Name: hmis_2024_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_organizations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_organizations_id_seq'::regclass); + + +-- +-- Name: hmis_2024_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_project_cocs_id_seq'::regclass); + + +-- +-- Name: hmis_2024_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_projects ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_projects_id_seq'::regclass); + + +-- +-- Name: hmis_2024_services id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_services ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_services_id_seq'::regclass); + + +-- +-- Name: hmis_2024_users id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_users ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_users_id_seq'::regclass); + + +-- +-- Name: hmis_2024_youth_education_statuses id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_youth_education_statuses ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_youth_education_statuses_id_seq'::regclass); + + +-- +-- Name: hmis_active_ranges id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_active_ranges ALTER COLUMN id SET DEFAULT nextval('public.hmis_active_ranges_id_seq'::regclass); + + +-- +-- Name: hmis_aggregated_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_aggregated_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_aggregated_enrollments_id_seq'::regclass); + + +-- +-- Name: hmis_aggregated_exits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_aggregated_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_aggregated_exits_id_seq'::regclass); + + +-- +-- Name: hmis_assessment_details id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_assessment_details ALTER COLUMN id SET DEFAULT nextval('public.hmis_assessment_details_id_seq'::regclass); + + +-- +-- Name: hmis_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_assessments_id_seq'::regclass); + + +-- +-- Name: hmis_auto_exit_configs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_auto_exit_configs ALTER COLUMN id SET DEFAULT nextval('public.hmis_auto_exit_configs_id_seq'::regclass); + + +-- +-- Name: hmis_case_notes id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_case_notes ALTER COLUMN id SET DEFAULT nextval('public.hmis_case_notes_id_seq'::regclass); + + +-- +-- Name: hmis_client_alerts id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_client_alerts ALTER COLUMN id SET DEFAULT nextval('public.hmis_client_alerts_id_seq'::regclass); + + +-- +-- Name: hmis_client_attributes_defined_text id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_client_attributes_defined_text ALTER COLUMN id SET DEFAULT nextval('public.hmis_client_attributes_defined_text_id_seq'::regclass); + + +-- +-- Name: hmis_client_merge_audits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_client_merge_audits ALTER COLUMN id SET DEFAULT nextval('public.hmis_client_merge_audits_id_seq'::regclass); + + +-- +-- Name: hmis_client_merge_histories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_client_merge_histories ALTER COLUMN id SET DEFAULT nextval('public.hmis_client_merge_histories_id_seq'::regclass); + + +-- +-- Name: hmis_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_clients_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_affiliations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_affiliations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_affiliations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_assessment_questions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_assessment_questions ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_assessment_questions_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_assessment_results id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_assessment_results ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_assessment_results_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_assessments_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_clients_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_current_living_situations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_disabilities ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_disabilities_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_employment_educations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_employment_educations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_employment_educations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_enrollment_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_enrollment_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_enrollment_cocs_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_enrollments_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_events id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_events_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_exits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_exits_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_exports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_exports ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_exports_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_funders id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_funders ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_funders_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_health_and_dvs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_health_and_dvs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_health_and_dvs_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_income_benefits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_income_benefits ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_income_benefits_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_inventories_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_organizations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_organizations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_project_cocs_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_projects ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_projects_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_services id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_services ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_services_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2020_users id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_users ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_users_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_affiliations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_affiliations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_affiliations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_assessment_questions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_assessment_questions ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_assessment_questions_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_assessment_results id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_assessment_results ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_assessment_results_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_assessments_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_clients_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_current_living_situations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_disabilities ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_disabilities_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_employment_educations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_employment_educations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_employment_educations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_enrollment_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_enrollment_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_enrollment_cocs_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_enrollments_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_events id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_events_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_exits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_exits_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_exports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_exports ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_exports_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_funders id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_funders ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_funders_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_health_and_dvs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_health_and_dvs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_health_and_dvs_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_income_benefits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_income_benefits ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_income_benefits_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_inventories_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_organizations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_organizations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_project_cocs_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_projects ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_projects_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_services id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_services ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_services_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_users id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_users ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_users_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2022_youth_education_statuses id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_youth_education_statuses ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_youth_education_statuses_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_affiliations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_affiliations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_affiliations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_assessment_questions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_assessment_questions ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_assessment_questions_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_assessment_results id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_assessment_results ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_assessment_results_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_assessments_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_ce_participations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_ce_participations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_ce_participations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_clients_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_current_living_situations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_disabilities ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_disabilities_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_employment_educations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_employment_educations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_employment_educations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_enrollments_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_events id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_events_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_exits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_exits_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_exports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_exports ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_exports_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_funders id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_funders ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_funders_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_health_and_dvs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_health_and_dvs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_health_and_dvs_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_hmis_participations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_hmis_participations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_hmis_participations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_income_benefits id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_income_benefits ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_income_benefits_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_inventories_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_organizations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_organizations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_project_cocs_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_projects ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_projects_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_services id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_services ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_services_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_users id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_users ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_users_id_seq'::regclass); + + +-- +-- Name: hmis_csv_2024_youth_education_statuses id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_youth_education_statuses ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_youth_education_statuses_id_seq'::regclass); + + +-- +-- Name: hmis_csv_import_errors id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_import_errors ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_import_errors_id_seq'::regclass); + + +-- +-- Name: hmis_csv_import_validations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_import_validations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_import_validations_id_seq'::regclass); + + +-- +-- Name: hmis_csv_importer_logs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_importer_logs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_importer_logs_id_seq'::regclass); + + +-- +-- Name: hmis_csv_load_errors id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_load_errors ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_load_errors_id_seq'::regclass); + + +-- +-- Name: hmis_csv_loader_logs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_loader_logs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_loader_logs_id_seq'::regclass); + + +-- +-- Name: hmis_dqt_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_assessments_id_seq'::regclass); + + +-- +-- Name: hmis_dqt_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_clients_id_seq'::regclass); + + +-- +-- Name: hmis_dqt_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_current_living_situations_id_seq'::regclass); + + +-- +-- Name: hmis_dqt_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_enrollments_id_seq'::regclass); + + +-- +-- Name: hmis_dqt_events id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_events_id_seq'::regclass); + + +-- +-- Name: hmis_dqt_goals id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_goals ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_goals_id_seq'::regclass); + + +-- +-- Name: hmis_dqt_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_inventories_id_seq'::regclass); + + +-- +-- Name: hmis_external_form_publications id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_form_publications ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_form_publications_id_seq'::regclass); + + +-- +-- Name: hmis_external_form_submissions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_form_submissions ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_form_submissions_id_seq'::regclass); + + +-- +-- Name: hmis_external_referral_household_members id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_referral_household_members ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_referral_household_members_id_seq'::regclass); + + +-- +-- Name: hmis_external_referral_postings id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_referral_postings ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_referral_postings_id_seq'::regclass); + + +-- +-- Name: hmis_external_referral_requests id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_referral_requests ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_referral_requests_id_seq'::regclass); + + +-- +-- Name: hmis_external_referrals id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_referrals ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_referrals_id_seq'::regclass); + + +-- +-- Name: hmis_external_unit_availability_syncs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_unit_availability_syncs ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_unit_availability_syncs_id_seq'::regclass); + + +-- +-- Name: hmis_form_definitions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_form_definitions ALTER COLUMN id SET DEFAULT nextval('public.hmis_form_definitions_id_seq'::regclass); + + +-- +-- Name: hmis_form_instances id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_form_instances ALTER COLUMN id SET DEFAULT nextval('public.hmis_form_instances_id_seq'::regclass); + + +-- +-- Name: hmis_form_processors id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_form_processors ALTER COLUMN id SET DEFAULT nextval('public.hmis_form_processors_id_seq'::regclass); + + +-- +-- Name: hmis_forms id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_forms ALTER COLUMN id SET DEFAULT nextval('public.hmis_forms_id_seq'::regclass); + + +-- +-- Name: hmis_group_viewable_entities id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_group_viewable_entities ALTER COLUMN id SET DEFAULT nextval('public.hmis_group_viewable_entities_id_seq'::regclass); + + +-- +-- Name: hmis_import_configs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_import_configs ALTER COLUMN id SET DEFAULT nextval('public.hmis_import_configs_id_seq'::regclass); + + +-- +-- Name: hmis_project_configs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_project_configs ALTER COLUMN id SET DEFAULT nextval('public.hmis_project_configs_id_seq'::regclass); + + +-- +-- Name: hmis_project_unit_type_mappings id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_project_unit_type_mappings ALTER COLUMN id SET DEFAULT nextval('public.hmis_project_unit_type_mappings_id_seq'::regclass); + + +-- +-- Name: hmis_scan_card_codes id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_scan_card_codes ALTER COLUMN id SET DEFAULT nextval('public.hmis_scan_card_codes_id_seq'::regclass); + + +-- +-- Name: hmis_staff id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_staff ALTER COLUMN id SET DEFAULT nextval('public.hmis_staff_id_seq'::regclass); + + +-- +-- Name: hmis_staff_assignment_relationships id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_staff_assignment_relationships ALTER COLUMN id SET DEFAULT nextval('public.hmis_staff_assignment_relationships_id_seq'::regclass); + + +-- +-- Name: hmis_staff_assignments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_staff_assignments ALTER COLUMN id SET DEFAULT nextval('public.hmis_staff_assignments_id_seq'::regclass); + + +-- +-- Name: hmis_staff_x_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_staff_x_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_staff_x_clients_id_seq'::regclass); + + +-- +-- Name: hmis_supplemental_data_sets id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_supplemental_data_sets ALTER COLUMN id SET DEFAULT nextval('public.hmis_supplemental_data_sets_id_seq'::regclass); + + +-- +-- Name: hmis_supplemental_field_values id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_supplemental_field_values ALTER COLUMN id SET DEFAULT nextval('public.hmis_supplemental_field_values_id_seq'::regclass); + + +-- +-- Name: hmis_unit_occupancy id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_unit_occupancy ALTER COLUMN id SET DEFAULT nextval('public.hmis_unit_occupancy_id_seq'::regclass); + + +-- +-- Name: hmis_unit_types id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_unit_types ALTER COLUMN id SET DEFAULT nextval('public.hmis_unit_types_id_seq'::regclass); + + +-- +-- Name: hmis_units id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_units ALTER COLUMN id SET DEFAULT nextval('public.hmis_units_id_seq'::regclass); + + +-- +-- Name: homeless_summary_report_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.homeless_summary_report_clients ALTER COLUMN id SET DEFAULT nextval('public.homeless_summary_report_clients_id_seq'::regclass); + + +-- +-- Name: homeless_summary_report_results id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.homeless_summary_report_results ALTER COLUMN id SET DEFAULT nextval('public.homeless_summary_report_results_id_seq'::regclass); + + +-- +-- Name: hopwa_caper_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hopwa_caper_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hopwa_caper_enrollments_id_seq'::regclass); + + +-- +-- Name: hopwa_caper_services id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hopwa_caper_services ALTER COLUMN id SET DEFAULT nextval('public.hopwa_caper_services_id_seq'::regclass); + + +-- +-- Name: housing_resolution_plans id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.housing_resolution_plans ALTER COLUMN id SET DEFAULT nextval('public.housing_resolution_plans_id_seq'::regclass); + + +-- +-- Name: hud_chronics id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_chronics ALTER COLUMN id SET DEFAULT nextval('public.hud_chronics_id_seq'::regclass); + + +-- +-- Name: hud_create_logs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_create_logs ALTER COLUMN id SET DEFAULT nextval('public.hud_create_logs_id_seq'::regclass); + + +-- +-- Name: hud_lsa_summary_results id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_lsa_summary_results ALTER COLUMN id SET DEFAULT nextval('public.hud_lsa_summary_results_id_seq'::regclass); + + +-- +-- Name: hud_report_apr_ce_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_apr_ce_assessments ALTER COLUMN id SET DEFAULT nextval('public.hud_report_apr_ce_assessments_id_seq'::regclass); + + +-- +-- Name: hud_report_apr_ce_events id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_apr_ce_events ALTER COLUMN id SET DEFAULT nextval('public.hud_report_apr_ce_events_id_seq'::regclass); + + +-- +-- Name: hud_report_apr_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_apr_clients ALTER COLUMN id SET DEFAULT nextval('public.hud_report_apr_clients_id_seq'::regclass); + + +-- +-- Name: hud_report_apr_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_apr_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hud_report_apr_living_situations_id_seq'::regclass); + + +-- +-- Name: hud_report_cells id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_cells ALTER COLUMN id SET DEFAULT nextval('public.hud_report_cells_id_seq'::regclass); + + +-- +-- Name: hud_report_dq_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_dq_clients ALTER COLUMN id SET DEFAULT nextval('public.hud_report_dq_clients_id_seq'::regclass); + + +-- +-- Name: hud_report_dq_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_dq_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hud_report_dq_living_situations_id_seq'::regclass); + + +-- +-- Name: hud_report_hic_funders id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_hic_funders ALTER COLUMN id SET DEFAULT nextval('public.hud_report_hic_funders_id_seq'::regclass); + + +-- +-- Name: hud_report_hic_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_hic_inventories ALTER COLUMN id SET DEFAULT nextval('public.hud_report_hic_inventories_id_seq'::regclass); + + +-- +-- Name: hud_report_hic_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_hic_organizations ALTER COLUMN id SET DEFAULT nextval('public.hud_report_hic_organizations_id_seq'::regclass); + + +-- +-- Name: hud_report_hic_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_hic_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hud_report_hic_project_cocs_id_seq'::regclass); + + +-- +-- Name: hud_report_hic_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_hic_projects ALTER COLUMN id SET DEFAULT nextval('public.hud_report_hic_projects_id_seq'::regclass); + + +-- +-- Name: hud_report_instances id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_instances ALTER COLUMN id SET DEFAULT nextval('public.hud_report_instances_id_seq'::regclass); + + +-- +-- Name: hud_report_path_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_path_clients ALTER COLUMN id SET DEFAULT nextval('public.hud_report_path_clients_id_seq'::regclass); + + +-- +-- Name: hud_report_pit_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_pit_clients ALTER COLUMN id SET DEFAULT nextval('public.hud_report_pit_clients_id_seq'::regclass); + + +-- +-- Name: hud_report_spm_bed_nights id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_spm_bed_nights ALTER COLUMN id SET DEFAULT nextval('public.hud_report_spm_bed_nights_id_seq'::regclass); + + +-- +-- Name: hud_report_spm_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_spm_clients ALTER COLUMN id SET DEFAULT nextval('public.hud_report_spm_clients_id_seq'::regclass); + + +-- +-- Name: hud_report_spm_enrollment_links id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_spm_enrollment_links ALTER COLUMN id SET DEFAULT nextval('public.hud_report_spm_enrollment_links_id_seq'::regclass); + + +-- +-- Name: hud_report_spm_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_spm_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hud_report_spm_enrollments_id_seq'::regclass); + + +-- +-- Name: hud_report_spm_episodes id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_spm_episodes ALTER COLUMN id SET DEFAULT nextval('public.hud_report_spm_episodes_id_seq'::regclass); + + +-- +-- Name: hud_report_spm_returns id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_spm_returns ALTER COLUMN id SET DEFAULT nextval('public.hud_report_spm_returns_id_seq'::regclass); + + +-- +-- Name: hud_report_universe_members id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_universe_members ALTER COLUMN id SET DEFAULT nextval('public.hud_report_universe_members_id_seq'::regclass); + + +-- +-- Name: identify_duplicates_log id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.identify_duplicates_log ALTER COLUMN id SET DEFAULT nextval('public.identify_duplicates_log_id_seq'::regclass); + + +-- +-- Name: import_logs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.import_logs ALTER COLUMN id SET DEFAULT nextval('public.import_logs_id_seq'::regclass); + + +-- +-- Name: import_overrides id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.import_overrides ALTER COLUMN id SET DEFAULT nextval('public.import_overrides_id_seq'::regclass); + + +-- +-- Name: inbound_api_configurations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.inbound_api_configurations ALTER COLUMN id SET DEFAULT nextval('public.inbound_api_configurations_id_seq'::regclass); + + +-- +-- Name: income_benefits_report_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.income_benefits_report_clients ALTER COLUMN id SET DEFAULT nextval('public.income_benefits_report_clients_id_seq'::regclass); + + +-- +-- Name: income_benefits_report_incomes id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.income_benefits_report_incomes ALTER COLUMN id SET DEFAULT nextval('public.income_benefits_report_incomes_id_seq'::regclass); + + +-- +-- Name: income_benefits_reports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.income_benefits_reports ALTER COLUMN id SET DEFAULT nextval('public.income_benefits_reports_id_seq'::regclass); + + +-- +-- Name: internal_systems id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.internal_systems ALTER COLUMN id SET DEFAULT nextval('public.internal_systems_id_seq'::regclass); + + +-- +-- Name: involved_in_imports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.involved_in_imports ALTER COLUMN id SET DEFAULT nextval('public.involved_in_imports_id_seq'::regclass); + + +-- +-- Name: lftp_s3_syncs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lftp_s3_syncs ALTER COLUMN id SET DEFAULT nextval('public.lftp_s3_syncs_id_seq'::regclass); + + +-- +-- Name: longitudinal_spm_results id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.longitudinal_spm_results ALTER COLUMN id SET DEFAULT nextval('public.longitudinal_spm_results_id_seq'::regclass); + + +-- +-- Name: longitudinal_spm_spms id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.longitudinal_spm_spms ALTER COLUMN id SET DEFAULT nextval('public.longitudinal_spm_spms_id_seq'::regclass); + + +-- +-- Name: longitudinal_spms id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.longitudinal_spms ALTER COLUMN id SET DEFAULT nextval('public.longitudinal_spms_id_seq'::regclass); + + +-- +-- Name: lookups_ethnicities id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_ethnicities ALTER COLUMN id SET DEFAULT nextval('public.lookups_ethnicities_id_seq'::regclass); + + +-- +-- Name: lookups_funding_sources id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_funding_sources ALTER COLUMN id SET DEFAULT nextval('public.lookups_funding_sources_id_seq'::regclass); + + +-- +-- Name: lookups_genders id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_genders ALTER COLUMN id SET DEFAULT nextval('public.lookups_genders_id_seq'::regclass); + + +-- +-- Name: lookups_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_living_situations ALTER COLUMN id SET DEFAULT nextval('public.lookups_living_situations_id_seq'::regclass); + + +-- +-- Name: lookups_project_types id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_project_types ALTER COLUMN id SET DEFAULT nextval('public.lookups_project_types_id_seq'::regclass); + + +-- +-- Name: lookups_relationships id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_relationships ALTER COLUMN id SET DEFAULT nextval('public.lookups_relationships_id_seq'::regclass); + + +-- +-- Name: lookups_tracking_methods id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_tracking_methods ALTER COLUMN id SET DEFAULT nextval('public.lookups_tracking_methods_id_seq'::regclass); + + +-- +-- Name: lookups_yes_no_etcs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_yes_no_etcs ALTER COLUMN id SET DEFAULT nextval('public.lookups_yes_no_etcs_id_seq'::regclass); + + +-- +-- Name: lsa_rds_state_logs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lsa_rds_state_logs ALTER COLUMN id SET DEFAULT nextval('public.lsa_rds_state_logs_id_seq'::regclass); + + +-- +-- Name: ma_monthly_performance_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ma_monthly_performance_enrollments ALTER COLUMN id SET DEFAULT nextval('public.ma_monthly_performance_enrollments_id_seq'::regclass); + + +-- +-- Name: ma_monthly_performance_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ma_monthly_performance_projects ALTER COLUMN id SET DEFAULT nextval('public.ma_monthly_performance_projects_id_seq'::regclass); + + +-- +-- Name: ma_yya_report_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ma_yya_report_clients ALTER COLUMN id SET DEFAULT nextval('public.ma_yya_report_clients_id_seq'::regclass); + + +-- +-- Name: new_service_history id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.new_service_history ALTER COLUMN id SET DEFAULT nextval('public.new_service_history_id_seq'::regclass); + + +-- +-- Name: nightly_census_by_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.nightly_census_by_projects ALTER COLUMN id SET DEFAULT nextval('public.nightly_census_by_projects_id_seq'::regclass); + + +-- +-- Name: non_hmis_uploads id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.non_hmis_uploads ALTER COLUMN id SET DEFAULT nextval('public.non_hmis_uploads_id_seq'::regclass); + + +-- +-- Name: performance_measurement_goals id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.performance_measurement_goals ALTER COLUMN id SET DEFAULT nextval('public.performance_measurement_goals_id_seq'::regclass); + + +-- +-- Name: performance_metrics_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.performance_metrics_clients ALTER COLUMN id SET DEFAULT nextval('public.performance_metrics_clients_id_seq'::regclass); + + +-- +-- Name: places id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.places ALTER COLUMN id SET DEFAULT nextval('public.places_id_seq'::regclass); + + +-- +-- Name: pm_client_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.pm_client_projects ALTER COLUMN id SET DEFAULT nextval('public.pm_client_projects_id_seq'::regclass); + + +-- +-- Name: pm_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.pm_clients ALTER COLUMN id SET DEFAULT nextval('public.pm_clients_id_seq'::regclass); + + +-- +-- Name: pm_coc_static_spms id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.pm_coc_static_spms ALTER COLUMN id SET DEFAULT nextval('public.pm_coc_static_spms_id_seq'::regclass); + + +-- +-- Name: pm_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.pm_projects ALTER COLUMN id SET DEFAULT nextval('public.pm_projects_id_seq'::regclass); + + +-- +-- Name: pm_results id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.pm_results ALTER COLUMN id SET DEFAULT nextval('public.pm_results_id_seq'::regclass); + + +-- +-- Name: project_data_quality id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_data_quality ALTER COLUMN id SET DEFAULT nextval('public.project_data_quality_id_seq'::regclass); + + +-- +-- Name: project_groups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_groups ALTER COLUMN id SET DEFAULT nextval('public.project_groups_id_seq'::regclass); + + +-- +-- Name: project_pass_fails id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_pass_fails ALTER COLUMN id SET DEFAULT nextval('public.project_pass_fails_id_seq'::regclass); + + +-- +-- Name: project_pass_fails_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_pass_fails_clients ALTER COLUMN id SET DEFAULT nextval('public.project_pass_fails_clients_id_seq'::regclass); + + +-- +-- Name: project_pass_fails_projects id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_pass_fails_projects ALTER COLUMN id SET DEFAULT nextval('public.project_pass_fails_projects_id_seq'::regclass); + + +-- +-- Name: project_project_groups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_project_groups ALTER COLUMN id SET DEFAULT nextval('public.project_project_groups_id_seq'::regclass); + + +-- +-- Name: project_scorecard_reports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_scorecard_reports ALTER COLUMN id SET DEFAULT nextval('public.project_scorecard_reports_id_seq'::regclass); + + +-- +-- Name: psc_feedback_surveys id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.psc_feedback_surveys ALTER COLUMN id SET DEFAULT nextval('public.psc_feedback_surveys_id_seq'::regclass); + + +-- +-- Name: public_report_reports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.public_report_reports ALTER COLUMN id SET DEFAULT nextval('public.public_report_reports_id_seq'::regclass); + + +-- +-- Name: public_report_settings id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.public_report_settings ALTER COLUMN id SET DEFAULT nextval('public.public_report_settings_id_seq'::regclass); + + +-- +-- Name: published_reports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.published_reports ALTER COLUMN id SET DEFAULT nextval('public.published_reports_id_seq'::regclass); + + +-- +-- Name: recent_items id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.recent_items ALTER COLUMN id SET DEFAULT nextval('public.recent_items_id_seq'::regclass); + + +-- +-- Name: recurring_hmis_export_links id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.recurring_hmis_export_links ALTER COLUMN id SET DEFAULT nextval('public.recurring_hmis_export_links_id_seq'::regclass); + + +-- +-- Name: recurring_hmis_exports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.recurring_hmis_exports ALTER COLUMN id SET DEFAULT nextval('public.recurring_hmis_exports_id_seq'::regclass); + + +-- +-- Name: remote_configs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.remote_configs ALTER COLUMN id SET DEFAULT nextval('public.remote_configs_id_seq'::regclass); + + +-- +-- Name: remote_credentials id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.remote_credentials ALTER COLUMN id SET DEFAULT nextval('public.remote_credentials_id_seq'::regclass); + + +-- +-- Name: report_definitions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.report_definitions ALTER COLUMN id SET DEFAULT nextval('public.report_definitions_id_seq'::regclass); + + +-- +-- Name: report_tokens id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.report_tokens ALTER COLUMN id SET DEFAULT nextval('public.report_tokens_id_seq'::regclass); + + +-- +-- Name: secure_files id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.secure_files ALTER COLUMN id SET DEFAULT nextval('public.secure_files_id_seq'::regclass); + + +-- +-- Name: service_history_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_enrollments ALTER COLUMN id SET DEFAULT nextval('public.service_history_enrollments_id_seq'::regclass); + + +-- +-- Name: service_history_services_was_for_inheritance id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_was_for_inheritance ALTER COLUMN id SET DEFAULT nextval('public.service_history_services_id_seq'::regclass); + + +-- +-- Name: service_scanning_scanner_ids id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_scanning_scanner_ids ALTER COLUMN id SET DEFAULT nextval('public.service_scanning_scanner_ids_id_seq'::regclass); + + +-- +-- Name: service_scanning_services id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_scanning_services ALTER COLUMN id SET DEFAULT nextval('public.service_scanning_services_id_seq'::regclass); + + +-- +-- Name: shape_block_groups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_block_groups ALTER COLUMN id SET DEFAULT nextval('public.shape_block_groups_id_seq'::regclass); + + +-- +-- Name: shape_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_cocs ALTER COLUMN id SET DEFAULT nextval('public.shape_cocs_id_seq'::regclass); + + +-- +-- Name: shape_counties id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_counties ALTER COLUMN id SET DEFAULT nextval('public.shape_counties_id_seq'::regclass); + + +-- +-- Name: shape_places id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_places ALTER COLUMN id SET DEFAULT nextval('public.shape_places_id_seq'::regclass); + + +-- +-- Name: shape_states id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_states ALTER COLUMN id SET DEFAULT nextval('public.shape_states_id_seq'::regclass); + + +-- +-- Name: shape_towns id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_towns ALTER COLUMN id SET DEFAULT nextval('public.shape_towns_id_seq'::regclass); + + +-- +-- Name: shape_zip_codes id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_zip_codes ALTER COLUMN id SET DEFAULT nextval('public.shape_zip_codes_id_seq'::regclass); + + +-- +-- Name: simple_report_cells id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.simple_report_cells ALTER COLUMN id SET DEFAULT nextval('public.simple_report_cells_id_seq'::regclass); + + +-- +-- Name: simple_report_instances id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.simple_report_instances ALTER COLUMN id SET DEFAULT nextval('public.simple_report_instances_id_seq'::regclass); + + +-- +-- Name: simple_report_universe_members id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.simple_report_universe_members ALTER COLUMN id SET DEFAULT nextval('public.simple_report_universe_members_id_seq'::regclass); + + +-- +-- Name: synthetic_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.synthetic_assessments ALTER COLUMN id SET DEFAULT nextval('public.synthetic_assessments_id_seq'::regclass); + + +-- +-- Name: synthetic_ce_assessment_project_configs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.synthetic_ce_assessment_project_configs ALTER COLUMN id SET DEFAULT nextval('public.synthetic_ce_assessment_project_configs_id_seq'::regclass); + + +-- +-- Name: synthetic_events id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.synthetic_events ALTER COLUMN id SET DEFAULT nextval('public.synthetic_events_id_seq'::regclass); + + +-- +-- Name: synthetic_youth_education_statuses id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.synthetic_youth_education_statuses ALTER COLUMN id SET DEFAULT nextval('public.synthetic_youth_education_statuses_id_seq'::regclass); + + +-- +-- Name: system_colors id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.system_colors ALTER COLUMN id SET DEFAULT nextval('public.system_colors_id_seq'::regclass); + + +-- +-- Name: system_pathways_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.system_pathways_clients ALTER COLUMN id SET DEFAULT nextval('public.system_pathways_clients_id_seq'::regclass); + + +-- +-- Name: system_pathways_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.system_pathways_enrollments ALTER COLUMN id SET DEFAULT nextval('public.system_pathways_enrollments_id_seq'::regclass); + + +-- +-- Name: taggings id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.taggings ALTER COLUMN id SET DEFAULT nextval('public.taggings_id_seq'::regclass); + + +-- +-- Name: tags id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.tags ALTER COLUMN id SET DEFAULT nextval('public.tags_id_seq'::regclass); + + +-- +-- Name: talentlms_completed_trainings id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.talentlms_completed_trainings ALTER COLUMN id SET DEFAULT nextval('public.talentlms_completed_trainings_id_seq'::regclass); + + +-- +-- Name: talentlms_configs id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.talentlms_configs ALTER COLUMN id SET DEFAULT nextval('public.talentlms_configs_id_seq'::regclass); + + +-- +-- Name: talentlms_courses id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.talentlms_courses ALTER COLUMN id SET DEFAULT nextval('public.talentlms_courses_id_seq'::regclass); + + +-- +-- Name: talentlms_logins id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.talentlms_logins ALTER COLUMN id SET DEFAULT nextval('public.talentlms_logins_id_seq'::regclass); + + +-- +-- Name: text_message_messages id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.text_message_messages ALTER COLUMN id SET DEFAULT nextval('public.text_message_messages_id_seq'::regclass); + + +-- +-- Name: text_message_topic_subscribers id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.text_message_topic_subscribers ALTER COLUMN id SET DEFAULT nextval('public.text_message_topic_subscribers_id_seq'::regclass); + + +-- +-- Name: text_message_topics id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.text_message_topics ALTER COLUMN id SET DEFAULT nextval('public.text_message_topics_id_seq'::regclass); + + +-- +-- Name: themes id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.themes ALTER COLUMN id SET DEFAULT nextval('public.themes_id_seq'::regclass); + + +-- +-- Name: tx_research_exports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.tx_research_exports ALTER COLUMN id SET DEFAULT nextval('public.tx_research_exports_id_seq'::regclass); + + +-- +-- Name: uploads id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.uploads ALTER COLUMN id SET DEFAULT nextval('public.uploads_id_seq'::regclass); + + +-- +-- Name: user_client_permissions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.user_client_permissions ALTER COLUMN id SET DEFAULT nextval('public.user_client_permissions_id_seq'::regclass); + + +-- +-- Name: user_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.user_clients ALTER COLUMN id SET DEFAULT nextval('public.user_clients_id_seq'::regclass); + + +-- +-- Name: user_viewable_entities id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.user_viewable_entities ALTER COLUMN id SET DEFAULT nextval('public.user_viewable_entities_id_seq'::regclass); + + +-- +-- Name: va_check_histories id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.va_check_histories ALTER COLUMN id SET DEFAULT nextval('public.va_check_histories_id_seq'::regclass); + + +-- +-- Name: verification_sources id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.verification_sources ALTER COLUMN id SET DEFAULT nextval('public.verification_sources_id_seq'::regclass); + + +-- +-- Name: versions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.versions ALTER COLUMN id SET DEFAULT nextval('public.versions_id_seq'::regclass); + + +-- +-- Name: vispdats id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.vispdats ALTER COLUMN id SET DEFAULT nextval('public.vispdats_id_seq'::regclass); + + +-- +-- Name: warehouse_client_service_history id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.warehouse_client_service_history ALTER COLUMN id SET DEFAULT nextval('public.warehouse_client_service_history_id_seq'::regclass); + + +-- +-- Name: warehouse_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.warehouse_clients ALTER COLUMN id SET DEFAULT nextval('public.warehouse_clients_id_seq'::regclass); + + +-- +-- Name: warehouse_clients_processed id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.warehouse_clients_processed ALTER COLUMN id SET DEFAULT nextval('public.warehouse_clients_processed_id_seq'::regclass); + + +-- +-- Name: warehouse_reports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.warehouse_reports ALTER COLUMN id SET DEFAULT nextval('public.warehouse_reports_id_seq'::regclass); + + +-- +-- Name: weather id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.weather ALTER COLUMN id SET DEFAULT nextval('public.weather_id_seq'::regclass); + + +-- +-- Name: whitelisted_projects_for_clients id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.whitelisted_projects_for_clients ALTER COLUMN id SET DEFAULT nextval('public.whitelisted_projects_for_clients_id_seq'::regclass); + + +-- +-- Name: youth_case_managements id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.youth_case_managements ALTER COLUMN id SET DEFAULT nextval('public.youth_case_managements_id_seq'::regclass); + + +-- +-- Name: youth_exports id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.youth_exports ALTER COLUMN id SET DEFAULT nextval('public.youth_exports_id_seq'::regclass); + + +-- +-- Name: youth_follow_ups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.youth_follow_ups ALTER COLUMN id SET DEFAULT nextval('public.youth_follow_ups_id_seq'::regclass); + + +-- +-- Name: youth_intakes id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.youth_intakes ALTER COLUMN id SET DEFAULT nextval('public.youth_intakes_id_seq'::regclass); + + +-- +-- Name: youth_referrals id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.youth_referrals ALTER COLUMN id SET DEFAULT nextval('public.youth_referrals_id_seq'::regclass); + + +-- +-- Name: hmis_2022_clients hmis_2022_clients_partitioned_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients + ADD CONSTRAINT hmis_2022_clients_partitioned_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_0 hmis_2022_clients_partitioned_0_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_0 + ADD CONSTRAINT hmis_2022_clients_partitioned_0_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_10 hmis_2022_clients_partitioned_10_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_10 + ADD CONSTRAINT hmis_2022_clients_partitioned_10_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_11 hmis_2022_clients_partitioned_11_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_11 + ADD CONSTRAINT hmis_2022_clients_partitioned_11_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_12 hmis_2022_clients_partitioned_12_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_12 + ADD CONSTRAINT hmis_2022_clients_partitioned_12_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_13 hmis_2022_clients_partitioned_13_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_13 + ADD CONSTRAINT hmis_2022_clients_partitioned_13_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_14 hmis_2022_clients_partitioned_14_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_14 + ADD CONSTRAINT hmis_2022_clients_partitioned_14_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_15 hmis_2022_clients_partitioned_15_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_15 + ADD CONSTRAINT hmis_2022_clients_partitioned_15_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_16 hmis_2022_clients_partitioned_16_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_16 + ADD CONSTRAINT hmis_2022_clients_partitioned_16_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_17 hmis_2022_clients_partitioned_17_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_17 + ADD CONSTRAINT hmis_2022_clients_partitioned_17_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_18 hmis_2022_clients_partitioned_18_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_18 + ADD CONSTRAINT hmis_2022_clients_partitioned_18_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_19 hmis_2022_clients_partitioned_19_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_19 + ADD CONSTRAINT hmis_2022_clients_partitioned_19_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_1 hmis_2022_clients_partitioned_1_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_1 + ADD CONSTRAINT hmis_2022_clients_partitioned_1_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_20 hmis_2022_clients_partitioned_20_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_20 + ADD CONSTRAINT hmis_2022_clients_partitioned_20_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_21 hmis_2022_clients_partitioned_21_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_21 + ADD CONSTRAINT hmis_2022_clients_partitioned_21_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_22 hmis_2022_clients_partitioned_22_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_22 + ADD CONSTRAINT hmis_2022_clients_partitioned_22_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_23 hmis_2022_clients_partitioned_23_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_23 + ADD CONSTRAINT hmis_2022_clients_partitioned_23_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_24 hmis_2022_clients_partitioned_24_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_24 + ADD CONSTRAINT hmis_2022_clients_partitioned_24_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_25 hmis_2022_clients_partitioned_25_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_25 + ADD CONSTRAINT hmis_2022_clients_partitioned_25_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_26 hmis_2022_clients_partitioned_26_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_26 + ADD CONSTRAINT hmis_2022_clients_partitioned_26_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_27 hmis_2022_clients_partitioned_27_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_27 + ADD CONSTRAINT hmis_2022_clients_partitioned_27_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_28 hmis_2022_clients_partitioned_28_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_28 + ADD CONSTRAINT hmis_2022_clients_partitioned_28_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_29 hmis_2022_clients_partitioned_29_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_29 + ADD CONSTRAINT hmis_2022_clients_partitioned_29_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_2 hmis_2022_clients_partitioned_2_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_2 + ADD CONSTRAINT hmis_2022_clients_partitioned_2_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_30 hmis_2022_clients_partitioned_30_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_30 + ADD CONSTRAINT hmis_2022_clients_partitioned_30_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_31 hmis_2022_clients_partitioned_31_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_31 + ADD CONSTRAINT hmis_2022_clients_partitioned_31_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_32 hmis_2022_clients_partitioned_32_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_32 + ADD CONSTRAINT hmis_2022_clients_partitioned_32_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_33 hmis_2022_clients_partitioned_33_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_33 + ADD CONSTRAINT hmis_2022_clients_partitioned_33_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_34 hmis_2022_clients_partitioned_34_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_34 + ADD CONSTRAINT hmis_2022_clients_partitioned_34_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_35 hmis_2022_clients_partitioned_35_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_35 + ADD CONSTRAINT hmis_2022_clients_partitioned_35_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_36 hmis_2022_clients_partitioned_36_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_36 + ADD CONSTRAINT hmis_2022_clients_partitioned_36_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_37 hmis_2022_clients_partitioned_37_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_37 + ADD CONSTRAINT hmis_2022_clients_partitioned_37_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_38 hmis_2022_clients_partitioned_38_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_38 + ADD CONSTRAINT hmis_2022_clients_partitioned_38_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_39 hmis_2022_clients_partitioned_39_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_39 + ADD CONSTRAINT hmis_2022_clients_partitioned_39_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_3 hmis_2022_clients_partitioned_3_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_3 + ADD CONSTRAINT hmis_2022_clients_partitioned_3_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_40 hmis_2022_clients_partitioned_40_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_40 + ADD CONSTRAINT hmis_2022_clients_partitioned_40_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_41 hmis_2022_clients_partitioned_41_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_41 + ADD CONSTRAINT hmis_2022_clients_partitioned_41_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_42 hmis_2022_clients_partitioned_42_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_42 + ADD CONSTRAINT hmis_2022_clients_partitioned_42_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_43 hmis_2022_clients_partitioned_43_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_43 + ADD CONSTRAINT hmis_2022_clients_partitioned_43_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_44 hmis_2022_clients_partitioned_44_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_44 + ADD CONSTRAINT hmis_2022_clients_partitioned_44_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_45 hmis_2022_clients_partitioned_45_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_45 + ADD CONSTRAINT hmis_2022_clients_partitioned_45_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_46 hmis_2022_clients_partitioned_46_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_46 + ADD CONSTRAINT hmis_2022_clients_partitioned_46_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_47 hmis_2022_clients_partitioned_47_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_47 + ADD CONSTRAINT hmis_2022_clients_partitioned_47_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_48 hmis_2022_clients_partitioned_48_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_48 + ADD CONSTRAINT hmis_2022_clients_partitioned_48_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_49 hmis_2022_clients_partitioned_49_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_49 + ADD CONSTRAINT hmis_2022_clients_partitioned_49_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_4 hmis_2022_clients_partitioned_4_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_4 + ADD CONSTRAINT hmis_2022_clients_partitioned_4_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_50 hmis_2022_clients_partitioned_50_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_50 + ADD CONSTRAINT hmis_2022_clients_partitioned_50_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_51 hmis_2022_clients_partitioned_51_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_51 + ADD CONSTRAINT hmis_2022_clients_partitioned_51_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_52 hmis_2022_clients_partitioned_52_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_52 + ADD CONSTRAINT hmis_2022_clients_partitioned_52_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_53 hmis_2022_clients_partitioned_53_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_53 + ADD CONSTRAINT hmis_2022_clients_partitioned_53_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_54 hmis_2022_clients_partitioned_54_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_54 + ADD CONSTRAINT hmis_2022_clients_partitioned_54_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_55 hmis_2022_clients_partitioned_55_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_55 + ADD CONSTRAINT hmis_2022_clients_partitioned_55_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_56 hmis_2022_clients_partitioned_56_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_56 + ADD CONSTRAINT hmis_2022_clients_partitioned_56_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_57 hmis_2022_clients_partitioned_57_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_57 + ADD CONSTRAINT hmis_2022_clients_partitioned_57_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_58 hmis_2022_clients_partitioned_58_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_58 + ADD CONSTRAINT hmis_2022_clients_partitioned_58_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_59 hmis_2022_clients_partitioned_59_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_59 + ADD CONSTRAINT hmis_2022_clients_partitioned_59_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_5 hmis_2022_clients_partitioned_5_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_5 + ADD CONSTRAINT hmis_2022_clients_partitioned_5_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_60 hmis_2022_clients_partitioned_60_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_60 + ADD CONSTRAINT hmis_2022_clients_partitioned_60_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_61 hmis_2022_clients_partitioned_61_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_61 + ADD CONSTRAINT hmis_2022_clients_partitioned_61_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_62 hmis_2022_clients_partitioned_62_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_62 + ADD CONSTRAINT hmis_2022_clients_partitioned_62_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_63 hmis_2022_clients_partitioned_63_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_63 + ADD CONSTRAINT hmis_2022_clients_partitioned_63_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_64 hmis_2022_clients_partitioned_64_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_64 + ADD CONSTRAINT hmis_2022_clients_partitioned_64_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_65 hmis_2022_clients_partitioned_65_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_65 + ADD CONSTRAINT hmis_2022_clients_partitioned_65_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_66 hmis_2022_clients_partitioned_66_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_66 + ADD CONSTRAINT hmis_2022_clients_partitioned_66_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_67 hmis_2022_clients_partitioned_67_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_67 + ADD CONSTRAINT hmis_2022_clients_partitioned_67_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_68 hmis_2022_clients_partitioned_68_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_68 + ADD CONSTRAINT hmis_2022_clients_partitioned_68_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_69 hmis_2022_clients_partitioned_69_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_69 + ADD CONSTRAINT hmis_2022_clients_partitioned_69_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_6 hmis_2022_clients_partitioned_6_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_6 + ADD CONSTRAINT hmis_2022_clients_partitioned_6_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_70 hmis_2022_clients_partitioned_70_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_70 + ADD CONSTRAINT hmis_2022_clients_partitioned_70_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_7 hmis_2022_clients_partitioned_7_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_7 + ADD CONSTRAINT hmis_2022_clients_partitioned_7_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_8 hmis_2022_clients_partitioned_8_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_8 + ADD CONSTRAINT hmis_2022_clients_partitioned_8_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_9 hmis_2022_clients_partitioned_9_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_clients_partitioned_9 + ADD CONSTRAINT hmis_2022_clients_partitioned_9_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments hmis_2022_enrollments_partitioned_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments + ADD CONSTRAINT hmis_2022_enrollments_partitioned_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0 hmis_2022_enrollments_partitioned_0_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_0 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_0_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10 hmis_2022_enrollments_partitioned_10_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_10 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_10_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11 hmis_2022_enrollments_partitioned_11_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_11 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_11_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12 hmis_2022_enrollments_partitioned_12_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_12 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_12_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13 hmis_2022_enrollments_partitioned_13_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_13 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_13_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14 hmis_2022_enrollments_partitioned_14_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_14 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_14_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15 hmis_2022_enrollments_partitioned_15_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_15 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_15_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16 hmis_2022_enrollments_partitioned_16_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_16 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_16_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17 hmis_2022_enrollments_partitioned_17_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_17 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_17_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18 hmis_2022_enrollments_partitioned_18_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_18 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_18_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19 hmis_2022_enrollments_partitioned_19_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_19 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_19_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1 hmis_2022_enrollments_partitioned_1_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_1 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_1_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20 hmis_2022_enrollments_partitioned_20_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_20 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_20_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21 hmis_2022_enrollments_partitioned_21_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_21 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_21_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22 hmis_2022_enrollments_partitioned_22_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_22 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_22_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23 hmis_2022_enrollments_partitioned_23_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_23 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_23_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24 hmis_2022_enrollments_partitioned_24_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_24 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_24_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25 hmis_2022_enrollments_partitioned_25_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_25 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_25_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26 hmis_2022_enrollments_partitioned_26_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_26 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_26_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27 hmis_2022_enrollments_partitioned_27_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_27 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_27_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28 hmis_2022_enrollments_partitioned_28_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_28 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_28_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29 hmis_2022_enrollments_partitioned_29_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_29 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_29_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2 hmis_2022_enrollments_partitioned_2_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_2 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_2_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30 hmis_2022_enrollments_partitioned_30_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_30 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_30_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31 hmis_2022_enrollments_partitioned_31_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_31 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_31_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32 hmis_2022_enrollments_partitioned_32_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_32 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_32_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33 hmis_2022_enrollments_partitioned_33_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_33 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_33_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34 hmis_2022_enrollments_partitioned_34_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_34 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_34_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35 hmis_2022_enrollments_partitioned_35_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_35 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_35_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36 hmis_2022_enrollments_partitioned_36_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_36 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_36_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37 hmis_2022_enrollments_partitioned_37_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_37 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_37_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38 hmis_2022_enrollments_partitioned_38_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_38 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_38_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39 hmis_2022_enrollments_partitioned_39_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_39 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_39_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3 hmis_2022_enrollments_partitioned_3_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_3 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_3_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40 hmis_2022_enrollments_partitioned_40_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_40 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_40_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41 hmis_2022_enrollments_partitioned_41_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_41 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_41_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42 hmis_2022_enrollments_partitioned_42_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_42 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_42_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43 hmis_2022_enrollments_partitioned_43_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_43 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_43_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44 hmis_2022_enrollments_partitioned_44_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_44 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_44_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45 hmis_2022_enrollments_partitioned_45_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_45 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_45_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46 hmis_2022_enrollments_partitioned_46_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_46 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_46_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47 hmis_2022_enrollments_partitioned_47_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_47 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_47_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48 hmis_2022_enrollments_partitioned_48_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_48 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_48_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49 hmis_2022_enrollments_partitioned_49_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_49 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_49_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4 hmis_2022_enrollments_partitioned_4_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_4 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_4_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50 hmis_2022_enrollments_partitioned_50_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_50 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_50_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51 hmis_2022_enrollments_partitioned_51_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_51 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_51_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52 hmis_2022_enrollments_partitioned_52_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_52 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_52_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53 hmis_2022_enrollments_partitioned_53_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_53 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_53_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54 hmis_2022_enrollments_partitioned_54_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_54 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_54_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55 hmis_2022_enrollments_partitioned_55_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_55 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_55_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56 hmis_2022_enrollments_partitioned_56_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_56 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_56_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57 hmis_2022_enrollments_partitioned_57_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_57 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_57_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58 hmis_2022_enrollments_partitioned_58_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_58 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_58_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59 hmis_2022_enrollments_partitioned_59_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_59 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_59_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5 hmis_2022_enrollments_partitioned_5_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_5 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_5_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60 hmis_2022_enrollments_partitioned_60_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_60 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_60_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61 hmis_2022_enrollments_partitioned_61_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_61 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_61_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62 hmis_2022_enrollments_partitioned_62_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_62 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_62_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63 hmis_2022_enrollments_partitioned_63_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_63 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_63_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64 hmis_2022_enrollments_partitioned_64_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_64 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_64_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65 hmis_2022_enrollments_partitioned_65_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_65 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_65_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66 hmis_2022_enrollments_partitioned_66_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_66 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_66_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67 hmis_2022_enrollments_partitioned_67_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_67 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_67_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68 hmis_2022_enrollments_partitioned_68_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_68 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_68_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69 hmis_2022_enrollments_partitioned_69_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_69 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_69_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6 hmis_2022_enrollments_partitioned_6_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_6 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_6_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70 hmis_2022_enrollments_partitioned_70_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_70 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_70_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7 hmis_2022_enrollments_partitioned_7_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_7 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_7_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8 hmis_2022_enrollments_partitioned_8_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_8 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_8_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9 hmis_2022_enrollments_partitioned_9_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_enrollments_partitioned_9 + ADD CONSTRAINT hmis_2022_enrollments_partitioned_9_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits hmis_2022_exits_partitioned_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits + ADD CONSTRAINT hmis_2022_exits_partitioned_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_0 hmis_2022_exits_partitioned_0_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_0 + ADD CONSTRAINT hmis_2022_exits_partitioned_0_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_10 hmis_2022_exits_partitioned_10_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_10 + ADD CONSTRAINT hmis_2022_exits_partitioned_10_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_11 hmis_2022_exits_partitioned_11_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_11 + ADD CONSTRAINT hmis_2022_exits_partitioned_11_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_12 hmis_2022_exits_partitioned_12_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_12 + ADD CONSTRAINT hmis_2022_exits_partitioned_12_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_13 hmis_2022_exits_partitioned_13_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_13 + ADD CONSTRAINT hmis_2022_exits_partitioned_13_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_14 hmis_2022_exits_partitioned_14_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_14 + ADD CONSTRAINT hmis_2022_exits_partitioned_14_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_15 hmis_2022_exits_partitioned_15_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_15 + ADD CONSTRAINT hmis_2022_exits_partitioned_15_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_16 hmis_2022_exits_partitioned_16_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_16 + ADD CONSTRAINT hmis_2022_exits_partitioned_16_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_17 hmis_2022_exits_partitioned_17_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_17 + ADD CONSTRAINT hmis_2022_exits_partitioned_17_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_18 hmis_2022_exits_partitioned_18_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_18 + ADD CONSTRAINT hmis_2022_exits_partitioned_18_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_19 hmis_2022_exits_partitioned_19_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_19 + ADD CONSTRAINT hmis_2022_exits_partitioned_19_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1 hmis_2022_exits_partitioned_1_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_1 + ADD CONSTRAINT hmis_2022_exits_partitioned_1_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_20 hmis_2022_exits_partitioned_20_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_20 + ADD CONSTRAINT hmis_2022_exits_partitioned_20_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_21 hmis_2022_exits_partitioned_21_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_21 + ADD CONSTRAINT hmis_2022_exits_partitioned_21_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_22 hmis_2022_exits_partitioned_22_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_22 + ADD CONSTRAINT hmis_2022_exits_partitioned_22_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_23 hmis_2022_exits_partitioned_23_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_23 + ADD CONSTRAINT hmis_2022_exits_partitioned_23_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_24 hmis_2022_exits_partitioned_24_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_24 + ADD CONSTRAINT hmis_2022_exits_partitioned_24_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_25 hmis_2022_exits_partitioned_25_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_25 + ADD CONSTRAINT hmis_2022_exits_partitioned_25_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_26 hmis_2022_exits_partitioned_26_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_26 + ADD CONSTRAINT hmis_2022_exits_partitioned_26_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_27 hmis_2022_exits_partitioned_27_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_27 + ADD CONSTRAINT hmis_2022_exits_partitioned_27_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_28 hmis_2022_exits_partitioned_28_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_28 + ADD CONSTRAINT hmis_2022_exits_partitioned_28_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_29 hmis_2022_exits_partitioned_29_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_29 + ADD CONSTRAINT hmis_2022_exits_partitioned_29_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2 hmis_2022_exits_partitioned_2_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_2 + ADD CONSTRAINT hmis_2022_exits_partitioned_2_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_30 hmis_2022_exits_partitioned_30_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_30 + ADD CONSTRAINT hmis_2022_exits_partitioned_30_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_31 hmis_2022_exits_partitioned_31_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_31 + ADD CONSTRAINT hmis_2022_exits_partitioned_31_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_32 hmis_2022_exits_partitioned_32_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_32 + ADD CONSTRAINT hmis_2022_exits_partitioned_32_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_33 hmis_2022_exits_partitioned_33_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_33 + ADD CONSTRAINT hmis_2022_exits_partitioned_33_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_34 hmis_2022_exits_partitioned_34_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_34 + ADD CONSTRAINT hmis_2022_exits_partitioned_34_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_35 hmis_2022_exits_partitioned_35_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_35 + ADD CONSTRAINT hmis_2022_exits_partitioned_35_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_36 hmis_2022_exits_partitioned_36_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_36 + ADD CONSTRAINT hmis_2022_exits_partitioned_36_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_37 hmis_2022_exits_partitioned_37_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_37 + ADD CONSTRAINT hmis_2022_exits_partitioned_37_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_38 hmis_2022_exits_partitioned_38_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_38 + ADD CONSTRAINT hmis_2022_exits_partitioned_38_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_39 hmis_2022_exits_partitioned_39_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_39 + ADD CONSTRAINT hmis_2022_exits_partitioned_39_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3 hmis_2022_exits_partitioned_3_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_3 + ADD CONSTRAINT hmis_2022_exits_partitioned_3_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_40 hmis_2022_exits_partitioned_40_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_40 + ADD CONSTRAINT hmis_2022_exits_partitioned_40_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_41 hmis_2022_exits_partitioned_41_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_41 + ADD CONSTRAINT hmis_2022_exits_partitioned_41_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_42 hmis_2022_exits_partitioned_42_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_42 + ADD CONSTRAINT hmis_2022_exits_partitioned_42_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_43 hmis_2022_exits_partitioned_43_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_43 + ADD CONSTRAINT hmis_2022_exits_partitioned_43_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_44 hmis_2022_exits_partitioned_44_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_44 + ADD CONSTRAINT hmis_2022_exits_partitioned_44_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_45 hmis_2022_exits_partitioned_45_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_45 + ADD CONSTRAINT hmis_2022_exits_partitioned_45_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_46 hmis_2022_exits_partitioned_46_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_46 + ADD CONSTRAINT hmis_2022_exits_partitioned_46_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_47 hmis_2022_exits_partitioned_47_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_47 + ADD CONSTRAINT hmis_2022_exits_partitioned_47_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_48 hmis_2022_exits_partitioned_48_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_48 + ADD CONSTRAINT hmis_2022_exits_partitioned_48_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_49 hmis_2022_exits_partitioned_49_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_49 + ADD CONSTRAINT hmis_2022_exits_partitioned_49_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4 hmis_2022_exits_partitioned_4_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_4 + ADD CONSTRAINT hmis_2022_exits_partitioned_4_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_50 hmis_2022_exits_partitioned_50_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_50 + ADD CONSTRAINT hmis_2022_exits_partitioned_50_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_51 hmis_2022_exits_partitioned_51_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_51 + ADD CONSTRAINT hmis_2022_exits_partitioned_51_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_52 hmis_2022_exits_partitioned_52_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_52 + ADD CONSTRAINT hmis_2022_exits_partitioned_52_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_53 hmis_2022_exits_partitioned_53_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_53 + ADD CONSTRAINT hmis_2022_exits_partitioned_53_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_54 hmis_2022_exits_partitioned_54_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_54 + ADD CONSTRAINT hmis_2022_exits_partitioned_54_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_55 hmis_2022_exits_partitioned_55_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_55 + ADD CONSTRAINT hmis_2022_exits_partitioned_55_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_56 hmis_2022_exits_partitioned_56_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_56 + ADD CONSTRAINT hmis_2022_exits_partitioned_56_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_57 hmis_2022_exits_partitioned_57_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_57 + ADD CONSTRAINT hmis_2022_exits_partitioned_57_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_58 hmis_2022_exits_partitioned_58_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_58 + ADD CONSTRAINT hmis_2022_exits_partitioned_58_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_59 hmis_2022_exits_partitioned_59_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_59 + ADD CONSTRAINT hmis_2022_exits_partitioned_59_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5 hmis_2022_exits_partitioned_5_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_5 + ADD CONSTRAINT hmis_2022_exits_partitioned_5_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_60 hmis_2022_exits_partitioned_60_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_60 + ADD CONSTRAINT hmis_2022_exits_partitioned_60_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_61 hmis_2022_exits_partitioned_61_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_61 + ADD CONSTRAINT hmis_2022_exits_partitioned_61_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_62 hmis_2022_exits_partitioned_62_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_62 + ADD CONSTRAINT hmis_2022_exits_partitioned_62_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_63 hmis_2022_exits_partitioned_63_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_63 + ADD CONSTRAINT hmis_2022_exits_partitioned_63_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_64 hmis_2022_exits_partitioned_64_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_64 + ADD CONSTRAINT hmis_2022_exits_partitioned_64_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_65 hmis_2022_exits_partitioned_65_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_65 + ADD CONSTRAINT hmis_2022_exits_partitioned_65_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_66 hmis_2022_exits_partitioned_66_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_66 + ADD CONSTRAINT hmis_2022_exits_partitioned_66_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_67 hmis_2022_exits_partitioned_67_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_67 + ADD CONSTRAINT hmis_2022_exits_partitioned_67_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_68 hmis_2022_exits_partitioned_68_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_68 + ADD CONSTRAINT hmis_2022_exits_partitioned_68_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_69 hmis_2022_exits_partitioned_69_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_69 + ADD CONSTRAINT hmis_2022_exits_partitioned_69_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6 hmis_2022_exits_partitioned_6_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_6 + ADD CONSTRAINT hmis_2022_exits_partitioned_6_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_70 hmis_2022_exits_partitioned_70_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_70 + ADD CONSTRAINT hmis_2022_exits_partitioned_70_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_7 hmis_2022_exits_partitioned_7_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_7 + ADD CONSTRAINT hmis_2022_exits_partitioned_7_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_8 hmis_2022_exits_partitioned_8_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_8 + ADD CONSTRAINT hmis_2022_exits_partitioned_8_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_9 hmis_2022_exits_partitioned_9_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_exits_partitioned_9 + ADD CONSTRAINT hmis_2022_exits_partitioned_9_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services hmis_2022_services_partitioned_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services + ADD CONSTRAINT hmis_2022_services_partitioned_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_0 hmis_2022_services_partitioned_0_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_0 + ADD CONSTRAINT hmis_2022_services_partitioned_0_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_10 hmis_2022_services_partitioned_10_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_10 + ADD CONSTRAINT hmis_2022_services_partitioned_10_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_11 hmis_2022_services_partitioned_11_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_11 + ADD CONSTRAINT hmis_2022_services_partitioned_11_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_12 hmis_2022_services_partitioned_12_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_12 + ADD CONSTRAINT hmis_2022_services_partitioned_12_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_13 hmis_2022_services_partitioned_13_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_13 + ADD CONSTRAINT hmis_2022_services_partitioned_13_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_14 hmis_2022_services_partitioned_14_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_14 + ADD CONSTRAINT hmis_2022_services_partitioned_14_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_15 hmis_2022_services_partitioned_15_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_15 + ADD CONSTRAINT hmis_2022_services_partitioned_15_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_16 hmis_2022_services_partitioned_16_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_16 + ADD CONSTRAINT hmis_2022_services_partitioned_16_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_17 hmis_2022_services_partitioned_17_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_17 + ADD CONSTRAINT hmis_2022_services_partitioned_17_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_18 hmis_2022_services_partitioned_18_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_18 + ADD CONSTRAINT hmis_2022_services_partitioned_18_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_19 hmis_2022_services_partitioned_19_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_19 + ADD CONSTRAINT hmis_2022_services_partitioned_19_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_1 hmis_2022_services_partitioned_1_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_1 + ADD CONSTRAINT hmis_2022_services_partitioned_1_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_20 hmis_2022_services_partitioned_20_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_20 + ADD CONSTRAINT hmis_2022_services_partitioned_20_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_21 hmis_2022_services_partitioned_21_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_21 + ADD CONSTRAINT hmis_2022_services_partitioned_21_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_22 hmis_2022_services_partitioned_22_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_22 + ADD CONSTRAINT hmis_2022_services_partitioned_22_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_23 hmis_2022_services_partitioned_23_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_23 + ADD CONSTRAINT hmis_2022_services_partitioned_23_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_24 hmis_2022_services_partitioned_24_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_24 + ADD CONSTRAINT hmis_2022_services_partitioned_24_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_25 hmis_2022_services_partitioned_25_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_25 + ADD CONSTRAINT hmis_2022_services_partitioned_25_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_26 hmis_2022_services_partitioned_26_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_26 + ADD CONSTRAINT hmis_2022_services_partitioned_26_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_27 hmis_2022_services_partitioned_27_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_27 + ADD CONSTRAINT hmis_2022_services_partitioned_27_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_28 hmis_2022_services_partitioned_28_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_28 + ADD CONSTRAINT hmis_2022_services_partitioned_28_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_29 hmis_2022_services_partitioned_29_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_29 + ADD CONSTRAINT hmis_2022_services_partitioned_29_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_2 hmis_2022_services_partitioned_2_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_2 + ADD CONSTRAINT hmis_2022_services_partitioned_2_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_30 hmis_2022_services_partitioned_30_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_30 + ADD CONSTRAINT hmis_2022_services_partitioned_30_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_31 hmis_2022_services_partitioned_31_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_31 + ADD CONSTRAINT hmis_2022_services_partitioned_31_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_32 hmis_2022_services_partitioned_32_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_32 + ADD CONSTRAINT hmis_2022_services_partitioned_32_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_33 hmis_2022_services_partitioned_33_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_33 + ADD CONSTRAINT hmis_2022_services_partitioned_33_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_34 hmis_2022_services_partitioned_34_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_34 + ADD CONSTRAINT hmis_2022_services_partitioned_34_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_35 hmis_2022_services_partitioned_35_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_35 + ADD CONSTRAINT hmis_2022_services_partitioned_35_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_36 hmis_2022_services_partitioned_36_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_36 + ADD CONSTRAINT hmis_2022_services_partitioned_36_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_37 hmis_2022_services_partitioned_37_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_37 + ADD CONSTRAINT hmis_2022_services_partitioned_37_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_38 hmis_2022_services_partitioned_38_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_38 + ADD CONSTRAINT hmis_2022_services_partitioned_38_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_39 hmis_2022_services_partitioned_39_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_39 + ADD CONSTRAINT hmis_2022_services_partitioned_39_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_3 hmis_2022_services_partitioned_3_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_3 + ADD CONSTRAINT hmis_2022_services_partitioned_3_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_40 hmis_2022_services_partitioned_40_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_40 + ADD CONSTRAINT hmis_2022_services_partitioned_40_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_41 hmis_2022_services_partitioned_41_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_41 + ADD CONSTRAINT hmis_2022_services_partitioned_41_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_42 hmis_2022_services_partitioned_42_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_42 + ADD CONSTRAINT hmis_2022_services_partitioned_42_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_43 hmis_2022_services_partitioned_43_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_43 + ADD CONSTRAINT hmis_2022_services_partitioned_43_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_44 hmis_2022_services_partitioned_44_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_44 + ADD CONSTRAINT hmis_2022_services_partitioned_44_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_45 hmis_2022_services_partitioned_45_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_45 + ADD CONSTRAINT hmis_2022_services_partitioned_45_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_46 hmis_2022_services_partitioned_46_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_46 + ADD CONSTRAINT hmis_2022_services_partitioned_46_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_47 hmis_2022_services_partitioned_47_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_47 + ADD CONSTRAINT hmis_2022_services_partitioned_47_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_48 hmis_2022_services_partitioned_48_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_48 + ADD CONSTRAINT hmis_2022_services_partitioned_48_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_49 hmis_2022_services_partitioned_49_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_49 + ADD CONSTRAINT hmis_2022_services_partitioned_49_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_4 hmis_2022_services_partitioned_4_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_4 + ADD CONSTRAINT hmis_2022_services_partitioned_4_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_50 hmis_2022_services_partitioned_50_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_50 + ADD CONSTRAINT hmis_2022_services_partitioned_50_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_51 hmis_2022_services_partitioned_51_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_51 + ADD CONSTRAINT hmis_2022_services_partitioned_51_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_52 hmis_2022_services_partitioned_52_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_52 + ADD CONSTRAINT hmis_2022_services_partitioned_52_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_53 hmis_2022_services_partitioned_53_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_53 + ADD CONSTRAINT hmis_2022_services_partitioned_53_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_54 hmis_2022_services_partitioned_54_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_54 + ADD CONSTRAINT hmis_2022_services_partitioned_54_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_55 hmis_2022_services_partitioned_55_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_55 + ADD CONSTRAINT hmis_2022_services_partitioned_55_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_56 hmis_2022_services_partitioned_56_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_56 + ADD CONSTRAINT hmis_2022_services_partitioned_56_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_57 hmis_2022_services_partitioned_57_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_57 + ADD CONSTRAINT hmis_2022_services_partitioned_57_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_58 hmis_2022_services_partitioned_58_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_58 + ADD CONSTRAINT hmis_2022_services_partitioned_58_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_59 hmis_2022_services_partitioned_59_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_59 + ADD CONSTRAINT hmis_2022_services_partitioned_59_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_5 hmis_2022_services_partitioned_5_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_5 + ADD CONSTRAINT hmis_2022_services_partitioned_5_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_60 hmis_2022_services_partitioned_60_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_60 + ADD CONSTRAINT hmis_2022_services_partitioned_60_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_61 hmis_2022_services_partitioned_61_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_61 + ADD CONSTRAINT hmis_2022_services_partitioned_61_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_62 hmis_2022_services_partitioned_62_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_62 + ADD CONSTRAINT hmis_2022_services_partitioned_62_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_63 hmis_2022_services_partitioned_63_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_63 + ADD CONSTRAINT hmis_2022_services_partitioned_63_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_64 hmis_2022_services_partitioned_64_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_64 + ADD CONSTRAINT hmis_2022_services_partitioned_64_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_65 hmis_2022_services_partitioned_65_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_65 + ADD CONSTRAINT hmis_2022_services_partitioned_65_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_66 hmis_2022_services_partitioned_66_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_66 + ADD CONSTRAINT hmis_2022_services_partitioned_66_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_67 hmis_2022_services_partitioned_67_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_67 + ADD CONSTRAINT hmis_2022_services_partitioned_67_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_68 hmis_2022_services_partitioned_68_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_68 + ADD CONSTRAINT hmis_2022_services_partitioned_68_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_69 hmis_2022_services_partitioned_69_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_69 + ADD CONSTRAINT hmis_2022_services_partitioned_69_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_6 hmis_2022_services_partitioned_6_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_6 + ADD CONSTRAINT hmis_2022_services_partitioned_6_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_70 hmis_2022_services_partitioned_70_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_70 + ADD CONSTRAINT hmis_2022_services_partitioned_70_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_7 hmis_2022_services_partitioned_7_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_7 + ADD CONSTRAINT hmis_2022_services_partitioned_7_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_8 hmis_2022_services_partitioned_8_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_8 + ADD CONSTRAINT hmis_2022_services_partitioned_8_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_9 hmis_2022_services_partitioned_9_pkey; Type: CONSTRAINT; Schema: hmis; Owner: - +-- + +ALTER TABLE ONLY hmis.hmis_2022_services_partitioned_9 + ADD CONSTRAINT hmis_2022_services_partitioned_9_pkey PRIMARY KEY (id, importer_log_id); + + +-- +-- Name: Affiliation Affiliation_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Affiliation" + ADD CONSTRAINT "Affiliation_pkey" PRIMARY KEY (id); + + +-- +-- Name: AssessmentQuestions AssessmentQuestions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."AssessmentQuestions" + ADD CONSTRAINT "AssessmentQuestions_pkey" PRIMARY KEY (id); + + +-- +-- Name: AssessmentResults AssessmentResults_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."AssessmentResults" + ADD CONSTRAINT "AssessmentResults_pkey" PRIMARY KEY (id); + + +-- +-- Name: Assessment Assessment_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Assessment" + ADD CONSTRAINT "Assessment_pkey" PRIMARY KEY (id); + + +-- +-- Name: CEParticipation CEParticipation_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CEParticipation" + ADD CONSTRAINT "CEParticipation_pkey" PRIMARY KEY (id); + + +-- +-- Name: ClientUnencrypted ClientUnencrypted_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."ClientUnencrypted" + ADD CONSTRAINT "ClientUnencrypted_pkey" PRIMARY KEY (id); + + +-- +-- Name: Client Client_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Client" + ADD CONSTRAINT "Client_pkey" PRIMARY KEY (id); + + +-- +-- Name: CurrentLivingSituation CurrentLivingSituation_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CurrentLivingSituation" + ADD CONSTRAINT "CurrentLivingSituation_pkey" PRIMARY KEY (id); + + +-- +-- Name: CustomAssessments CustomAssessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomAssessments" + ADD CONSTRAINT "CustomAssessments_pkey" PRIMARY KEY (id); + + +-- +-- Name: CustomCaseNote CustomCaseNote_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomCaseNote" + ADD CONSTRAINT "CustomCaseNote_pkey" PRIMARY KEY (id); + + +-- +-- Name: CustomClientAddress CustomClientAddress_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomClientAddress" + ADD CONSTRAINT "CustomClientAddress_pkey" PRIMARY KEY (id); + + +-- +-- Name: CustomClientAssessments CustomClientAssessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomClientAssessments" + ADD CONSTRAINT "CustomClientAssessments_pkey" PRIMARY KEY (id); + + +-- +-- Name: CustomClientContactPoint CustomClientContactPoint_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomClientContactPoint" + ADD CONSTRAINT "CustomClientContactPoint_pkey" PRIMARY KEY (id); + + +-- +-- Name: CustomClientName CustomClientName_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomClientName" + ADD CONSTRAINT "CustomClientName_pkey" PRIMARY KEY (id); + + +-- +-- Name: CustomDataElementDefinitions CustomDataElementDefinitions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomDataElementDefinitions" + ADD CONSTRAINT "CustomDataElementDefinitions_pkey" PRIMARY KEY (id); + + +-- +-- Name: CustomDataElements CustomDataElements_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomDataElements" + ADD CONSTRAINT "CustomDataElements_pkey" PRIMARY KEY (id); + + +-- +-- Name: CustomProjectAssessments CustomProjectAssessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomProjectAssessments" + ADD CONSTRAINT "CustomProjectAssessments_pkey" PRIMARY KEY (id); + + +-- +-- Name: CustomServiceCategories CustomServiceCategories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomServiceCategories" + ADD CONSTRAINT "CustomServiceCategories_pkey" PRIMARY KEY (id); + + +-- +-- Name: CustomServiceTypes CustomServiceTypes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomServiceTypes" + ADD CONSTRAINT "CustomServiceTypes_pkey" PRIMARY KEY (id); + + +-- +-- Name: CustomServices CustomServices_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomServices" + ADD CONSTRAINT "CustomServices_pkey" PRIMARY KEY (id); + + +-- +-- Name: Disabilities Disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Disabilities" + ADD CONSTRAINT "Disabilities_pkey" PRIMARY KEY (id); + + +-- +-- Name: EmploymentEducation EmploymentEducation_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."EmploymentEducation" + ADD CONSTRAINT "EmploymentEducation_pkey" PRIMARY KEY (id); + + +-- +-- Name: EnrollmentCoC EnrollmentCoC_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."EnrollmentCoC" + ADD CONSTRAINT "EnrollmentCoC_pkey" PRIMARY KEY (id); + + +-- +-- Name: Enrollment Enrollment_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Enrollment" + ADD CONSTRAINT "Enrollment_pkey" PRIMARY KEY (id); + + +-- +-- Name: Event Event_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Event" + ADD CONSTRAINT "Event_pkey" PRIMARY KEY (id); + + +-- +-- Name: Exit Exit_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Exit" + ADD CONSTRAINT "Exit_pkey" PRIMARY KEY (id); + + +-- +-- Name: Export Export_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Export" + ADD CONSTRAINT "Export_pkey" PRIMARY KEY (id); + + +-- +-- Name: Funder Funder_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Funder" + ADD CONSTRAINT "Funder_pkey" PRIMARY KEY (id); + + +-- +-- Name: Geography Geography_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Geography" + ADD CONSTRAINT "Geography_pkey" PRIMARY KEY (id); + + +-- +-- Name: HMISParticipation HMISParticipation_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."HMISParticipation" + ADD CONSTRAINT "HMISParticipation_pkey" PRIMARY KEY (id); + + +-- +-- Name: HealthAndDV HealthAndDV_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."HealthAndDV" + ADD CONSTRAINT "HealthAndDV_pkey" PRIMARY KEY (id); + + +-- +-- Name: IncomeBenefits IncomeBenefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."IncomeBenefits" + ADD CONSTRAINT "IncomeBenefits_pkey" PRIMARY KEY (id); + + +-- +-- Name: Inventory Inventory_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Inventory" + ADD CONSTRAINT "Inventory_pkey" PRIMARY KEY (id); + + +-- +-- Name: Organization Organization_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Organization" + ADD CONSTRAINT "Organization_pkey" PRIMARY KEY (id); + + +-- +-- Name: ProjectCoC ProjectCoC_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."ProjectCoC" + ADD CONSTRAINT "ProjectCoC_pkey" PRIMARY KEY (id); + + +-- +-- Name: Project Project_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Project" + ADD CONSTRAINT "Project_pkey" PRIMARY KEY (id); + + +-- +-- Name: Services Services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."Services" + ADD CONSTRAINT "Services_pkey" PRIMARY KEY (id); + + +-- +-- Name: User User_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."User" + ADD CONSTRAINT "User_pkey" PRIMARY KEY (id); + + +-- +-- Name: YouthEducationStatus YouthEducationStatus_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."YouthEducationStatus" + ADD CONSTRAINT "YouthEducationStatus_pkey" PRIMARY KEY (id); + + +-- +-- Name: ac_hmis_projects_import_attempts ac_hmis_projects_import_attempts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ac_hmis_projects_import_attempts + ADD CONSTRAINT ac_hmis_projects_import_attempts_pkey PRIMARY KEY (id); + + +-- +-- Name: ad_hoc_batches ad_hoc_batches_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ad_hoc_batches + ADD CONSTRAINT ad_hoc_batches_pkey PRIMARY KEY (id); + + +-- +-- Name: ad_hoc_clients ad_hoc_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ad_hoc_clients + ADD CONSTRAINT ad_hoc_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: ad_hoc_data_sources ad_hoc_data_sources_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ad_hoc_data_sources + ADD CONSTRAINT ad_hoc_data_sources_pkey PRIMARY KEY (id); + + +-- +-- Name: administrative_events administrative_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.administrative_events + ADD CONSTRAINT administrative_events_pkey PRIMARY KEY (id); + + +-- +-- Name: anomalies anomalies_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.anomalies + ADD CONSTRAINT anomalies_pkey PRIMARY KEY (id); + + +-- +-- Name: ansd_enrollments ansd_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ansd_enrollments + ADD CONSTRAINT ansd_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: ansd_events ansd_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ansd_events + ADD CONSTRAINT ansd_events_pkey PRIMARY KEY (id); + + +-- +-- Name: api_client_data_source_ids api_client_data_source_ids_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.api_client_data_source_ids + ADD CONSTRAINT api_client_data_source_ids_pkey PRIMARY KEY (id); + + +-- +-- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ar_internal_metadata + ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key); + + +-- +-- Name: assessment_answer_lookups assessment_answer_lookups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.assessment_answer_lookups + ADD CONSTRAINT assessment_answer_lookups_pkey PRIMARY KEY (id); + + +-- +-- Name: available_file_tags available_file_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.available_file_tags + ADD CONSTRAINT available_file_tags_pkey PRIMARY KEY (id); + + +-- +-- Name: bo_configs bo_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.bo_configs + ADD CONSTRAINT bo_configs_pkey PRIMARY KEY (id); + + +-- +-- Name: boston_project_scorecard_reports boston_project_scorecard_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.boston_project_scorecard_reports + ADD CONSTRAINT boston_project_scorecard_reports_pkey PRIMARY KEY (id); + + +-- +-- Name: boston_report_configs boston_report_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.boston_report_configs + ADD CONSTRAINT boston_report_configs_pkey PRIMARY KEY (id); + + +-- +-- Name: cas_availabilities cas_availabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_availabilities + ADD CONSTRAINT cas_availabilities_pkey PRIMARY KEY (id); + + +-- +-- Name: cas_ce_assessments cas_ce_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_ce_assessments + ADD CONSTRAINT cas_ce_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: cas_enrollments cas_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_enrollments + ADD CONSTRAINT cas_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: cas_houseds cas_houseds_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_houseds + ADD CONSTRAINT cas_houseds_pkey PRIMARY KEY (id); + + +-- +-- Name: cas_non_hmis_client_histories cas_non_hmis_client_histories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_non_hmis_client_histories + ADD CONSTRAINT cas_non_hmis_client_histories_pkey PRIMARY KEY (id); + + +-- +-- Name: cas_programs_to_projects cas_programs_to_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_programs_to_projects + ADD CONSTRAINT cas_programs_to_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: cas_referral_events cas_referral_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_referral_events + ADD CONSTRAINT cas_referral_events_pkey PRIMARY KEY (id); + + +-- +-- Name: cas_reports cas_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_reports + ADD CONSTRAINT cas_reports_pkey PRIMARY KEY (id); + + +-- +-- Name: cas_vacancies cas_vacancies_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cas_vacancies + ADD CONSTRAINT cas_vacancies_pkey PRIMARY KEY (id); + + +-- +-- Name: ce_assessments ce_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ce_assessments + ADD CONSTRAINT ce_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: ce_performance_ce_aprs ce_performance_ce_aprs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ce_performance_ce_aprs + ADD CONSTRAINT ce_performance_ce_aprs_pkey PRIMARY KEY (id); + + +-- +-- Name: ce_performance_clients ce_performance_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ce_performance_clients + ADD CONSTRAINT ce_performance_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: ce_performance_goals ce_performance_goals_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ce_performance_goals + ADD CONSTRAINT ce_performance_goals_pkey PRIMARY KEY (id); + + +-- +-- Name: ce_performance_results ce_performance_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ce_performance_results + ADD CONSTRAINT ce_performance_results_pkey PRIMARY KEY (id); + + +-- +-- Name: census_by_project_types census_by_project_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.census_by_project_types + ADD CONSTRAINT census_by_project_types_pkey PRIMARY KEY (id); + + +-- +-- Name: census_groups census_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.census_groups + ADD CONSTRAINT census_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: census_values census_values_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.census_values + ADD CONSTRAINT census_values_pkey PRIMARY KEY (id); + + +-- +-- Name: census_variables census_variables_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.census_variables + ADD CONSTRAINT census_variables_pkey PRIMARY KEY (id); + + +-- +-- Name: censuses censuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.censuses + ADD CONSTRAINT censuses_pkey PRIMARY KEY (id); + + +-- +-- Name: ch_enrollments ch_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ch_enrollments + ADD CONSTRAINT ch_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: children children_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.children + ADD CONSTRAINT children_pkey PRIMARY KEY (id); + + +-- +-- Name: chronics chronics_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.chronics + ADD CONSTRAINT chronics_pkey PRIMARY KEY (id); + + +-- +-- Name: clh_locations clh_locations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.clh_locations + ADD CONSTRAINT clh_locations_pkey PRIMARY KEY (id); + + +-- +-- Name: client_contacts client_contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.client_contacts + ADD CONSTRAINT client_contacts_pkey PRIMARY KEY (id); + + +-- +-- Name: client_matches client_matches_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.client_matches + ADD CONSTRAINT client_matches_pkey PRIMARY KEY (id); + + +-- +-- Name: client_merge_histories client_merge_histories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.client_merge_histories + ADD CONSTRAINT client_merge_histories_pkey PRIMARY KEY (id); + + +-- +-- Name: client_notes client_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.client_notes + ADD CONSTRAINT client_notes_pkey PRIMARY KEY (id); + + +-- +-- Name: client_roi_authorizations client_roi_authorizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.client_roi_authorizations + ADD CONSTRAINT client_roi_authorizations_pkey PRIMARY KEY (id); + + +-- +-- Name: client_split_histories client_split_histories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.client_split_histories + ADD CONSTRAINT client_split_histories_pkey PRIMARY KEY (id); + + +-- +-- Name: coc_codes coc_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.coc_codes + ADD CONSTRAINT coc_codes_pkey PRIMARY KEY (id); + + +-- +-- Name: coc_pit_counts coc_pit_counts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.coc_pit_counts + ADD CONSTRAINT coc_pit_counts_pkey PRIMARY KEY (id); + + +-- +-- Name: cohort_client_changes cohort_client_changes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cohort_client_changes + ADD CONSTRAINT cohort_client_changes_pkey PRIMARY KEY (id); + + +-- +-- Name: cohort_client_notes cohort_client_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cohort_client_notes + ADD CONSTRAINT cohort_client_notes_pkey PRIMARY KEY (id); + + +-- +-- Name: cohort_clients cohort_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cohort_clients + ADD CONSTRAINT cohort_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: cohort_column_options cohort_column_options_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cohort_column_options + ADD CONSTRAINT cohort_column_options_pkey PRIMARY KEY (id); + + +-- +-- Name: cohort_tabs cohort_tabs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cohort_tabs + ADD CONSTRAINT cohort_tabs_pkey PRIMARY KEY (id); + + +-- +-- Name: cohorts cohorts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.cohorts + ADD CONSTRAINT cohorts_pkey PRIMARY KEY (id); + + +-- +-- Name: configs configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.configs + ADD CONSTRAINT configs_pkey PRIMARY KEY (id); + + +-- +-- Name: contacts contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.contacts + ADD CONSTRAINT contacts_pkey PRIMARY KEY (id); + + +-- +-- Name: csg_engage_agencies csg_engage_agencies_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.csg_engage_agencies + ADD CONSTRAINT csg_engage_agencies_pkey PRIMARY KEY (id); + + +-- +-- Name: csg_engage_program_mappings csg_engage_program_mappings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.csg_engage_program_mappings + ADD CONSTRAINT csg_engage_program_mappings_pkey PRIMARY KEY (id); + + +-- +-- Name: csg_engage_program_reports csg_engage_program_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.csg_engage_program_reports + ADD CONSTRAINT csg_engage_program_reports_pkey PRIMARY KEY (id); + + +-- +-- Name: csg_engage_programs csg_engage_programs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.csg_engage_programs + ADD CONSTRAINT csg_engage_programs_pkey PRIMARY KEY (id); + + +-- +-- Name: csg_engage_reports csg_engage_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.csg_engage_reports + ADD CONSTRAINT csg_engage_reports_pkey PRIMARY KEY (id); + + +-- +-- Name: custom_imports_b_al_rows custom_imports_b_al_rows_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.custom_imports_b_al_rows + ADD CONSTRAINT custom_imports_b_al_rows_pkey PRIMARY KEY (id); + + +-- +-- Name: custom_imports_b_contacts_rows custom_imports_b_contacts_rows_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.custom_imports_b_contacts_rows + ADD CONSTRAINT custom_imports_b_contacts_rows_pkey PRIMARY KEY (id); + + +-- +-- Name: custom_imports_b_coo_rows custom_imports_b_coo_rows_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.custom_imports_b_coo_rows + ADD CONSTRAINT custom_imports_b_coo_rows_pkey PRIMARY KEY (id); + + +-- +-- Name: custom_imports_b_services_rows custom_imports_b_services_rows_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.custom_imports_b_services_rows + ADD CONSTRAINT custom_imports_b_services_rows_pkey PRIMARY KEY (id); + + +-- +-- Name: custom_imports_config custom_imports_config_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.custom_imports_config + ADD CONSTRAINT custom_imports_config_pkey PRIMARY KEY (id); + + +-- +-- Name: custom_imports_files custom_imports_files_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.custom_imports_files + ADD CONSTRAINT custom_imports_files_pkey PRIMARY KEY (id); + + +-- +-- Name: dashboard_export_reports dashboard_export_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.dashboard_export_reports + ADD CONSTRAINT dashboard_export_reports_pkey PRIMARY KEY (id); + + +-- +-- Name: data_monitorings data_monitorings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.data_monitorings + ADD CONSTRAINT data_monitorings_pkey PRIMARY KEY (id); + + +-- +-- Name: data_sources data_sources_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.data_sources + ADD CONSTRAINT data_sources_pkey PRIMARY KEY (id); + + +-- +-- Name: datasets datasets_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.datasets + ADD CONSTRAINT datasets_pkey PRIMARY KEY (id); + + +-- +-- Name: direct_financial_assistances direct_financial_assistances_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.direct_financial_assistances + ADD CONSTRAINT direct_financial_assistances_pkey PRIMARY KEY (id); + + +-- +-- Name: document_exports document_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.document_exports + ADD CONSTRAINT document_exports_pkey PRIMARY KEY (id); + + +-- +-- Name: eccovia_assessments eccovia_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eccovia_assessments + ADD CONSTRAINT eccovia_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: eccovia_case_managers eccovia_case_managers_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eccovia_case_managers + ADD CONSTRAINT eccovia_case_managers_pkey PRIMARY KEY (id); + + +-- +-- Name: eccovia_client_contacts eccovia_client_contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eccovia_client_contacts + ADD CONSTRAINT eccovia_client_contacts_pkey PRIMARY KEY (id); + + +-- +-- Name: eccovia_fetches eccovia_fetches_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eccovia_fetches + ADD CONSTRAINT eccovia_fetches_pkey PRIMARY KEY (id); + + +-- +-- Name: enrollment_change_histories enrollment_change_histories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.enrollment_change_histories + ADD CONSTRAINT enrollment_change_histories_pkey PRIMARY KEY (id); + + +-- +-- Name: enrollment_extras enrollment_extras_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.enrollment_extras + ADD CONSTRAINT enrollment_extras_pkey PRIMARY KEY (id); + + +-- +-- Name: eto_api_configs eto_api_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eto_api_configs + ADD CONSTRAINT eto_api_configs_pkey PRIMARY KEY (id); + + +-- +-- Name: eto_client_lookups eto_client_lookups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eto_client_lookups + ADD CONSTRAINT eto_client_lookups_pkey PRIMARY KEY (id); + + +-- +-- Name: eto_subject_response_lookups eto_subject_response_lookups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eto_subject_response_lookups + ADD CONSTRAINT eto_subject_response_lookups_pkey PRIMARY KEY (id); + + +-- +-- Name: eto_touch_point_lookups eto_touch_point_lookups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eto_touch_point_lookups + ADD CONSTRAINT eto_touch_point_lookups_pkey PRIMARY KEY (id); + + +-- +-- Name: eto_touch_point_response_times eto_touch_point_response_times_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.eto_touch_point_response_times + ADD CONSTRAINT eto_touch_point_response_times_pkey PRIMARY KEY (id); + + +-- +-- Name: exports_ad_hoc_anons exports_ad_hoc_anons_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.exports_ad_hoc_anons + ADD CONSTRAINT exports_ad_hoc_anons_pkey PRIMARY KEY (id); + + +-- +-- Name: exports_ad_hocs exports_ad_hocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.exports_ad_hocs + ADD CONSTRAINT exports_ad_hocs_pkey PRIMARY KEY (id); + + +-- +-- Name: exports exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.exports + ADD CONSTRAINT exports_pkey PRIMARY KEY (id); + + +-- +-- Name: external_ids external_ids_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.external_ids + ADD CONSTRAINT external_ids_pkey PRIMARY KEY (id); + + +-- +-- Name: external_reporting_cohort_permissions external_reporting_cohort_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.external_reporting_cohort_permissions + ADD CONSTRAINT external_reporting_cohort_permissions_pkey PRIMARY KEY (id); + + +-- +-- Name: external_reporting_project_permissions external_reporting_project_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.external_reporting_project_permissions + ADD CONSTRAINT external_reporting_project_permissions_pkey PRIMARY KEY (id); + + +-- +-- Name: external_request_logs external_request_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.external_request_logs + ADD CONSTRAINT external_request_logs_pkey PRIMARY KEY (id); + + +-- +-- Name: fake_data fake_data_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.fake_data + ADD CONSTRAINT fake_data_pkey PRIMARY KEY (id); + + +-- +-- Name: favorites favorites_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.favorites + ADD CONSTRAINT favorites_pkey PRIMARY KEY (id); + + +-- +-- Name: federal_census_breakdowns federal_census_breakdowns_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.federal_census_breakdowns + ADD CONSTRAINT federal_census_breakdowns_pkey PRIMARY KEY (id); + + +-- +-- Name: files files_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.files + ADD CONSTRAINT files_pkey PRIMARY KEY (id); + + +-- +-- Name: financial_clients financial_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.financial_clients + ADD CONSTRAINT financial_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: financial_providers financial_providers_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.financial_providers + ADD CONSTRAINT financial_providers_pkey PRIMARY KEY (id); + + +-- +-- Name: financial_transactions financial_transactions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.financial_transactions + ADD CONSTRAINT financial_transactions_pkey PRIMARY KEY (id); + + +-- +-- Name: generate_service_history_batch_logs generate_service_history_batch_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.generate_service_history_batch_logs + ADD CONSTRAINT generate_service_history_batch_logs_pkey PRIMARY KEY (id); + + +-- +-- Name: generate_service_history_log generate_service_history_log_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.generate_service_history_log + ADD CONSTRAINT generate_service_history_log_pkey PRIMARY KEY (id); + + +-- +-- Name: generic_services generic_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.generic_services + ADD CONSTRAINT generic_services_pkey PRIMARY KEY (id); + + +-- +-- Name: grades grades_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.grades + ADD CONSTRAINT grades_pkey PRIMARY KEY (id); + + +-- +-- Name: group_viewable_entities group_viewable_entities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.group_viewable_entities + ADD CONSTRAINT group_viewable_entities_pkey PRIMARY KEY (id); + + +-- +-- Name: hap_report_clients hap_report_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hap_report_clients + ADD CONSTRAINT hap_report_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hap_report_eraps hap_report_eraps_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hap_report_eraps + ADD CONSTRAINT hap_report_eraps_pkey PRIMARY KEY (id); + + +-- +-- Name: health_emergency_ama_restrictions health_emergency_ama_restrictions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_ama_restrictions + ADD CONSTRAINT health_emergency_ama_restrictions_pkey PRIMARY KEY (id); + + +-- +-- Name: health_emergency_clinical_triages health_emergency_clinical_triages_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_clinical_triages + ADD CONSTRAINT health_emergency_clinical_triages_pkey PRIMARY KEY (id); + + +-- +-- Name: health_emergency_isolations health_emergency_isolations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_isolations + ADD CONSTRAINT health_emergency_isolations_pkey PRIMARY KEY (id); + + +-- +-- Name: health_emergency_test_batches health_emergency_test_batches_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_test_batches + ADD CONSTRAINT health_emergency_test_batches_pkey PRIMARY KEY (id); + + +-- +-- Name: health_emergency_tests health_emergency_tests_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_tests + ADD CONSTRAINT health_emergency_tests_pkey PRIMARY KEY (id); + + +-- +-- Name: health_emergency_triages health_emergency_triages_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_triages + ADD CONSTRAINT health_emergency_triages_pkey PRIMARY KEY (id); + + +-- +-- Name: health_emergency_uploaded_tests health_emergency_uploaded_tests_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_uploaded_tests + ADD CONSTRAINT health_emergency_uploaded_tests_pkey PRIMARY KEY (id); + + +-- +-- Name: health_emergency_vaccinations health_emergency_vaccinations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.health_emergency_vaccinations + ADD CONSTRAINT health_emergency_vaccinations_pkey PRIMARY KEY (id); + + +-- +-- Name: helps helps_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.helps + ADD CONSTRAINT helps_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_affiliations hmis_2020_affiliations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_affiliations + ADD CONSTRAINT hmis_2020_affiliations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_aggregated_enrollments hmis_2020_aggregated_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_aggregated_enrollments + ADD CONSTRAINT hmis_2020_aggregated_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_aggregated_exits hmis_2020_aggregated_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_aggregated_exits + ADD CONSTRAINT hmis_2020_aggregated_exits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_assessment_questions hmis_2020_assessment_questions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_assessment_questions + ADD CONSTRAINT hmis_2020_assessment_questions_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_assessment_results hmis_2020_assessment_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_assessment_results + ADD CONSTRAINT hmis_2020_assessment_results_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_assessments hmis_2020_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_assessments + ADD CONSTRAINT hmis_2020_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_clients hmis_2020_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_clients + ADD CONSTRAINT hmis_2020_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_current_living_situations hmis_2020_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_current_living_situations + ADD CONSTRAINT hmis_2020_current_living_situations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_disabilities hmis_2020_disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_disabilities + ADD CONSTRAINT hmis_2020_disabilities_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_employment_educations hmis_2020_employment_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_employment_educations + ADD CONSTRAINT hmis_2020_employment_educations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_enrollment_cocs hmis_2020_enrollment_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_enrollment_cocs + ADD CONSTRAINT hmis_2020_enrollment_cocs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_enrollments hmis_2020_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_enrollments + ADD CONSTRAINT hmis_2020_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_events hmis_2020_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_events + ADD CONSTRAINT hmis_2020_events_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_exits hmis_2020_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_exits + ADD CONSTRAINT hmis_2020_exits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_exports hmis_2020_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_exports + ADD CONSTRAINT hmis_2020_exports_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_funders hmis_2020_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_funders + ADD CONSTRAINT hmis_2020_funders_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_health_and_dvs hmis_2020_health_and_dvs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_health_and_dvs + ADD CONSTRAINT hmis_2020_health_and_dvs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_income_benefits hmis_2020_income_benefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_income_benefits + ADD CONSTRAINT hmis_2020_income_benefits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_inventories hmis_2020_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_inventories + ADD CONSTRAINT hmis_2020_inventories_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_organizations hmis_2020_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_organizations + ADD CONSTRAINT hmis_2020_organizations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_project_cocs hmis_2020_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_project_cocs + ADD CONSTRAINT hmis_2020_project_cocs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_projects hmis_2020_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_projects + ADD CONSTRAINT hmis_2020_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_services hmis_2020_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_services + ADD CONSTRAINT hmis_2020_services_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2020_users hmis_2020_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2020_users + ADD CONSTRAINT hmis_2020_users_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_affiliations hmis_2022_affiliations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_affiliations + ADD CONSTRAINT hmis_2022_affiliations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_assessment_questions hmis_2022_assessment_questions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_assessment_questions + ADD CONSTRAINT hmis_2022_assessment_questions_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_assessment_results hmis_2022_assessment_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_assessment_results + ADD CONSTRAINT hmis_2022_assessment_results_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_assessments hmis_2022_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_assessments + ADD CONSTRAINT hmis_2022_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_clients_saved hmis_2022_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_clients_saved + ADD CONSTRAINT hmis_2022_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_current_living_situations hmis_2022_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_current_living_situations + ADD CONSTRAINT hmis_2022_current_living_situations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_disabilities hmis_2022_disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_disabilities + ADD CONSTRAINT hmis_2022_disabilities_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_employment_educations hmis_2022_employment_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_employment_educations + ADD CONSTRAINT hmis_2022_employment_educations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_enrollment_cocs hmis_2022_enrollment_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollment_cocs + ADD CONSTRAINT hmis_2022_enrollment_cocs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_enrollments_saved hmis_2022_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_enrollments_saved + ADD CONSTRAINT hmis_2022_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_events hmis_2022_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_events + ADD CONSTRAINT hmis_2022_events_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_exits_saved hmis_2022_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exits_saved + ADD CONSTRAINT hmis_2022_exits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_exports hmis_2022_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_exports + ADD CONSTRAINT hmis_2022_exports_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_funders hmis_2022_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_funders + ADD CONSTRAINT hmis_2022_funders_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_health_and_dvs hmis_2022_health_and_dvs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_health_and_dvs + ADD CONSTRAINT hmis_2022_health_and_dvs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_income_benefits hmis_2022_income_benefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_income_benefits + ADD CONSTRAINT hmis_2022_income_benefits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_inventories hmis_2022_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_inventories + ADD CONSTRAINT hmis_2022_inventories_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_organizations hmis_2022_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_organizations + ADD CONSTRAINT hmis_2022_organizations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_project_cocs hmis_2022_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_project_cocs + ADD CONSTRAINT hmis_2022_project_cocs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_projects hmis_2022_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_projects + ADD CONSTRAINT hmis_2022_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_services_saved hmis_2022_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_services_saved + ADD CONSTRAINT hmis_2022_services_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_users hmis_2022_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_users + ADD CONSTRAINT hmis_2022_users_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_youth_education_statuses hmis_2022_youth_education_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2022_youth_education_statuses + ADD CONSTRAINT hmis_2022_youth_education_statuses_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_affiliations hmis_2024_affiliations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_affiliations + ADD CONSTRAINT hmis_2024_affiliations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_assessment_questions hmis_2024_assessment_questions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_assessment_questions + ADD CONSTRAINT hmis_2024_assessment_questions_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_assessment_results hmis_2024_assessment_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_assessment_results + ADD CONSTRAINT hmis_2024_assessment_results_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_assessments hmis_2024_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_assessments + ADD CONSTRAINT hmis_2024_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_ce_participations hmis_2024_ce_participations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_ce_participations + ADD CONSTRAINT hmis_2024_ce_participations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_clients hmis_2024_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_clients + ADD CONSTRAINT hmis_2024_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_current_living_situations hmis_2024_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_current_living_situations + ADD CONSTRAINT hmis_2024_current_living_situations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_disabilities hmis_2024_disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_disabilities + ADD CONSTRAINT hmis_2024_disabilities_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_employment_educations hmis_2024_employment_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_employment_educations + ADD CONSTRAINT hmis_2024_employment_educations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_enrollments hmis_2024_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_enrollments + ADD CONSTRAINT hmis_2024_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_events hmis_2024_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_events + ADD CONSTRAINT hmis_2024_events_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_exits hmis_2024_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_exits + ADD CONSTRAINT hmis_2024_exits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_exports hmis_2024_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_exports + ADD CONSTRAINT hmis_2024_exports_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_funders hmis_2024_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_funders + ADD CONSTRAINT hmis_2024_funders_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_health_and_dvs hmis_2024_health_and_dvs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_health_and_dvs + ADD CONSTRAINT hmis_2024_health_and_dvs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_hmis_participations hmis_2024_hmis_participations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_hmis_participations + ADD CONSTRAINT hmis_2024_hmis_participations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_income_benefits hmis_2024_income_benefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_income_benefits + ADD CONSTRAINT hmis_2024_income_benefits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_inventories hmis_2024_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_inventories + ADD CONSTRAINT hmis_2024_inventories_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_organizations hmis_2024_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_organizations + ADD CONSTRAINT hmis_2024_organizations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_project_cocs hmis_2024_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_project_cocs + ADD CONSTRAINT hmis_2024_project_cocs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_projects hmis_2024_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_projects + ADD CONSTRAINT hmis_2024_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_services hmis_2024_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_services + ADD CONSTRAINT hmis_2024_services_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_users hmis_2024_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_users + ADD CONSTRAINT hmis_2024_users_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2024_youth_education_statuses hmis_2024_youth_education_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_2024_youth_education_statuses + ADD CONSTRAINT hmis_2024_youth_education_statuses_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_active_ranges hmis_active_ranges_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_active_ranges + ADD CONSTRAINT hmis_active_ranges_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_aggregated_enrollments hmis_aggregated_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_aggregated_enrollments + ADD CONSTRAINT hmis_aggregated_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_aggregated_exits hmis_aggregated_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_aggregated_exits + ADD CONSTRAINT hmis_aggregated_exits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_assessment_details hmis_assessment_details_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_assessment_details + ADD CONSTRAINT hmis_assessment_details_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_assessments hmis_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_assessments + ADD CONSTRAINT hmis_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_auto_exit_configs hmis_auto_exit_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_auto_exit_configs + ADD CONSTRAINT hmis_auto_exit_configs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_case_notes hmis_case_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_case_notes + ADD CONSTRAINT hmis_case_notes_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_client_alerts hmis_client_alerts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_client_alerts + ADD CONSTRAINT hmis_client_alerts_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_client_attributes_defined_text hmis_client_attributes_defined_text_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_client_attributes_defined_text + ADD CONSTRAINT hmis_client_attributes_defined_text_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_client_merge_audits hmis_client_merge_audits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_client_merge_audits + ADD CONSTRAINT hmis_client_merge_audits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_client_merge_histories hmis_client_merge_histories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_client_merge_histories + ADD CONSTRAINT hmis_client_merge_histories_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_clients hmis_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_clients + ADD CONSTRAINT hmis_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_affiliations hmis_csv_2020_affiliations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_affiliations + ADD CONSTRAINT hmis_csv_2020_affiliations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_assessment_questions hmis_csv_2020_assessment_questions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_assessment_questions + ADD CONSTRAINT hmis_csv_2020_assessment_questions_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_assessment_results hmis_csv_2020_assessment_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_assessment_results + ADD CONSTRAINT hmis_csv_2020_assessment_results_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_assessments hmis_csv_2020_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_assessments + ADD CONSTRAINT hmis_csv_2020_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_clients hmis_csv_2020_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_clients + ADD CONSTRAINT hmis_csv_2020_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_current_living_situations hmis_csv_2020_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_current_living_situations + ADD CONSTRAINT hmis_csv_2020_current_living_situations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_disabilities hmis_csv_2020_disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_disabilities + ADD CONSTRAINT hmis_csv_2020_disabilities_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_employment_educations hmis_csv_2020_employment_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_employment_educations + ADD CONSTRAINT hmis_csv_2020_employment_educations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_enrollment_cocs hmis_csv_2020_enrollment_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_enrollment_cocs + ADD CONSTRAINT hmis_csv_2020_enrollment_cocs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_enrollments hmis_csv_2020_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_enrollments + ADD CONSTRAINT hmis_csv_2020_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_events hmis_csv_2020_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_events + ADD CONSTRAINT hmis_csv_2020_events_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_exits hmis_csv_2020_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_exits + ADD CONSTRAINT hmis_csv_2020_exits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_exports hmis_csv_2020_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_exports + ADD CONSTRAINT hmis_csv_2020_exports_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_funders hmis_csv_2020_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_funders + ADD CONSTRAINT hmis_csv_2020_funders_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_health_and_dvs hmis_csv_2020_health_and_dvs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_health_and_dvs + ADD CONSTRAINT hmis_csv_2020_health_and_dvs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_income_benefits hmis_csv_2020_income_benefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_income_benefits + ADD CONSTRAINT hmis_csv_2020_income_benefits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_inventories hmis_csv_2020_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_inventories + ADD CONSTRAINT hmis_csv_2020_inventories_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_organizations hmis_csv_2020_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_organizations + ADD CONSTRAINT hmis_csv_2020_organizations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_project_cocs hmis_csv_2020_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_project_cocs + ADD CONSTRAINT hmis_csv_2020_project_cocs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_projects hmis_csv_2020_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_projects + ADD CONSTRAINT hmis_csv_2020_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_services hmis_csv_2020_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_services + ADD CONSTRAINT hmis_csv_2020_services_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2020_users hmis_csv_2020_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2020_users + ADD CONSTRAINT hmis_csv_2020_users_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_affiliations hmis_csv_2022_affiliations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_affiliations + ADD CONSTRAINT hmis_csv_2022_affiliations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_assessment_questions hmis_csv_2022_assessment_questions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_assessment_questions + ADD CONSTRAINT hmis_csv_2022_assessment_questions_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_assessment_results hmis_csv_2022_assessment_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_assessment_results + ADD CONSTRAINT hmis_csv_2022_assessment_results_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_assessments hmis_csv_2022_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_assessments + ADD CONSTRAINT hmis_csv_2022_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_clients hmis_csv_2022_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_clients + ADD CONSTRAINT hmis_csv_2022_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_current_living_situations hmis_csv_2022_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_current_living_situations + ADD CONSTRAINT hmis_csv_2022_current_living_situations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_disabilities hmis_csv_2022_disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_disabilities + ADD CONSTRAINT hmis_csv_2022_disabilities_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_employment_educations hmis_csv_2022_employment_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_employment_educations + ADD CONSTRAINT hmis_csv_2022_employment_educations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_enrollment_cocs hmis_csv_2022_enrollment_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_enrollment_cocs + ADD CONSTRAINT hmis_csv_2022_enrollment_cocs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_enrollments hmis_csv_2022_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_enrollments + ADD CONSTRAINT hmis_csv_2022_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_events hmis_csv_2022_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_events + ADD CONSTRAINT hmis_csv_2022_events_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_exits hmis_csv_2022_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_exits + ADD CONSTRAINT hmis_csv_2022_exits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_exports hmis_csv_2022_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_exports + ADD CONSTRAINT hmis_csv_2022_exports_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_funders hmis_csv_2022_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_funders + ADD CONSTRAINT hmis_csv_2022_funders_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_health_and_dvs hmis_csv_2022_health_and_dvs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_health_and_dvs + ADD CONSTRAINT hmis_csv_2022_health_and_dvs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_income_benefits hmis_csv_2022_income_benefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_income_benefits + ADD CONSTRAINT hmis_csv_2022_income_benefits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_inventories hmis_csv_2022_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_inventories + ADD CONSTRAINT hmis_csv_2022_inventories_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_organizations hmis_csv_2022_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_organizations + ADD CONSTRAINT hmis_csv_2022_organizations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_project_cocs hmis_csv_2022_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_project_cocs + ADD CONSTRAINT hmis_csv_2022_project_cocs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_projects hmis_csv_2022_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_projects + ADD CONSTRAINT hmis_csv_2022_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_services hmis_csv_2022_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_services + ADD CONSTRAINT hmis_csv_2022_services_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_users hmis_csv_2022_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_users + ADD CONSTRAINT hmis_csv_2022_users_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2022_youth_education_statuses hmis_csv_2022_youth_education_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2022_youth_education_statuses + ADD CONSTRAINT hmis_csv_2022_youth_education_statuses_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_affiliations hmis_csv_2024_affiliations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_affiliations + ADD CONSTRAINT hmis_csv_2024_affiliations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_assessment_questions hmis_csv_2024_assessment_questions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_assessment_questions + ADD CONSTRAINT hmis_csv_2024_assessment_questions_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_assessment_results hmis_csv_2024_assessment_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_assessment_results + ADD CONSTRAINT hmis_csv_2024_assessment_results_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_assessments hmis_csv_2024_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_assessments + ADD CONSTRAINT hmis_csv_2024_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_ce_participations hmis_csv_2024_ce_participations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_ce_participations + ADD CONSTRAINT hmis_csv_2024_ce_participations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_clients hmis_csv_2024_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_clients + ADD CONSTRAINT hmis_csv_2024_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_current_living_situations hmis_csv_2024_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_current_living_situations + ADD CONSTRAINT hmis_csv_2024_current_living_situations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_disabilities hmis_csv_2024_disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_disabilities + ADD CONSTRAINT hmis_csv_2024_disabilities_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_employment_educations hmis_csv_2024_employment_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_employment_educations + ADD CONSTRAINT hmis_csv_2024_employment_educations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_enrollments hmis_csv_2024_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_enrollments + ADD CONSTRAINT hmis_csv_2024_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_events hmis_csv_2024_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_events + ADD CONSTRAINT hmis_csv_2024_events_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_exits hmis_csv_2024_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_exits + ADD CONSTRAINT hmis_csv_2024_exits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_exports hmis_csv_2024_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_exports + ADD CONSTRAINT hmis_csv_2024_exports_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_funders hmis_csv_2024_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_funders + ADD CONSTRAINT hmis_csv_2024_funders_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_health_and_dvs hmis_csv_2024_health_and_dvs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_health_and_dvs + ADD CONSTRAINT hmis_csv_2024_health_and_dvs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_hmis_participations hmis_csv_2024_hmis_participations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_hmis_participations + ADD CONSTRAINT hmis_csv_2024_hmis_participations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_income_benefits hmis_csv_2024_income_benefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_income_benefits + ADD CONSTRAINT hmis_csv_2024_income_benefits_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_inventories hmis_csv_2024_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_inventories + ADD CONSTRAINT hmis_csv_2024_inventories_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_organizations hmis_csv_2024_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_organizations + ADD CONSTRAINT hmis_csv_2024_organizations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_project_cocs hmis_csv_2024_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_project_cocs + ADD CONSTRAINT hmis_csv_2024_project_cocs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_projects hmis_csv_2024_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_projects + ADD CONSTRAINT hmis_csv_2024_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_services hmis_csv_2024_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_services + ADD CONSTRAINT hmis_csv_2024_services_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_users hmis_csv_2024_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_users + ADD CONSTRAINT hmis_csv_2024_users_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_2024_youth_education_statuses hmis_csv_2024_youth_education_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_2024_youth_education_statuses + ADD CONSTRAINT hmis_csv_2024_youth_education_statuses_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_import_errors hmis_csv_import_errors_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_import_errors + ADD CONSTRAINT hmis_csv_import_errors_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_import_validations hmis_csv_import_validations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_import_validations + ADD CONSTRAINT hmis_csv_import_validations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_importer_logs hmis_csv_importer_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_importer_logs + ADD CONSTRAINT hmis_csv_importer_logs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_load_errors hmis_csv_load_errors_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_load_errors + ADD CONSTRAINT hmis_csv_load_errors_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_csv_loader_logs hmis_csv_loader_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_csv_loader_logs + ADD CONSTRAINT hmis_csv_loader_logs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_dqt_assessments hmis_dqt_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_assessments + ADD CONSTRAINT hmis_dqt_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_dqt_clients hmis_dqt_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_clients + ADD CONSTRAINT hmis_dqt_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_dqt_current_living_situations hmis_dqt_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_current_living_situations + ADD CONSTRAINT hmis_dqt_current_living_situations_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_dqt_enrollments hmis_dqt_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_enrollments + ADD CONSTRAINT hmis_dqt_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_dqt_events hmis_dqt_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_events + ADD CONSTRAINT hmis_dqt_events_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_dqt_goals hmis_dqt_goals_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_goals + ADD CONSTRAINT hmis_dqt_goals_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_dqt_inventories hmis_dqt_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_dqt_inventories + ADD CONSTRAINT hmis_dqt_inventories_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_external_form_publications hmis_external_form_publications_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_form_publications + ADD CONSTRAINT hmis_external_form_publications_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_external_form_submissions hmis_external_form_submissions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_form_submissions + ADD CONSTRAINT hmis_external_form_submissions_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_external_referral_household_members hmis_external_referral_household_members_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_referral_household_members + ADD CONSTRAINT hmis_external_referral_household_members_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_external_referral_postings hmis_external_referral_postings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_referral_postings + ADD CONSTRAINT hmis_external_referral_postings_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_external_referral_requests hmis_external_referral_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_referral_requests + ADD CONSTRAINT hmis_external_referral_requests_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_external_referrals hmis_external_referrals_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_referrals + ADD CONSTRAINT hmis_external_referrals_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_external_unit_availability_syncs hmis_external_unit_availability_syncs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_external_unit_availability_syncs + ADD CONSTRAINT hmis_external_unit_availability_syncs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_form_definitions hmis_form_definitions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_form_definitions + ADD CONSTRAINT hmis_form_definitions_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_form_instances hmis_form_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_form_instances + ADD CONSTRAINT hmis_form_instances_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_form_processors hmis_form_processors_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_form_processors + ADD CONSTRAINT hmis_form_processors_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_forms hmis_forms_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_forms + ADD CONSTRAINT hmis_forms_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_group_viewable_entities hmis_group_viewable_entities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_group_viewable_entities + ADD CONSTRAINT hmis_group_viewable_entities_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_import_configs hmis_import_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_import_configs + ADD CONSTRAINT hmis_import_configs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_project_configs hmis_project_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_project_configs + ADD CONSTRAINT hmis_project_configs_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_project_unit_type_mappings hmis_project_unit_type_mappings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_project_unit_type_mappings + ADD CONSTRAINT hmis_project_unit_type_mappings_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_scan_card_codes hmis_scan_card_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_scan_card_codes + ADD CONSTRAINT hmis_scan_card_codes_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_staff_assignment_relationships hmis_staff_assignment_relationships_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_staff_assignment_relationships + ADD CONSTRAINT hmis_staff_assignment_relationships_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_staff_assignments hmis_staff_assignments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_staff_assignments + ADD CONSTRAINT hmis_staff_assignments_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_staff hmis_staff_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_staff + ADD CONSTRAINT hmis_staff_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_staff_x_clients hmis_staff_x_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_staff_x_clients + ADD CONSTRAINT hmis_staff_x_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_supplemental_data_sets hmis_supplemental_data_sets_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_supplemental_data_sets + ADD CONSTRAINT hmis_supplemental_data_sets_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_supplemental_field_values hmis_supplemental_field_values_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_supplemental_field_values + ADD CONSTRAINT hmis_supplemental_field_values_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_unit_occupancy hmis_unit_occupancy_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_unit_occupancy + ADD CONSTRAINT hmis_unit_occupancy_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_unit_types hmis_unit_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_unit_types + ADD CONSTRAINT hmis_unit_types_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_units hmis_units_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hmis_units + ADD CONSTRAINT hmis_units_pkey PRIMARY KEY (id); + + +-- +-- Name: homeless_summary_report_clients homeless_summary_report_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.homeless_summary_report_clients + ADD CONSTRAINT homeless_summary_report_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: homeless_summary_report_results homeless_summary_report_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.homeless_summary_report_results + ADD CONSTRAINT homeless_summary_report_results_pkey PRIMARY KEY (id); + + +-- +-- Name: hopwa_caper_enrollments hopwa_caper_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hopwa_caper_enrollments + ADD CONSTRAINT hopwa_caper_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: hopwa_caper_services hopwa_caper_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hopwa_caper_services + ADD CONSTRAINT hopwa_caper_services_pkey PRIMARY KEY (id); + + +-- +-- Name: housing_resolution_plans housing_resolution_plans_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.housing_resolution_plans + ADD CONSTRAINT housing_resolution_plans_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_chronics hud_chronics_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_chronics + ADD CONSTRAINT hud_chronics_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_create_logs hud_create_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_create_logs + ADD CONSTRAINT hud_create_logs_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_lsa_summary_results hud_lsa_summary_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_lsa_summary_results + ADD CONSTRAINT hud_lsa_summary_results_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_apr_ce_assessments hud_report_apr_ce_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_apr_ce_assessments + ADD CONSTRAINT hud_report_apr_ce_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_apr_ce_events hud_report_apr_ce_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_apr_ce_events + ADD CONSTRAINT hud_report_apr_ce_events_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_apr_clients hud_report_apr_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_apr_clients + ADD CONSTRAINT hud_report_apr_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_apr_living_situations hud_report_apr_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_apr_living_situations + ADD CONSTRAINT hud_report_apr_living_situations_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_cells hud_report_cells_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_cells + ADD CONSTRAINT hud_report_cells_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_dq_clients hud_report_dq_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_dq_clients + ADD CONSTRAINT hud_report_dq_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_dq_living_situations hud_report_dq_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_dq_living_situations + ADD CONSTRAINT hud_report_dq_living_situations_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_hic_funders hud_report_hic_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_hic_funders + ADD CONSTRAINT hud_report_hic_funders_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_hic_inventories hud_report_hic_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_hic_inventories + ADD CONSTRAINT hud_report_hic_inventories_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_hic_organizations hud_report_hic_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_hic_organizations + ADD CONSTRAINT hud_report_hic_organizations_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_hic_project_cocs hud_report_hic_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_hic_project_cocs + ADD CONSTRAINT hud_report_hic_project_cocs_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_hic_projects hud_report_hic_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_hic_projects + ADD CONSTRAINT hud_report_hic_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_instances hud_report_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_instances + ADD CONSTRAINT hud_report_instances_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_path_clients hud_report_path_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_path_clients + ADD CONSTRAINT hud_report_path_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_pit_clients hud_report_pit_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_pit_clients + ADD CONSTRAINT hud_report_pit_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_spm_bed_nights hud_report_spm_bed_nights_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_spm_bed_nights + ADD CONSTRAINT hud_report_spm_bed_nights_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_spm_clients hud_report_spm_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_spm_clients + ADD CONSTRAINT hud_report_spm_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_spm_enrollment_links hud_report_spm_enrollment_links_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_spm_enrollment_links + ADD CONSTRAINT hud_report_spm_enrollment_links_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_spm_enrollments hud_report_spm_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_spm_enrollments + ADD CONSTRAINT hud_report_spm_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_spm_episodes hud_report_spm_episodes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_spm_episodes + ADD CONSTRAINT hud_report_spm_episodes_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_spm_returns hud_report_spm_returns_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_spm_returns + ADD CONSTRAINT hud_report_spm_returns_pkey PRIMARY KEY (id); + + +-- +-- Name: hud_report_universe_members hud_report_universe_members_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.hud_report_universe_members + ADD CONSTRAINT hud_report_universe_members_pkey PRIMARY KEY (id); + + +-- +-- Name: identify_duplicates_log identify_duplicates_log_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.identify_duplicates_log + ADD CONSTRAINT identify_duplicates_log_pkey PRIMARY KEY (id); + + +-- +-- Name: import_logs import_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.import_logs + ADD CONSTRAINT import_logs_pkey PRIMARY KEY (id); + + +-- +-- Name: import_overrides import_overrides_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.import_overrides + ADD CONSTRAINT import_overrides_pkey PRIMARY KEY (id); + + +-- +-- Name: inbound_api_configurations inbound_api_configurations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.inbound_api_configurations + ADD CONSTRAINT inbound_api_configurations_pkey PRIMARY KEY (id); + + +-- +-- Name: income_benefits_report_clients income_benefits_report_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.income_benefits_report_clients + ADD CONSTRAINT income_benefits_report_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: income_benefits_report_incomes income_benefits_report_incomes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.income_benefits_report_incomes + ADD CONSTRAINT income_benefits_report_incomes_pkey PRIMARY KEY (id); + + +-- +-- Name: income_benefits_reports income_benefits_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.income_benefits_reports + ADD CONSTRAINT income_benefits_reports_pkey PRIMARY KEY (id); + + +-- +-- Name: internal_systems internal_systems_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.internal_systems + ADD CONSTRAINT internal_systems_pkey PRIMARY KEY (id); + + +-- +-- Name: involved_in_imports involved_in_imports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.involved_in_imports + ADD CONSTRAINT involved_in_imports_pkey PRIMARY KEY (id); + + +-- +-- Name: lftp_s3_syncs lftp_s3_syncs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lftp_s3_syncs + ADD CONSTRAINT lftp_s3_syncs_pkey PRIMARY KEY (id); + + +-- +-- Name: longitudinal_spm_results longitudinal_spm_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.longitudinal_spm_results + ADD CONSTRAINT longitudinal_spm_results_pkey PRIMARY KEY (id); + + +-- +-- Name: longitudinal_spm_spms longitudinal_spm_spms_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.longitudinal_spm_spms + ADD CONSTRAINT longitudinal_spm_spms_pkey PRIMARY KEY (id); + + +-- +-- Name: longitudinal_spms longitudinal_spms_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.longitudinal_spms + ADD CONSTRAINT longitudinal_spms_pkey PRIMARY KEY (id); + + +-- +-- Name: lookups_ethnicities lookups_ethnicities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_ethnicities + ADD CONSTRAINT lookups_ethnicities_pkey PRIMARY KEY (id); + + +-- +-- Name: lookups_funding_sources lookups_funding_sources_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_funding_sources + ADD CONSTRAINT lookups_funding_sources_pkey PRIMARY KEY (id); + + +-- +-- Name: lookups_genders lookups_genders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_genders + ADD CONSTRAINT lookups_genders_pkey PRIMARY KEY (id); + + +-- +-- Name: lookups_living_situations lookups_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_living_situations + ADD CONSTRAINT lookups_living_situations_pkey PRIMARY KEY (id); + + +-- +-- Name: lookups_project_types lookups_project_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_project_types + ADD CONSTRAINT lookups_project_types_pkey PRIMARY KEY (id); + + +-- +-- Name: lookups_relationships lookups_relationships_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_relationships + ADD CONSTRAINT lookups_relationships_pkey PRIMARY KEY (id); + + +-- +-- Name: lookups_tracking_methods lookups_tracking_methods_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_tracking_methods + ADD CONSTRAINT lookups_tracking_methods_pkey PRIMARY KEY (id); + + +-- +-- Name: lookups_yes_no_etcs lookups_yes_no_etcs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lookups_yes_no_etcs + ADD CONSTRAINT lookups_yes_no_etcs_pkey PRIMARY KEY (id); + + +-- +-- Name: lsa_rds_state_logs lsa_rds_state_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.lsa_rds_state_logs + ADD CONSTRAINT lsa_rds_state_logs_pkey PRIMARY KEY (id); + + +-- +-- Name: ma_monthly_performance_enrollments ma_monthly_performance_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ma_monthly_performance_enrollments + ADD CONSTRAINT ma_monthly_performance_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: ma_monthly_performance_projects ma_monthly_performance_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ma_monthly_performance_projects + ADD CONSTRAINT ma_monthly_performance_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: ma_yya_report_clients ma_yya_report_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.ma_yya_report_clients + ADD CONSTRAINT ma_yya_report_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: new_service_history new_service_history_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.new_service_history + ADD CONSTRAINT new_service_history_pkey PRIMARY KEY (id); + + +-- +-- Name: nightly_census_by_projects nightly_census_by_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.nightly_census_by_projects + ADD CONSTRAINT nightly_census_by_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: non_hmis_uploads non_hmis_uploads_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.non_hmis_uploads + ADD CONSTRAINT non_hmis_uploads_pkey PRIMARY KEY (id); + + +-- +-- Name: performance_measurement_goals performance_measurement_goals_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.performance_measurement_goals + ADD CONSTRAINT performance_measurement_goals_pkey PRIMARY KEY (id); + + +-- +-- Name: performance_metrics_clients performance_metrics_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.performance_metrics_clients + ADD CONSTRAINT performance_metrics_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: places places_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.places + ADD CONSTRAINT places_pkey PRIMARY KEY (id); + + +-- +-- Name: pm_client_projects pm_client_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.pm_client_projects + ADD CONSTRAINT pm_client_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: pm_clients pm_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.pm_clients + ADD CONSTRAINT pm_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: pm_coc_static_spms pm_coc_static_spms_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.pm_coc_static_spms + ADD CONSTRAINT pm_coc_static_spms_pkey PRIMARY KEY (id); + + +-- +-- Name: pm_projects pm_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.pm_projects + ADD CONSTRAINT pm_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: pm_results pm_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.pm_results + ADD CONSTRAINT pm_results_pkey PRIMARY KEY (id); + + +-- +-- Name: project_data_quality project_data_quality_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_data_quality + ADD CONSTRAINT project_data_quality_pkey PRIMARY KEY (id); + + +-- +-- Name: project_groups project_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_groups + ADD CONSTRAINT project_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: project_pass_fails_clients project_pass_fails_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_pass_fails_clients + ADD CONSTRAINT project_pass_fails_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: project_pass_fails project_pass_fails_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_pass_fails + ADD CONSTRAINT project_pass_fails_pkey PRIMARY KEY (id); + + +-- +-- Name: project_pass_fails_projects project_pass_fails_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_pass_fails_projects + ADD CONSTRAINT project_pass_fails_projects_pkey PRIMARY KEY (id); + + +-- +-- Name: project_project_groups project_project_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_project_groups + ADD CONSTRAINT project_project_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: project_scorecard_reports project_scorecard_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_scorecard_reports + ADD CONSTRAINT project_scorecard_reports_pkey PRIMARY KEY (id); + + +-- +-- Name: psc_feedback_surveys psc_feedback_surveys_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.psc_feedback_surveys + ADD CONSTRAINT psc_feedback_surveys_pkey PRIMARY KEY (id); + + +-- +-- Name: public_report_reports public_report_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.public_report_reports + ADD CONSTRAINT public_report_reports_pkey PRIMARY KEY (id); + + +-- +-- Name: public_report_settings public_report_settings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.public_report_settings + ADD CONSTRAINT public_report_settings_pkey PRIMARY KEY (id); + + +-- +-- Name: published_reports published_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.published_reports + ADD CONSTRAINT published_reports_pkey PRIMARY KEY (id); + + +-- +-- Name: recent_items recent_items_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.recent_items + ADD CONSTRAINT recent_items_pkey PRIMARY KEY (id); + + +-- +-- Name: recurring_hmis_export_links recurring_hmis_export_links_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.recurring_hmis_export_links + ADD CONSTRAINT recurring_hmis_export_links_pkey PRIMARY KEY (id); + + +-- +-- Name: recurring_hmis_exports recurring_hmis_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.recurring_hmis_exports + ADD CONSTRAINT recurring_hmis_exports_pkey PRIMARY KEY (id); + + +-- +-- Name: remote_configs remote_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.remote_configs + ADD CONSTRAINT remote_configs_pkey PRIMARY KEY (id); + + +-- +-- Name: remote_credentials remote_credentials_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.remote_credentials + ADD CONSTRAINT remote_credentials_pkey PRIMARY KEY (id); + + +-- +-- Name: report_definitions report_definitions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.report_definitions + ADD CONSTRAINT report_definitions_pkey PRIMARY KEY (id); + + +-- +-- Name: report_tokens report_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.report_tokens + ADD CONSTRAINT report_tokens_pkey PRIMARY KEY (id); + + +-- +-- Name: secure_files secure_files_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.secure_files + ADD CONSTRAINT secure_files_pkey PRIMARY KEY (id); + + +-- +-- Name: service_history_enrollments service_history_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_enrollments + ADD CONSTRAINT service_history_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: service_history_services service_history_services_partitioned_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services + ADD CONSTRAINT service_history_services_partitioned_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2000 service_history_services_2000_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2000 + ADD CONSTRAINT service_history_services_2000_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2001 service_history_services_2001_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2001 + ADD CONSTRAINT service_history_services_2001_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2002 service_history_services_2002_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2002 + ADD CONSTRAINT service_history_services_2002_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2003 service_history_services_2003_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2003 + ADD CONSTRAINT service_history_services_2003_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2004 service_history_services_2004_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2004 + ADD CONSTRAINT service_history_services_2004_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2005 service_history_services_2005_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2005 + ADD CONSTRAINT service_history_services_2005_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2006 service_history_services_2006_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2006 + ADD CONSTRAINT service_history_services_2006_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2007 service_history_services_2007_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2007 + ADD CONSTRAINT service_history_services_2007_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2008 service_history_services_2008_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2008 + ADD CONSTRAINT service_history_services_2008_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2009 service_history_services_2009_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2009 + ADD CONSTRAINT service_history_services_2009_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2010 service_history_services_2010_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2010 + ADD CONSTRAINT service_history_services_2010_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2011 service_history_services_2011_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2011 + ADD CONSTRAINT service_history_services_2011_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2012 service_history_services_2012_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2012 + ADD CONSTRAINT service_history_services_2012_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2013 service_history_services_2013_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2013 + ADD CONSTRAINT service_history_services_2013_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2014 service_history_services_2014_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2014 + ADD CONSTRAINT service_history_services_2014_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2015 service_history_services_2015_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2015 + ADD CONSTRAINT service_history_services_2015_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2016 service_history_services_2016_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2016 + ADD CONSTRAINT service_history_services_2016_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2017 service_history_services_2017_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2017 + ADD CONSTRAINT service_history_services_2017_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2018 service_history_services_2018_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2018 + ADD CONSTRAINT service_history_services_2018_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2019 service_history_services_2019_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2019 + ADD CONSTRAINT service_history_services_2019_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2020 service_history_services_2020_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2020 + ADD CONSTRAINT service_history_services_2020_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2021 service_history_services_2021_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2021 + ADD CONSTRAINT service_history_services_2021_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2022 service_history_services_2022_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2022 + ADD CONSTRAINT service_history_services_2022_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2023 service_history_services_2023_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2023 + ADD CONSTRAINT service_history_services_2023_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2024 service_history_services_2024_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2024 + ADD CONSTRAINT service_history_services_2024_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2025 service_history_services_2025_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2025 + ADD CONSTRAINT service_history_services_2025_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2026 service_history_services_2026_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2026 + ADD CONSTRAINT service_history_services_2026_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2027 service_history_services_2027_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2027 + ADD CONSTRAINT service_history_services_2027_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2028 service_history_services_2028_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2028 + ADD CONSTRAINT service_history_services_2028_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2029 service_history_services_2029_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2029 + ADD CONSTRAINT service_history_services_2029_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2030 service_history_services_2030_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2030 + ADD CONSTRAINT service_history_services_2030_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2031 service_history_services_2031_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2031 + ADD CONSTRAINT service_history_services_2031_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2032 service_history_services_2032_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2032 + ADD CONSTRAINT service_history_services_2032_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2033 service_history_services_2033_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2033 + ADD CONSTRAINT service_history_services_2033_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2034 service_history_services_2034_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2034 + ADD CONSTRAINT service_history_services_2034_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2035 service_history_services_2035_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2035 + ADD CONSTRAINT service_history_services_2035_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2036 service_history_services_2036_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2036 + ADD CONSTRAINT service_history_services_2036_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2037 service_history_services_2037_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2037 + ADD CONSTRAINT service_history_services_2037_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2038 service_history_services_2038_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2038 + ADD CONSTRAINT service_history_services_2038_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2039 service_history_services_2039_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2039 + ADD CONSTRAINT service_history_services_2039_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2040 service_history_services_2040_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2040 + ADD CONSTRAINT service_history_services_2040_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2041 service_history_services_2041_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2041 + ADD CONSTRAINT service_history_services_2041_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2042 service_history_services_2042_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2042 + ADD CONSTRAINT service_history_services_2042_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2043 service_history_services_2043_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2043 + ADD CONSTRAINT service_history_services_2043_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2044 service_history_services_2044_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2044 + ADD CONSTRAINT service_history_services_2044_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2045 service_history_services_2045_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2045 + ADD CONSTRAINT service_history_services_2045_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2046 service_history_services_2046_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2046 + ADD CONSTRAINT service_history_services_2046_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2047 service_history_services_2047_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2047 + ADD CONSTRAINT service_history_services_2047_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2048 service_history_services_2048_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2048 + ADD CONSTRAINT service_history_services_2048_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2049 service_history_services_2049_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2049 + ADD CONSTRAINT service_history_services_2049_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_2050 service_history_services_2050_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_2050 + ADD CONSTRAINT service_history_services_2050_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_history_services_was_for_inheritance service_history_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_was_for_inheritance + ADD CONSTRAINT service_history_services_pkey PRIMARY KEY (id); + + +-- +-- Name: service_history_services_remainder service_history_services_remainder_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_history_services_remainder + ADD CONSTRAINT service_history_services_remainder_pkey PRIMARY KEY (id, date); + + +-- +-- Name: service_scanning_scanner_ids service_scanning_scanner_ids_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_scanning_scanner_ids + ADD CONSTRAINT service_scanning_scanner_ids_pkey PRIMARY KEY (id); + + +-- +-- Name: service_scanning_services service_scanning_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.service_scanning_services + ADD CONSTRAINT service_scanning_services_pkey PRIMARY KEY (id); + + +-- +-- Name: shape_block_groups shape_block_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_block_groups + ADD CONSTRAINT shape_block_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: shape_cocs shape_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_cocs + ADD CONSTRAINT shape_cocs_pkey PRIMARY KEY (id); + + +-- +-- Name: shape_counties shape_counties_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_counties + ADD CONSTRAINT shape_counties_pkey PRIMARY KEY (id); + + +-- +-- Name: shape_places shape_places_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_places + ADD CONSTRAINT shape_places_pkey PRIMARY KEY (id); + + +-- +-- Name: shape_states shape_states_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_states + ADD CONSTRAINT shape_states_pkey PRIMARY KEY (id); + + +-- +-- Name: shape_towns shape_towns_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_towns + ADD CONSTRAINT shape_towns_pkey PRIMARY KEY (id); + + +-- +-- Name: shape_zip_codes shape_zip_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.shape_zip_codes + ADD CONSTRAINT shape_zip_codes_pkey PRIMARY KEY (id); + + +-- +-- Name: simple_report_cells simple_report_cells_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.simple_report_cells + ADD CONSTRAINT simple_report_cells_pkey PRIMARY KEY (id); + + +-- +-- Name: simple_report_instances simple_report_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.simple_report_instances + ADD CONSTRAINT simple_report_instances_pkey PRIMARY KEY (id); + + +-- +-- Name: simple_report_universe_members simple_report_universe_members_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.simple_report_universe_members + ADD CONSTRAINT simple_report_universe_members_pkey PRIMARY KEY (id); + + +-- +-- Name: synthetic_assessments synthetic_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.synthetic_assessments + ADD CONSTRAINT synthetic_assessments_pkey PRIMARY KEY (id); + + +-- +-- Name: synthetic_ce_assessment_project_configs synthetic_ce_assessment_project_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.synthetic_ce_assessment_project_configs + ADD CONSTRAINT synthetic_ce_assessment_project_configs_pkey PRIMARY KEY (id); + + +-- +-- Name: synthetic_events synthetic_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.synthetic_events + ADD CONSTRAINT synthetic_events_pkey PRIMARY KEY (id); + + +-- +-- Name: synthetic_youth_education_statuses synthetic_youth_education_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.synthetic_youth_education_statuses + ADD CONSTRAINT synthetic_youth_education_statuses_pkey PRIMARY KEY (id); + + +-- +-- Name: system_colors system_colors_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.system_colors + ADD CONSTRAINT system_colors_pkey PRIMARY KEY (id); + + +-- +-- Name: system_pathways_clients system_pathways_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.system_pathways_clients + ADD CONSTRAINT system_pathways_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: system_pathways_enrollments system_pathways_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.system_pathways_enrollments + ADD CONSTRAINT system_pathways_enrollments_pkey PRIMARY KEY (id); + + +-- +-- Name: taggings taggings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.taggings + ADD CONSTRAINT taggings_pkey PRIMARY KEY (id); + + +-- +-- Name: tags tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.tags + ADD CONSTRAINT tags_pkey PRIMARY KEY (id); + + +-- +-- Name: talentlms_completed_trainings talentlms_completed_trainings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.talentlms_completed_trainings + ADD CONSTRAINT talentlms_completed_trainings_pkey PRIMARY KEY (id); + + +-- +-- Name: talentlms_configs talentlms_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.talentlms_configs + ADD CONSTRAINT talentlms_configs_pkey PRIMARY KEY (id); + + +-- +-- Name: talentlms_courses talentlms_courses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.talentlms_courses + ADD CONSTRAINT talentlms_courses_pkey PRIMARY KEY (id); + + +-- +-- Name: talentlms_logins talentlms_logins_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.talentlms_logins + ADD CONSTRAINT talentlms_logins_pkey PRIMARY KEY (id); + + +-- +-- Name: temp_export_enrollment_186s temp_export_enrollment_186s_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.temp_export_enrollment_186s + ADD CONSTRAINT temp_export_enrollment_186s_pkey PRIMARY KEY (id); + + +-- +-- Name: temp_export_enrollment_187s temp_export_enrollment_187s_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.temp_export_enrollment_187s + ADD CONSTRAINT temp_export_enrollment_187s_pkey PRIMARY KEY (id); + + +-- +-- Name: temp_export_enrollment_189s temp_export_enrollment_189s_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.temp_export_enrollment_189s + ADD CONSTRAINT temp_export_enrollment_189s_pkey PRIMARY KEY (id); + + +-- +-- Name: temp_export_enrollment_222s temp_export_enrollment_222s_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.temp_export_enrollment_222s + ADD CONSTRAINT temp_export_enrollment_222s_pkey PRIMARY KEY (id); + + +-- +-- Name: temp_export_exit_188s temp_export_exit_188s_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.temp_export_exit_188s + ADD CONSTRAINT temp_export_exit_188s_pkey PRIMARY KEY (id); + + +-- +-- Name: text_message_messages text_message_messages_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.text_message_messages + ADD CONSTRAINT text_message_messages_pkey PRIMARY KEY (id); + + +-- +-- Name: text_message_topic_subscribers text_message_topic_subscribers_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.text_message_topic_subscribers + ADD CONSTRAINT text_message_topic_subscribers_pkey PRIMARY KEY (id); + + +-- +-- Name: text_message_topics text_message_topics_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.text_message_topics + ADD CONSTRAINT text_message_topics_pkey PRIMARY KEY (id); + + +-- +-- Name: themes themes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.themes + ADD CONSTRAINT themes_pkey PRIMARY KEY (id); + + +-- +-- Name: tx_research_exports tx_research_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.tx_research_exports + ADD CONSTRAINT tx_research_exports_pkey PRIMARY KEY (id); + + +-- +-- Name: uploads uploads_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.uploads + ADD CONSTRAINT uploads_pkey PRIMARY KEY (id); + + +-- +-- Name: user_client_permissions user_client_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.user_client_permissions + ADD CONSTRAINT user_client_permissions_pkey PRIMARY KEY (id); + + +-- +-- Name: user_clients user_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.user_clients + ADD CONSTRAINT user_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: user_viewable_entities user_viewable_entities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.user_viewable_entities + ADD CONSTRAINT user_viewable_entities_pkey PRIMARY KEY (id); + + +-- +-- Name: va_check_histories va_check_histories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.va_check_histories + ADD CONSTRAINT va_check_histories_pkey PRIMARY KEY (id); + + +-- +-- Name: verification_sources verification_sources_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.verification_sources + ADD CONSTRAINT verification_sources_pkey PRIMARY KEY (id); + + +-- +-- Name: versions versions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.versions + ADD CONSTRAINT versions_pkey PRIMARY KEY (id); + + +-- +-- Name: vispdats vispdats_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.vispdats + ADD CONSTRAINT vispdats_pkey PRIMARY KEY (id); + + +-- +-- Name: warehouse_client_service_history warehouse_client_service_history_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.warehouse_client_service_history + ADD CONSTRAINT warehouse_client_service_history_pkey PRIMARY KEY (id); + + +-- +-- Name: warehouse_clients warehouse_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.warehouse_clients + ADD CONSTRAINT warehouse_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: warehouse_clients_processed warehouse_clients_processed_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.warehouse_clients_processed + ADD CONSTRAINT warehouse_clients_processed_pkey PRIMARY KEY (id); + + +-- +-- Name: warehouse_reports warehouse_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.warehouse_reports + ADD CONSTRAINT warehouse_reports_pkey PRIMARY KEY (id); + + +-- +-- Name: weather weather_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.weather + ADD CONSTRAINT weather_pkey PRIMARY KEY (id); + + +-- +-- Name: whitelisted_projects_for_clients whitelisted_projects_for_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.whitelisted_projects_for_clients + ADD CONSTRAINT whitelisted_projects_for_clients_pkey PRIMARY KEY (id); + + +-- +-- Name: youth_case_managements youth_case_managements_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.youth_case_managements + ADD CONSTRAINT youth_case_managements_pkey PRIMARY KEY (id); + + +-- +-- Name: youth_exports youth_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.youth_exports + ADD CONSTRAINT youth_exports_pkey PRIMARY KEY (id); + + +-- +-- Name: youth_follow_ups youth_follow_ups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.youth_follow_ups + ADD CONSTRAINT youth_follow_ups_pkey PRIMARY KEY (id); + + +-- +-- Name: youth_intakes youth_intakes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.youth_intakes + ADD CONSTRAINT youth_intakes_pkey PRIMARY KEY (id); + + +-- +-- Name: youth_referrals youth_referrals_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.youth_referrals + ADD CONSTRAINT youth_referrals_pkey PRIMARY KEY (id); + + +-- +-- Name: hmis_2022_clients_partitioned_DOB_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DOB_idx" ON ONLY public.hmis_2022_clients USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DOB_idx" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_DOB_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DOB_idx1" ON ONLY public.hmis_2022_clients USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_DOB_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DOB_idx2" ON ONLY public.hmis_2022_clients USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_DOB_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DOB_idx3" ON ONLY public.hmis_2022_clients USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_DOB_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DOB_idx4" ON ONLY public.hmis_2022_clients USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_DateCreated_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DateCreated_idx" ON ONLY public.hmis_2022_clients USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_DateCreated_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DateCreated_idx1" ON ONLY public.hmis_2022_clients USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_DateCreated_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DateCreated_idx2" ON ONLY public.hmis_2022_clients USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_DateCreated_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DateCreated_idx3" ON ONLY public.hmis_2022_clients USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_DateCreated_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DateCreated_idx4" ON ONLY public.hmis_2022_clients USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_DateUpdated_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DateUpdated_idx" ON ONLY public.hmis_2022_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_DateUpdated_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DateUpdated_idx1" ON ONLY public.hmis_2022_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_DateUpdated_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DateUpdated_idx2" ON ONLY public.hmis_2022_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_DateUpdated_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DateUpdated_idx3" ON ONLY public.hmis_2022_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_DateUpdated_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_DateUpdated_idx4" ON ONLY public.hmis_2022_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_ExportID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_ExportID_idx" ON ONLY public.hmis_2022_clients USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_ExportID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_ExportID_idx1" ON ONLY public.hmis_2022_clients USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_ExportID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_ExportID_idx2" ON ONLY public.hmis_2022_clients USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_ExportID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_ExportID_idx3" ON ONLY public.hmis_2022_clients USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_ExportID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_ExportID_idx4" ON ONLY public.hmis_2022_clients USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_FirstName_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_FirstName_idx" ON ONLY public.hmis_2022_clients USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_FirstName_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_FirstName_idx1" ON ONLY public.hmis_2022_clients USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_FirstName_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_FirstName_idx2" ON ONLY public.hmis_2022_clients USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_FirstName_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_FirstName_idx3" ON ONLY public.hmis_2022_clients USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_FirstName_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_FirstName_idx4" ON ONLY public.hmis_2022_clients USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_LastName_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_LastName_idx" ON ONLY public.hmis_2022_clients USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_LastName_idx" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_LastName_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_LastName_idx1" ON ONLY public.hmis_2022_clients USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_LastName_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_LastName_idx2" ON ONLY public.hmis_2022_clients USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_LastName_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_LastName_idx3" ON ONLY public.hmis_2022_clients USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_LastName_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_LastName_idx4" ON ONLY public.hmis_2022_clients USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_PersonalID_data_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ON ONLY public.hmis_2022_clients USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_0_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_PersonalID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_PersonalID_idx" ON ONLY public.hmis_2022_clients USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_PersonalID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_PersonalID_idx1" ON ONLY public.hmis_2022_clients USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_PersonalID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_PersonalID_idx2" ON ONLY public.hmis_2022_clients USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_PersonalID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_PersonalID_idx3" ON ONLY public.hmis_2022_clients USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_PersonalID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_PersonalID_idx4" ON ONLY public.hmis_2022_clients USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_VeteranStatus_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_VeteranStatus_idx" ON ONLY public.hmis_2022_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_VeteranStatus_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_VeteranStatus_idx1" ON ONLY public.hmis_2022_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_VeteranStatus_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_VeteranStatus_idx2" ON ONLY public.hmis_2022_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_VeteranStatus_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_VeteranStatus_idx3" ON ONLY public.hmis_2022_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_VeteranStatus_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_VeteranStatus_idx4" ON ONLY public.hmis_2022_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_0_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_0_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_0 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_importer_log_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_importer_log_id_idx ON ONLY public.hmis_2022_clients USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_0_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_0_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_0 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_source_type_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_source_type_source_id_idx ON ONLY public.hmis_2022_clients USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_0_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_0_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_0 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DOB_idx" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_LastName_idx" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_10_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_10_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_10 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_10_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_10_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_10 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_10_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_10_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_10 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DOB_idx" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_LastName_idx" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_11_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_11_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_11 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_11_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_11_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_11 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_11_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_11_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_11 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DOB_idx" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_LastName_idx" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_12_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_12_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_12 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_12_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_12_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_12 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_12_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_12_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_12 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DOB_idx" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_LastName_idx" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_13_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_13_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_13 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_13_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_13_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_13 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_13_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_13_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_13 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DOB_idx" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_LastName_idx" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_14_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_14_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_14 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_14_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_14_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_14 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_14_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_14_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_14 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DOB_idx" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_LastName_idx" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_15_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_15_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_15 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_15_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_15_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_15 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_15_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_15_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_15 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DOB_idx" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_LastName_idx" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_16_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_16_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_16 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_16_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_16_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_16 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_16_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_16_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_16 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DOB_idx" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_LastName_idx" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_17_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_17_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_17 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_17_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_17_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_17 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_17_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_17_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_17 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DOB_idx" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_LastName_idx" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_18_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_18_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_18 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_18_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_18_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_18 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_18_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_18_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_18 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DOB_idx" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_LastName_idx" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_19_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_19_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_19 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_19_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_19_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_19 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_19_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_19_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_19 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DOB_idx" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_LastName_idx" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_1_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_1_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_1 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_1_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_1_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_1 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_1_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_1_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_1 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DOB_idx" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_LastName_idx" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_20_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_20_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_20 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_20_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_20_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_20 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_20_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_20_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_20 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DOB_idx" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_LastName_idx" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_21_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_21_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_21 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_21_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_21_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_21 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_21_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_21_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_21 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DOB_idx" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_LastName_idx" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_22_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_22_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_22 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_22_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_22_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_22 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_22_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_22_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_22 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DOB_idx" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_LastName_idx" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_23_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_23_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_23 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_23_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_23_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_23 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_23_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_23_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_23 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DOB_idx" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_LastName_idx" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_24_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_24_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_24 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_24_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_24_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_24 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_24_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_24_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_24 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DOB_idx" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_LastName_idx" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_25_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_25_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_25 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_25_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_25_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_25 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_25_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_25_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_25 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DOB_idx" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_LastName_idx" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_26_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_26_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_26 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_26_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_26_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_26 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_26_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_26_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_26 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DOB_idx" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_LastName_idx" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_27_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_27_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_27 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_27_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_27_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_27 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_27_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_27_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_27 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DOB_idx" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_LastName_idx" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_28_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_28_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_28 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_28_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_28_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_28 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_28_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_28_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_28 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DOB_idx" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_LastName_idx" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_29_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_29_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_29 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_29_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_29_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_29 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_29_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_29_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_29 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DOB_idx" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_LastName_idx" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_2_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_2_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_2 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_2_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_2_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_2 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_2_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_2_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_2 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DOB_idx" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_LastName_idx" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_30_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_30_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_30 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_30_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_30_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_30 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_30_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_30_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_30 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DOB_idx" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_LastName_idx" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_31_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_31_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_31 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_31_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_31_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_31 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_31_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_31_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_31 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DOB_idx" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_LastName_idx" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_32_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_32_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_32 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_32_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_32_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_32 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_32_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_32_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_32 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DOB_idx" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_LastName_idx" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_33_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_33_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_33 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_33_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_33_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_33 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_33_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_33_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_33 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DOB_idx" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_LastName_idx" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_34_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_34_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_34 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_34_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_34_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_34 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_34_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_34_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_34 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DOB_idx" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_LastName_idx" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_35_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_35_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_35 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_35_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_35_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_35 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_35_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_35_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_35 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DOB_idx" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_LastName_idx" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_36_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_36_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_36 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_36_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_36_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_36 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_36_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_36_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_36 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DOB_idx" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_LastName_idx" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_37_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_37_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_37 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_37_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_37_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_37 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_37_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_37_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_37 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DOB_idx" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_LastName_idx" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_38_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_38_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_38 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_38_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_38_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_38 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_38_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_38_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_38 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DOB_idx" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_LastName_idx" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_39_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_39_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_39 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_39_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_39_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_39 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_39_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_39_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_39 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DOB_idx" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_LastName_idx" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_3_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_3_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_3 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_3_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_3_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_3 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_3_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_3_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_3 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DOB_idx" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_LastName_idx" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_40_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_40_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_40 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_40_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_40_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_40 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_40_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_40_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_40 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DOB_idx" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_LastName_idx" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_41_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_41_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_41 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_41_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_41_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_41 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_41_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_41_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_41 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DOB_idx" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_LastName_idx" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_42_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_42_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_42 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_42_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_42_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_42 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_42_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_42_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_42 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DOB_idx" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_LastName_idx" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_43_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_43_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_43 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_43_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_43_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_43 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_43_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_43_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_43 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DOB_idx" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_LastName_idx" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_44_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_44_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_44 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_44_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_44_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_44 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_44_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_44_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_44 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DOB_idx" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_LastName_idx" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_45_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_45_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_45 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_45_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_45_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_45 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_45_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_45_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_45 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DOB_idx" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_LastName_idx" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_46_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_46_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_46 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_46_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_46_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_46 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_46_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_46_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_46 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DOB_idx" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_LastName_idx" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_47_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_47_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_47 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_47_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_47_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_47 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_47_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_47_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_47 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DOB_idx" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_LastName_idx" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_48_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_48_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_48 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_48_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_48_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_48 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_48_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_48_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_48 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DOB_idx" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_LastName_idx" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_49_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_49_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_49 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_49_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_49_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_49 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_49_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_49_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_49 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DOB_idx" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_LastName_idx" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_4_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_4_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_4 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_4_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_4_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_4 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_4_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_4_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_4 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DOB_idx" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_LastName_idx" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_50_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_50_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_50 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_50_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_50_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_50 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_50_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_50_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_50 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DOB_idx" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_LastName_idx" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_51_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_51_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_51 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_51_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_51_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_51 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_51_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_51_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_51 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DOB_idx" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_LastName_idx" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_52_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_52_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_52 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_52_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_52_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_52 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_52_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_52_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_52 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DOB_idx" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_LastName_idx" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_53_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_53_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_53 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_53_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_53_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_53 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_53_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_53_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_53 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DOB_idx" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_LastName_idx" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_54_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_54_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_54 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_54_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_54_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_54 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_54_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_54_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_54 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DOB_idx" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_LastName_idx" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_55_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_55_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_55 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_55_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_55_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_55 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_55_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_55_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_55 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DOB_idx" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_LastName_idx" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_56_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_56_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_56 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_56_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_56_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_56 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_56_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_56_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_56 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DOB_idx" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_LastName_idx" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_57_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_57_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_57 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_57_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_57_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_57 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_57_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_57_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_57 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DOB_idx" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_LastName_idx" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_58_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_58_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_58 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_58_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_58_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_58 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_58_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_58_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_58 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DOB_idx" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_LastName_idx" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_59_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_59_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_59 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_59_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_59_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_59 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_59_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_59_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_59 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DOB_idx" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_LastName_idx" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_5_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_5_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_5 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_5_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_5_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_5 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_5_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_5_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_5 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DOB_idx" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_LastName_idx" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_60_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_60_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_60 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_60_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_60_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_60 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_60_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_60_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_60 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DOB_idx" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_LastName_idx" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_61_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_61_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_61 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_61_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_61_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_61 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_61_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_61_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_61 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DOB_idx" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_LastName_idx" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_62_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_62_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_62 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_62_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_62_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_62 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_62_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_62_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_62 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DOB_idx" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_LastName_idx" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_63_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_63_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_63 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_63_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_63_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_63 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_63_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_63_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_63 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DOB_idx" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_LastName_idx" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_64_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_64_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_64 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_64_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_64_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_64 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_64_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_64_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_64 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DOB_idx" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_LastName_idx" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_65_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_65_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_65 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_65_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_65_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_65 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_65_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_65_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_65 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DOB_idx" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_LastName_idx" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_66_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_66_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_66 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_66_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_66_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_66 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_66_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_66_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_66 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DOB_idx" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_LastName_idx" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_67_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_67_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_67 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_67_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_67_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_67 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_67_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_67_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_67 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DOB_idx" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_LastName_idx" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_68_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_68_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_68 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_68_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_68_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_68 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_68_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_68_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_68 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DOB_idx" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_LastName_idx" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_69_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_69_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_69 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_69_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_69_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_69 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_69_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_69_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_69 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DOB_idx" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_LastName_idx" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_6_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_6_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_6 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_6_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_6_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_6 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_6_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_6_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_6 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DOB_idx" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_LastName_idx" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_70_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_70_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_70 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_70_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_70_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_70 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_70_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_70_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_70 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DOB_idx" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_LastName_idx" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_7_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_7_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_7 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_7_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_7_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_7 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_7_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_7_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_7 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DOB_idx" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_LastName_idx" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_8_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_8_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_8 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_8_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_8_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_8 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_8_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_8_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_8 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DOB_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DOB_idx" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DOB_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DOB_idx1" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DOB_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DOB_idx2" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DOB_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DOB_idx3" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DOB_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DOB_idx4" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DOB"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DateCreated_idx" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DateCreated_idx1" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DateCreated_idx2" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DateCreated_idx3" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DateCreated_idx4" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DateUpdated_idx" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DateUpdated_idx1" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DateUpdated_idx2" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DateUpdated_idx3" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_DateUpdated_idx4" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_ExportID_idx" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_ExportID_idx1" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_ExportID_idx2" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_ExportID_idx3" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_ExportID_idx4" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_FirstName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_FirstName_idx" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_FirstName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_FirstName_idx1" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_FirstName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_FirstName_idx2" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_FirstName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_FirstName_idx3" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_FirstName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_FirstName_idx4" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("FirstName"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_LastName_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_LastName_idx" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_LastName_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_LastName_idx1" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_LastName_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_LastName_idx2" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_LastName_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_LastName_idx3" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_LastName_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_LastName_idx4" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("LastName"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_PersonalID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_PersonalID_data_source_id_idx" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_9_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_PersonalID_idx" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_PersonalID_idx1" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_PersonalID_idx2" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_PersonalID_idx3" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_PersonalID_idx4" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_VeteranStatus_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_VeteranStatus_idx" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_VeteranStatus_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_VeteranStatus_idx1" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_VeteranStatus_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_VeteranStatus_idx2" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_VeteranStatus_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_VeteranStatus_idx3" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_VeteranStatus_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_clients_partitioned_9_VeteranStatus_idx4" ON hmis.hmis_2022_clients_partitioned_9 USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2022_clients_partitioned_9_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_9_importer_log_id_idx ON hmis.hmis_2022_clients_partitioned_9 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_clients_partitioned_9_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_clients_partitioned_9_source_type_source_id_idx ON hmis.hmis_2022_clients_partitioned_9 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx10; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx10" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx11; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx11" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx12; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx12" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx13; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx13" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx14; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx14" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx15; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx15" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx16; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx16" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx17; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx17" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx18; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx18" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx19; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx19" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx20; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx20" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx21; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx21" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx22; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx22" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx23; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx23" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx24; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx24" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx25; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx25" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx26; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx26" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx27; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx27" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx28; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx28" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx29; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx29" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx30; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx30" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx31; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx31" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx32; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx32" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx33; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx33" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx34; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx34" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx35; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx35" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx36; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx36" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx37; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx37" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx38; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx38" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx39; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx39" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx40; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx40" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx41; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx41" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx42; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx42" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx43; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx43" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx44; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx44" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx45; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx45" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx46; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx46" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx47; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx47" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx48; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx48" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx49; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx49" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx50; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx50" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx51; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx51" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx52; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx52" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx53; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx53" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx54; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx54" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx55; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx55" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx56; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx56" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx57; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx57" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx58; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx58" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx59; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx59" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx60; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx60" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx61; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx61" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx62; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx62" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx63; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx63" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx64; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx64" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx65; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx65" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx66; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx66" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx67; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx67" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx68; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx68" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx69; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx69" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx70; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx70" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx100; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx100" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx101; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx101" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx102; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx102" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx103; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx103" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx104; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx104" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx105; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx105" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx106; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx106" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx107; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx107" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx108; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx108" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx109; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx109" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx110; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx110" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx111; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx111" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx112; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx112" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx113; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx113" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx114; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx114" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx115; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx115" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx116; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx116" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx117; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx117" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx118; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx118" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx119; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx119" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx120; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx120" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx121; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx121" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx122; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx122" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx123; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx123" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx124; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx124" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx125; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx125" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx126; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx126" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx127; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx127" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx128; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx128" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx129; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx129" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx130; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx130" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx131; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx131" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx132; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx132" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx133; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx133" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx134; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx134" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx135; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx135" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx136; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx136" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx137; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx137" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx138; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx138" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx139; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx139" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx140; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx140" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx141; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx141" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx142; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx142" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx143; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx143" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx144; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx144" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx145; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx145" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx146; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx146" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx147; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx147" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx148; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx148" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx149; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx149" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx150; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx150" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx151; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx151" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx152; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx152" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx153; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx153" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx154; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx154" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx155; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx155" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx156; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx156" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx157; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx157" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx158; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx158" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx159; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx159" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx160; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx160" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx161; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx161" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx162; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx162" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx163; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx163" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx164; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx164" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx165; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx165" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx166; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx166" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx167; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx167" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx168; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx168" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx169; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx169" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx170; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx170" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx171; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx171" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx172; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx172" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx173; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx173" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx174; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx174" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx175; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx175" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx176; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx176" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx177; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx177" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx178; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx178" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx179; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx179" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx180; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx180" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx181; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx181" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx182; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx182" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx183; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx183" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx184; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx184" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx185; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx185" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx186; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx186" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx187; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx187" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx188; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx188" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx189; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx189" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx190; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx190" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx191; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx191" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx192; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx192" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx193; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx193" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx194; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx194" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx195; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx195" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx196; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx196" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx197; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx197" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx198; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx198" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx199; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx199" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx200; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx200" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx201; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx201" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx202; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx202" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx203; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx203" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx204; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx204" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx205; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx205" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx206; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx206" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx207; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx207" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx208; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx208" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx209; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx209" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx210; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx210" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx211; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx211" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx212; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx212" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx213; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx213" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx214; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx214" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx215; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx215" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx216; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx216" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx217; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx217" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx218; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx218" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx219; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx219" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx220; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx220" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx221; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx221" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx222; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx222" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx223; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx223" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx224; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx224" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx225; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx225" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx226; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx226" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx227; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx227" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx228; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx228" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx229; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx229" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx230; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx230" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx231; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx231" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx232; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx232" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx233; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx233" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx234; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx234" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx235; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx235" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx236; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx236" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx237; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx237" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx238; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx238" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx239; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx239" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx240; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx240" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx241; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx241" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx242; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx242" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx243; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx243" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx244; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx244" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx245; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx245" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx246; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx246" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx247; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx247" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx248; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx248" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx249; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx249" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx250; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx250" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx251; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx251" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx252; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx252" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx253; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx253" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx254; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx254" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx255; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx255" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx256; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx256" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx257; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx257" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx258; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx258" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx259; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx259" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx260; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx260" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx261; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx261" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx262; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx262" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx263; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx263" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx264; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx264" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx265; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx265" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx266; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx266" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx267; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx267" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx268; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx268" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx269; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx269" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx270; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx270" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx271; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx271" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx272; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx272" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx273; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx273" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx274; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx274" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx275; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx275" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx276; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx276" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx277; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx277" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx278; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx278" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx279; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx279" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx280; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx280" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx281; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx281" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx282; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx282" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx283; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx283" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx284; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx284" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx285; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx285" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx286; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx286" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx287; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx287" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx288; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx288" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx289; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx289" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx290; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx290" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx291; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx291" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx292; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx292" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx293; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx293" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx294; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx294" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx295; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx295" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx296; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx296" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx297; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx297" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx298; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx298" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx299; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx299" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx300; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx300" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx301; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx301" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx302; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx302" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx303; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx303" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx304; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx304" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx305; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx305" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx306; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx306" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx307; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx307" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx308; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx308" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx309; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx309" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx310; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx310" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx311; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx311" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx312; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx312" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx313; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx313" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx314; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx314" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx315; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx315" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx316; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx316" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx317; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx317" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx318; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx318" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx319; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx319" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx320; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx320" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx321; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx321" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx322; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx322" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx323; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx323" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx324; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx324" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx325; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx325" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx326; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx326" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx327; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx327" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx328; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx328" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx329; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx329" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx330; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx330" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx331; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx331" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx332; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx332" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx333; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx333" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx334; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx334" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx335; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx335" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx336; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx336" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx337; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx337" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx338; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx338" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx339; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx339" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx340; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx340" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx341; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx341" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx342; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx342" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx343; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx343" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx344; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx344" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx345; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx345" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx346; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx346" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx347; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx347" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx348; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx348" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx349; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx349" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx350; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx350" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx351; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx351" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx352; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx352" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx353; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx353" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx354; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx354" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx10; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx10" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx11; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx11" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx12; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx12" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx13; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx13" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx14; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx14" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx15; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx15" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx16; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx16" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx17; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx17" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx18; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx18" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx19; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx19" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx20; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx20" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx21; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx21" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx22; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx22" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx23; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx23" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx24; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx24" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx25; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx25" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx26; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx26" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx27; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx27" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx28; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx28" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx29; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx29" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx30; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx30" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx31; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx31" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx32; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx32" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx33; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx33" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx34; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx34" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx35; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx35" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx36; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx36" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx37; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx37" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx38; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx38" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx39; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx39" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx40; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx40" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx41; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx41" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx42; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx42" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx43; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx43" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx44; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx44" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx45; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx45" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx46; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx46" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx47; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx47" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx48; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx48" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx49; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx49" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx50; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx50" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx51; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx51" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx52; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx52" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx53; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx53" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx54; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx54" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx55; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx55" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx56; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx56" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx57; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx57" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx58; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx58" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx59; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx59" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx60; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx60" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx61; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx61" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx62; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx62" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx63; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx63" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx64; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx64" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx65; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx65" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx66; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx66" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx67; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx67" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx68; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx68" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx69; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx69" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx70; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx70" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx71; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx71" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx72; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx72" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx73; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx73" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx74; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx74" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx75; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx75" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx76; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx76" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx77; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx77" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx78; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx78" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx79; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx79" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx80; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx80" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx81; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx81" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx82; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx82" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx83; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx83" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx84; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx84" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx85; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx85" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx86; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx86" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx87; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx87" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx88; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx88" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx89; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx89" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx90; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx90" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx91; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx91" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx92; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx92" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx93; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx93" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx94; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx94" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx95; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx95" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx96; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx96" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx97; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx97" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx98; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx98" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx99; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx99" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ON ONLY public.hmis_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx10; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx10" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ON ONLY public.hmis_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx11; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx11" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ON ONLY public.hmis_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx12; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx12" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ON ONLY public.hmis_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx13; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx13" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ON ONLY public.hmis_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx14; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx14" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx15; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx15" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx16; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx16" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx17; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx17" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx18; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx18" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx19; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx19" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx20; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx20" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx21; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx21" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx22; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx22" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx23; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx23" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx24; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx24" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx25; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx25" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx26; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx26" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx27; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx27" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx28; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx28" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx29; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx29" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx30; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx30" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx31; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx31" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx32; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx32" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx33; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx33" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx34; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx34" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx35; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx35" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx36; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx36" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx37; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx37" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx38; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx38" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx39; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx39" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx40; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx40" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx41; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx41" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx42; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx42" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx43; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx43" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx44; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx44" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx45; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx45" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx46; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx46" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx47; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx47" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx48; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx48" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx49; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx49" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx50; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx50" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx51; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx51" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx52; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx52" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx53; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx53" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx54; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx54" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx55; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx55" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx56; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx56" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx57; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx57" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx58; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx58" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx59; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx59" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx60; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx60" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx61; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx61" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx62; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx62" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx63; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx63" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx64; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx64" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx65; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx65" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx66; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx66" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx67; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx67" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx68; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx68" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx69; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx69" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx70; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx70" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx71; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx71" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx72; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx72" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx73; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx73" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx74; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx74" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx75; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx75" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx76; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx76" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx77; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx77" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx78; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx78" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx79; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx79" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx80; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx80" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx81; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx81" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx82; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx82" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx83; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx83" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx84; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx84" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx85; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx85" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx86; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx86" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx87; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx87" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx88; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx88" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx89; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx89" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx90; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx90" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx91; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx91" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx92; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx92" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx93; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx93" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx94; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx94" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx95; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx95" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx96; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx96" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx97; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx97" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx98; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx98" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx99; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx99" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx100; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx100" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx101; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx101" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx102; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx102" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx103; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx103" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx104; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx104" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx105; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx105" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx106; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx106" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx107; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx107" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx108; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx108" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx109; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx109" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx110; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx110" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx111; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx111" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx112; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx112" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx113; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx113" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx114; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx114" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx115; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx115" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx116; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx116" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx117; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx117" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx118; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx118" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx119; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx119" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx120; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx120" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx121; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx121" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx122; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx122" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx123; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx123" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx124; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx124" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx125; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx125" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx126; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx126" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx127; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx127" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx128; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx128" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx129; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx129" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx130; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx130" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx131; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx131" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx132; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx132" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx133; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx133" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx134; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx134" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx135; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx135" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx136; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx136" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx137; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx137" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx138; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx138" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx139; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx139" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx140; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx140" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx141; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx141" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx142; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx142" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx143; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx143" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx144; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx144" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx145; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx145" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx146; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx146" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx147; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx147" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx148; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx148" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx149; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx149" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx150; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx150" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx151; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx151" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx152; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx152" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx153; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx153" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx154; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx154" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx155; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx155" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx156; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx156" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx157; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx157" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx158; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx158" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx159; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx159" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx160; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx160" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx161; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx161" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx162; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx162" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx163; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx163" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx164; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx164" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx165; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx165" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx166; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx166" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx167; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx167" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx168; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx168" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx169; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx169" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx170; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx170" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx171; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx171" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx172; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx172" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx173; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx173" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx174; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx174" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx175; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx175" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx176; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx176" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx177; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx177" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx178; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx178" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx179; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx179" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx180; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx180" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx181; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx181" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx182; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx182" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx183; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx183" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx184; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx184" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx185; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx185" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx186; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx186" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx187; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx187" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx188; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx188" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx189; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx189" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx190; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx190" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx191; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx191" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx192; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx192" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx193; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx193" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx194; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx194" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx195; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx195" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx196; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx196" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx197; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx197" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx198; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx198" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx199; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx199" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx200; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx200" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx201; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx201" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx202; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx202" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx203; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx203" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx204; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx204" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx205; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx205" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx206; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx206" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx207; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx207" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx208; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx208" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx209; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx209" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx210; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx210" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx211; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx211" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx212; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx212" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx213; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx213" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx214; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx214" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx215; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx215" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx216; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx216" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx217; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx217" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx218; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx218" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx219; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx219" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx220; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx220" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx221; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx221" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx222; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx222" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx223; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx223" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx224; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx224" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx225; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx225" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx226; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx226" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx227; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx227" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx228; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx228" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx229; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx229" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx230; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx230" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx231; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx231" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx232; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx232" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx233; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx233" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx234; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx234" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx235; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx235" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx236; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx236" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx237; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx237" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx238; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx238" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx239; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx239" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx240; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx240" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx241; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx241" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx242; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx242" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx243; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx243" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx244; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx244" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx245; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx245" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx246; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx246" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx247; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx247" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx248; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx248" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx249; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx249" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx250; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx250" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx251; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx251" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx252; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx252" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx253; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx253" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx254; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx254" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx255; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx255" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx256; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx256" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx257; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx257" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx258; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx258" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx259; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx259" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx260; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx260" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx261; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx261" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx262; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx262" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx263; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx263" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx264; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx264" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx265; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx265" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx266; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx266" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx267; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx267" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx268; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx268" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx269; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx269" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx270; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx270" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx271; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx271" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx272; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx272" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx273; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx273" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx274; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx274" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx275; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx275" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx276; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx276" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx277; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx277" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx278; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx278" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx279; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx279" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx280; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx280" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx281; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx281" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx282; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx282" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx283; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx283" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx284; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx284" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx285; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx285" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx286; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx286" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx287; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx287" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx288; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx288" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx289; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx289" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx290; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx290" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx291; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx291" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx292; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx292" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx293; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx293" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx294; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx294" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx295; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx295" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx296; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx296" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx297; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx297" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx298; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx298" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx299; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx299" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx300; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx300" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx301; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx301" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx302; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx302" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx303; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx303" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx304; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx304" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx305; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx305" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx306; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx306" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx307; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx307" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx308; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx308" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx309; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx309" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx310; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx310" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx311; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx311" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx312; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx312" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx313; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx313" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx314; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx314" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx315; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx315" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx316; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx316" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx317; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx317" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx318; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx318" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx319; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx319" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx320; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx320" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx321; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx321" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx322; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx322" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx323; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx323" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx324; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx324" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx325; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx325" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx326; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx326" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx327; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx327" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx328; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx328" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx329; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx329" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx330; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx330" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx331; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx331" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx332; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx332" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx333; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx333" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx334; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx334" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx335; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx335" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx336; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx336" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx337; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx337" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx338; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx338" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx339; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx339" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx340; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx340" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx341; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx341" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx342; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx342" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx343; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx343" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx344; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx344" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx345; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx345" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx346; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx346" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx347; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx347" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx348; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx348" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx349; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx349" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx350; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx350" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx351; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx351" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx352; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx352" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx353; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx353" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx354; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx354" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx100; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx100" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx101; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx101" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx102; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx102" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx103; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx103" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx104; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx104" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx105; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx105" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx106; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx106" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx107; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx107" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx108; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx108" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx109; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx109" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx110; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx110" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx111; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx111" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx112; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx112" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx113; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx113" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx114; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx114" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx115; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx115" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx116; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx116" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx117; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx117" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx118; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx118" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx119; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx119" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx120; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx120" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx121; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx121" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx122; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx122" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx123; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx123" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx124; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx124" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx125; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx125" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx126; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx126" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx127; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx127" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx128; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx128" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx129; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx129" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx130; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx130" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx131; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx131" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx132; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx132" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx133; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx133" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx134; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx134" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx135; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx135" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx136; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx136" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx137; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx137" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx138; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx138" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx139; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx139" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx140; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx140" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx141; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx141" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx142; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx142" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx143; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx143" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx144; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx144" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx145; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx145" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx146; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx146" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx147; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx147" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx148; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx148" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx149; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx149" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx150; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx150" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx151; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx151" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx152; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx152" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx153; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx153" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx154; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx154" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx155; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx155" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx156; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx156" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx157; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx157" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx158; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx158" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx159; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx159" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx160; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx160" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx161; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx161" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx162; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx162" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx163; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx163" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx164; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx164" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx165; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx165" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx166; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx166" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx167; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx167" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx168; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx168" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx169; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx169" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx170; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx170" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx171; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx171" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx172; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx172" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx173; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx173" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx174; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx174" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx175; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx175" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx176; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx176" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx177; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx177" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx178; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx178" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx179; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx179" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx180; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx180" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx181; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx181" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx182; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx182" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx183; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx183" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx184; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx184" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx185; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx185" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx186; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx186" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx187; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx187" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx188; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx188" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx189; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx189" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx190; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx190" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx191; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx191" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx192; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx192" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx193; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx193" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx194; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx194" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx195; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx195" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx196; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx196" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx197; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx197" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx198; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx198" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx199; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx199" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx200; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx200" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx201; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx201" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx202; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx202" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx203; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx203" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx204; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx204" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx205; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx205" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx206; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx206" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx207; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx207" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx208; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx208" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx209; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx209" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx210; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx210" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx211; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx211" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx212; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx212" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx213; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx213" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx214; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx214" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx215; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx215" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx216; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx216" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx217; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx217" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx218; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx218" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx219; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx219" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx220; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx220" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx221; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx221" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx222; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx222" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx223; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx223" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx224; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx224" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx225; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx225" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx226; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx226" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx227; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx227" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx228; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx228" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx229; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx229" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx230; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx230" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx231; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx231" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx232; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx232" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx233; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx233" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx234; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx234" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx235; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx235" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx236; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx236" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx237; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx237" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx238; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx238" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx239; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx239" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx240; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx240" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx241; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx241" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx242; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx242" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx243; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx243" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx244; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx244" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx245; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx245" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx246; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx246" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx247; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx247" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx248; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx248" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx249; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx249" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx250; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx250" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx251; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx251" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx252; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx252" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx253; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx253" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx254; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx254" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx255; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx255" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx256; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx256" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx257; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx257" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx258; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx258" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx259; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx259" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx260; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx260" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx261; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx261" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx262; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx262" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx263; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx263" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx264; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx264" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx265; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx265" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx266; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx266" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx267; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx267" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx268; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx268" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx269; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx269" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx270; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx270" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx271; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx271" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx272; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx272" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx273; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx273" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx274; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx274" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx275; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx275" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx276; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx276" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx277; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx277" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx278; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx278" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx279; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx279" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx280; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx280" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx281; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx281" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx282; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx282" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx283; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx283" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx284; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx284" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx285; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx285" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx286; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx286" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx287; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx287" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx288; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx288" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx289; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx289" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx290; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx290" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx291; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx291" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx292; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx292" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx293; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx293" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx294; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx294" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx295; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx295" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx296; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx296" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx297; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx297" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx298; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx298" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx299; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx299" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx300; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx300" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx301; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx301" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx302; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx302" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx303; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx303" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx304; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx304" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx305; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx305" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx306; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx306" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx307; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx307" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx308; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx308" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx309; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx309" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx310; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx310" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx311; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx311" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx312; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx312" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx313; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx313" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx314; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx314" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx315; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx315" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx316; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx316" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx317; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx317" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx318; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx318" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx319; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx319" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx320; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx320" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx321; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx321" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx322; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx322" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx323; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx323" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx324; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx324" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx325; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx325" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx326; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx326" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx327; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx327" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx328; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx328" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx329; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx329" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx330; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx330" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx331; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx331" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx332; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx332" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx333; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx333" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx334; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx334" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx335; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx335" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx336; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx336" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx337; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx337" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx338; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx338" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx339; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx339" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx340; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx340" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx341; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx341" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx342; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx342" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx343; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx343" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx344; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx344" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx345; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx345" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx346; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx346" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx347; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx347" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx348; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx348" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx349; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx349" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx350; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx350" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx351; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx351" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx352; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx352" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx353; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx353" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx354; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx354" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ON ONLY public.hmis_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx10; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx10" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ON ONLY public.hmis_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx11; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx11" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ON ONLY public.hmis_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx12; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx12" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ON ONLY public.hmis_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx13; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx13" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ON ONLY public.hmis_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx14; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx14" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx15; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx15" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx16; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx16" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx17; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx17" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx18; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx18" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx19; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx19" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx20; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx20" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx21; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx21" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx22; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx22" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx23; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx23" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx24; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx24" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx25; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx25" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx26; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx26" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx27; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx27" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx28; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx28" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx29; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx29" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx30; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx30" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx31; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx31" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx32; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx32" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx33; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx33" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx34; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx34" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx35; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx35" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx36; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx36" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx37; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx37" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx38; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx38" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx39; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx39" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx40; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx40" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx41; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx41" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx42; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx42" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx43; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx43" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx44; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx44" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx45; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx45" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx46; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx46" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx47; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx47" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx48; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx48" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx49; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx49" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx50; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx50" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx51; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx51" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx52; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx52" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx53; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx53" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx54; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx54" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx55; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx55" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx56; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx56" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx57; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx57" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx58; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx58" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx59; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx59" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx60; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx60" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx61; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx61" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx62; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx62" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx63; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx63" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx64; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx64" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx65; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx65" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx66; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx66" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx67; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx67" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx68; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx68" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx69; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx69" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx70; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx70" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx71; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx71" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx72; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx72" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx73; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx73" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx74; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx74" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx75; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx75" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx76; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx76" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx77; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx77" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx78; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx78" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx79; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx79" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx80; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx80" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx81; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx81" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx82; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx82" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx83; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx83" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx84; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx84" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx85; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx85" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx86; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx86" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx87; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx87" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx88; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx88" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx89; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx89" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx90; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx90" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx91; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx91" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx92; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx92" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx93; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx93" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx94; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx94" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx95; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx95" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx96; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx96" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx97; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx97" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx98; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx98" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx99; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx99" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx100; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx100" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx101; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx101" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx102; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx102" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx103; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx103" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx104; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx104" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx105; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx105" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx106; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx106" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx107; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx107" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx108; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx108" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx109; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx109" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx110; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx110" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx111; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx111" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx112; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx112" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx113; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx113" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx114; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx114" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx115; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx115" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx116; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx116" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx117; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx117" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx118; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx118" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx119; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx119" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx120; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx120" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx121; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx121" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx122; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx122" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx123; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx123" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx124; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx124" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx125; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx125" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx126; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx126" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx127; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx127" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx128; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx128" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx129; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx129" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx130; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx130" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx131; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx131" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx132; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx132" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx133; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx133" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx134; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx134" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx135; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx135" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx136; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx136" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx137; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx137" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx138; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx138" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx139; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx139" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx140; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx140" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx141; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx141" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx142; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx142" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx143; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx143" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx144; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx144" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx145; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx145" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx146; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx146" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx147; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx147" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx148; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx148" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx149; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx149" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx150; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx150" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx151; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx151" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx152; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx152" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx153; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx153" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx154; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx154" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx155; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx155" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx156; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx156" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx157; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx157" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx158; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx158" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx159; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx159" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx160; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx160" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx161; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx161" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx162; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx162" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx163; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx163" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx164; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx164" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx165; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx165" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx166; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx166" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx167; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx167" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx168; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx168" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx169; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx169" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx170; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx170" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx171; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx171" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx172; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx172" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx173; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx173" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx174; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx174" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx175; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx175" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx176; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx176" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx177; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx177" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx178; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx178" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx179; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx179" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx180; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx180" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx181; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx181" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx182; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx182" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx183; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx183" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx184; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx184" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx185; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx185" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx186; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx186" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx187; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx187" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx188; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx188" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx189; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx189" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx190; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx190" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx191; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx191" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx192; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx192" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx193; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx193" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx194; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx194" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx195; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx195" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx196; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx196" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx197; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx197" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx198; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx198" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx199; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx199" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx200; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx200" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx201; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx201" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx202; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx202" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx203; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx203" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx204; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx204" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx205; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx205" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx206; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx206" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx207; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx207" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx208; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx208" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx209; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx209" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx210; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx210" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx211; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx211" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx212; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx212" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx213; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx213" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx214; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx214" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx215; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx215" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx216; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx216" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx217; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx217" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx218; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx218" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx219; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx219" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx220; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx220" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx221; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx221" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx222; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx222" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx223; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx223" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx224; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx224" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx225; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx225" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx226; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx226" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx227; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx227" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx228; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx228" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx229; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx229" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx230; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx230" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx231; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx231" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx232; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx232" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx233; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx233" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx234; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx234" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx235; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx235" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx236; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx236" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx237; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx237" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx238; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx238" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx239; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx239" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx240; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx240" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx241; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx241" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx242; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx242" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx243; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx243" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx244; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx244" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx245; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx245" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx246; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx246" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx247; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx247" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx248; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx248" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx249; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx249" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx250; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx250" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx251; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx251" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx252; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx252" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx253; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx253" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx254; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx254" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx255; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx255" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx256; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx256" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx257; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx257" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx258; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx258" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx259; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx259" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx260; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx260" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx261; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx261" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx262; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx262" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx263; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx263" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx264; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx264" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx265; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx265" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx266; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx266" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx267; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx267" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx268; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx268" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx269; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx269" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx270; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx270" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx271; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx271" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx272; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx272" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx273; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx273" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx274; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx274" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx275; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx275" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx276; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx276" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx277; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx277" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx278; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx278" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx279; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx279" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx280; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx280" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx281; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx281" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx282; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx282" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx283; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx283" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx284; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx284" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx285; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx285" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx286; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx286" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx287; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx287" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx288; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx288" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx289; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx289" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx290; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx290" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx291; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx291" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx292; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx292" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx293; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx293" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx294; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx294" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx295; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx295" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx296; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx296" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx297; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx297" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx298; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx298" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx299; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx299" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx300; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx300" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx301; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx301" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx302; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx302" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx303; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx303" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx304; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx304" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx305; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx305" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx306; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx306" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx307; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx307" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx308; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx308" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx309; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx309" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx310; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx310" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx311; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx311" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx312; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx312" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx313; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx313" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx314; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx314" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx315; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx315" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx316; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx316" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx317; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx317" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx318; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx318" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx319; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx319" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx320; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx320" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx321; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx321" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx322; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx322" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx323; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx323" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx324; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx324" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx325; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx325" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx326; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx326" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx327; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx327" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx328; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx328" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx329; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx329" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx330; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx330" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx331; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx331" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx332; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx332" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx333; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx333" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx334; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx334" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx335; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx335" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx336; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx336" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx337; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx337" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx338; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx338" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx339; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx339" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx340; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx340" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx341; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx341" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx342; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx342" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx343; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx343" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx344; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx344" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx345; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx345" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx346; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx346" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx347; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx347" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx348; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx348" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx349; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx349" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx350; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx350" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx351; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx351" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx352; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx352" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx353; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx353" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx354; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx354" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx5" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx6" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx7" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx8" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx9" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impor_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impor_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_EntryD_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_EntryD_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx10; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx10" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx11; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx11" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx12; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx12" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx13; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx13" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx14; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx14" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx15; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx15" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx16; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx16" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx17; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx17" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx18; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx18" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx19; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx19" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx20; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx20" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx21; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx21" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx22; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx22" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx23; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx23" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx24; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx24" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx25; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx25" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx26; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx26" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx27; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx27" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx28; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx28" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx29; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx29" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx30; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx30" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx31; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx31" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx32; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx32" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx33; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx33" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx34; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx34" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx35; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx35" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx36; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx36" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx37; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx37" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx38; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx38" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx39; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx39" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx40; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx40" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx41; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx41" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx42; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx42" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx43; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx43" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx44; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx44" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx45; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx45" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx46; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx46" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx47; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx47" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx48; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx48" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx49; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx49" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx50; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx50" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx51; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx51" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx52; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx52" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx53; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx53" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx54; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx54" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx55; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx55" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx56; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx56" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx57; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx57" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx58; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx58" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx59; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx59" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx60; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx60" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx61; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx61" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx62; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx62" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx63; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx63" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx64; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx64" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx65; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx65" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx66; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx66" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx67; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx67" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx68; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx68" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx69; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx69" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx70; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx70" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfSt_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfSt_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx10; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx10" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx11; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx11" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx12; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx12" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx13; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx13" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx14; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx14" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx15; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx15" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx16; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx16" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx17; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx17" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx18; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx18" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx19; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx19" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx20; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx20" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx21; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx21" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx22; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx22" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx23; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx23" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx24; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx24" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx25; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx25" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx26; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx26" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx27; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx27" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx28; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx28" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx29; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx29" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx30; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx30" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx31; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx31" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx32; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx32" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx33; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx33" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx34; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx34" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx35; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx35" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx36; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx36" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx37; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx37" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx38; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx38" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx39; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx39" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx40; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx40" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx41; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx41" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx42; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx42" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx43; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx43" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx44; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx44" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx45; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx45" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx46; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx46" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx47; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx47" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx48; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx48" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx49; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx49" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx50; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx50" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx51; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx51" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx52; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx52" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx53; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx53" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx54; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx54" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx55; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx55" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx56; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx56" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx57; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx57" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx58; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx58" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx59; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx59" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx60; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx60" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx61; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx61" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx62; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx62" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx63; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx63" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx64; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx64" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx65; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx65" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx66; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx66" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx67; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx67" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx68; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx68" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx69; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx69" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx70; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx70" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx71; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx71" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx72; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx72" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx73; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx73" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx74; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx74" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx75; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx75" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx76; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx76" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx77; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx77" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx78; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx78" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx79; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx79" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx80; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx80" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx81; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx81" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx82; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx82" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx83; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx83" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx84; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx84" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx85; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx85" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx86; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx86" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx87; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx87" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx88; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx88" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx89; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx89" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx90; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx90" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx91; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx91" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx92; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx92" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx93; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx93" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx94; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx94" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx95; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx95" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx96; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx96" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx97; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx97" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx98; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx98" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx99; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx99" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears_M_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears_M_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx5" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx6" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx7" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx8" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx9" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partition_EnrollmentID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partition_EnrollmentID_data_source_id_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments_partition_ProjectID_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partition_ProjectID_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx100; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx100" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx101; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx101" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx102; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx102" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx103; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx103" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx104; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx104" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx105; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx105" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx106; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx106" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx107; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx107" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx108; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx108" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx109; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx109" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx110; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx110" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx111; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx111" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx112; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx112" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx113; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx113" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx114; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx114" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx115; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx115" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx116; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx116" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx117; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx117" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx118; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx118" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx119; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx119" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx120; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx120" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx121; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx121" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx122; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx122" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx123; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx123" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx124; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx124" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx125; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx125" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx126; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx126" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx127; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx127" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx128; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx128" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx129; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx129" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx130; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx130" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx131; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx131" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx132; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx132" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx133; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx133" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx134; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx134" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx135; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx135" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx136; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx136" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx137; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx137" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx138; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx138" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx139; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx139" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx140; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx140" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx141; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx141" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx142; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx142" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx143; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx143" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx144; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx144" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx145; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx145" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx146; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx146" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx147; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx147" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx148; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx148" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx149; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx149" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx150; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx150" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx151; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx151" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx152; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx152" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx153; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx153" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx154; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx154" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx155; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx155" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx156; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx156" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx157; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx157" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx158; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx158" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx159; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx159" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx160; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx160" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx161; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx161" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx162; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx162" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx163; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx163" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx164; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx164" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx165; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx165" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx166; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx166" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx167; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx167" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx168; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx168" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx169; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx169" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx170; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx170" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx171; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx171" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx172; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx172" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx173; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx173" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx174; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx174" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx175; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx175" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx176; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx176" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx177; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx177" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx178; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx178" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx179; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx179" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx180; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx180" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx181; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx181" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx182; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx182" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx183; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx183" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx184; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx184" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx185; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx185" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx186; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx186" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx187; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx187" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx188; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx188" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx189; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx189" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx190; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx190" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx191; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx191" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx192; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx192" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx193; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx193" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx194; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx194" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx195; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx195" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx196; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx196" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx197; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx197" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx198; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx198" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx199; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx199" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx200; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx200" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx201; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx201" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx202; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx202" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx203; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx203" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx204; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx204" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx205; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx205" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx206; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx206" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx207; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx207" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx208; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx208" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx209; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx209" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx210; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx210" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx211; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx211" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx212; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx212" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx213; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx213" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx214; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx214" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx215; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx215" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx216; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx216" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx217; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx217" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx218; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx218" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx219; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx219" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx220; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx220" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx221; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx221" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx222; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx222" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx223; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx223" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx224; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx224" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx225; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx225" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx226; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx226" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx227; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx227" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx228; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx228" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx229; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx229" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx230; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx230" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx231; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx231" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx232; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx232" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx233; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx233" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx234; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx234" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx235; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx235" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx236; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx236" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx237; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx237" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx238; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx238" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx239; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx239" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx240; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx240" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx241; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx241" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx242; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx242" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx243; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx243" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx244; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx244" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx245; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx245" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx246; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx246" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx247; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx247" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx248; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx248" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx249; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx249" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx250; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx250" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx251; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx251" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx252; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx252" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx253; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx253" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx254; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx254" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx255; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx255" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx256; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx256" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx257; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx257" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx258; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx258" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx259; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx259" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx260; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx260" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx261; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx261" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx262; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx262" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx263; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx263" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx264; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx264" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx265; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx265" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx266; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx266" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx267; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx267" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx268; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx268" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx269; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx269" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx270; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx270" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx271; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx271" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx272; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx272" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx273; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx273" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx274; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx274" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx275; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx275" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx276; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx276" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx277; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx277" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx278; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx278" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx279; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx279" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx280; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx280" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx281; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx281" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx282; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx282" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx283; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx283" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx284; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx284" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx285; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx285" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx286; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx286" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx287; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx287" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx288; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx288" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx289; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx289" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx290; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx290" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx291; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx291" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx292; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx292" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx293; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx293" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx294; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx294" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx295; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx295" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx296; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx296" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx297; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx297" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx298; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx298" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx299; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx299" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx300; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx300" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx301; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx301" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx302; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx302" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx303; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx303" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx304; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx304" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx305; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx305" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx306; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx306" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx307; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx307" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx308; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx308" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx309; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx309" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx310; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx310" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx311; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx311" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx312; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx312" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx313; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx313" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx314; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx314" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx315; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx315" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx316; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx316" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx317; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx317" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx318; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx318" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx319; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx319" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx320; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx320" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx321; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx321" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx322; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx322" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx323; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx323" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx324; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx324" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx325; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx325" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx326; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx326" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx327; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx327" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx328; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx328" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx329; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx329" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx330; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx330" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx331; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx331" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx332; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx332" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx333; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx333" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx334; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx334" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx335; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx335" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx336; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx336" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx337; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx337" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx338; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx338" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx339; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx339" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx340; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx340" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx341; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx341" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx342; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx342" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx343; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx343" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx344; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx344" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx345; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx345" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2022enrollments_c548; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_c548 ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx346; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx346" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx347; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx347" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx348; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx348" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx349; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx349" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx350; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx350" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx351; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx351" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx352; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx352" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx353; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx353" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx354; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx354" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx355; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx355" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx356; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx356" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx357; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx357" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx358; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx358" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx359; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx359" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx360; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx360" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx361; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx361" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx362; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx362" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx363; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx363" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx364; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx364" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx365; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx365" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx366; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx366" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx367; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx367" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx368; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx368" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx369; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx369" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx370; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx370" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx371; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx371" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx372; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx372" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx373; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx373" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx374; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx374" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx375; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx375" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx376; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx376" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx377; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx377" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx378; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx378" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx379; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx379" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx380; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx380" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx381; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx381" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx382; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx382" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx383; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx383" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx384; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx384" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx385; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx385" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx386; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx386" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx387; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx387" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx388; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx388" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx389; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx389" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx390; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx390" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx391; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx391" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx392; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx392" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx393; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx393" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx394; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx394" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx395; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx395" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx396; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx396" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx397; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx397" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx398; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx398" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx399; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx399" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx400; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx400" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx401; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx401" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx402; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx402" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx403; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx403" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx404; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx404" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx405; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx405" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx406; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx406" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx407; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx407" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx408; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx408" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx409; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx409" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx410; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx410" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx411; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx411" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx412; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx412" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx413; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx413" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx414; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx414" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx415; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx415" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx416; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx416" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateCreated_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateCreated_idx" ON ONLY public.hmis_2022_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateCreated_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateCreated_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateCreated_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateCreated_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateCreated_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateCreated_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateCreated_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateCreated_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateDeleted_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateDeleted_idx" ON ONLY public.hmis_2022_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateDeleted_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateDeleted_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateDeleted_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateDeleted_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateDeleted_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateDeleted_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateDeleted_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateDeleted_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateUpdated_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateUpdated_idx" ON ONLY public.hmis_2022_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateUpdated_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateUpdated_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateUpdated_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateUpdated_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateUpdated_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateUpdated_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_DateUpdated_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_DateUpdated_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_idx" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EntryDate_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EntryDate_idx" ON ONLY public.hmis_2022_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EntryDate_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EntryDate_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EntryDate_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EntryDate_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EntryDate_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EntryDate_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EntryDate_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EntryDate_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ExportID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ExportID_idx" ON ONLY public.hmis_2022_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ExportID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ExportID_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ExportID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ExportID_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ExportID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ExportID_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ExportID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ExportID_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_HouseholdID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_HouseholdID_idx" ON ONLY public.hmis_2022_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_HouseholdID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_HouseholdID_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_HouseholdID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_HouseholdID_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_HouseholdID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_HouseholdID_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_HouseholdID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_HouseholdID_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_LivingSituation_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_LivingSituation_idx" ON ONLY public.hmis_2022_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_LivingSituation_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_LivingSituation_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_LivingSituation_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_LivingSituation_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_LivingSituation_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_LivingSituation_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_LivingSituation_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_LivingSituation_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_PersonalID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_PersonalID_idx" ON ONLY public.hmis_2022_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_PersonalID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_PersonalID_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_PersonalID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_PersonalID_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_PersonalID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_PersonalID_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_PersonalID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_PersonalID_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ProjectID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ProjectID_idx" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ProjectID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ProjectID_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ProjectID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ProjectID_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ProjectID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ProjectID_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_ProjectID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_ProjectID_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_RelationshipToHoH_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ON ONLY public.hmis_2022_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ON ONLY public.hmis_2022_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ON ONLY public.hmis_2022_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ON ONLY public.hmis_2022_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ON ONLY public.hmis_2022_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis2022enrollments_3328; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_3328 ON ONLY public.hmis_2022_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_importer_log_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_importer_log_id_idx ON ONLY public.hmis_2022_enrollments USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_0_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_0 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_source_type_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_source_type_source_id_idx ON ONLY public.hmis_2022_enrollments USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_0_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_0 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_10_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_10 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_10_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_10 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_11_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_11 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_11_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_11 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_12_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_12 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_12_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_12 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_13_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_13 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_13_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_13 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_14_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_14 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_14_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_14 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_15_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_15 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_15_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_15 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_16_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_16 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_16_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_16 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_17_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_17 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_17_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_17 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_18_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_18 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_18_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_18 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_19_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_19 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_19_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_19 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_1_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_1 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_1_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_1 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_20_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_20 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_20_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_20 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_21_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_21 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_21_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_21 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_22 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_22_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_22 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_22_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_22 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_23 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_23_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_23 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_23_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_23 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_24 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_24_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_24 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_24_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_24 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_25 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_25_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_25 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_25_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_25 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_26 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_26_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_26 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_26_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_26 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_27 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_27_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_27 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_27_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_27 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_28 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_28_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_28 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_28_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_28 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_29 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_29_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_29 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_29_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_29 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_2_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_2 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_2_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_2 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_30 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_30_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_30 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_30_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_30 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_31 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_31_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_31 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_31_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_31 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_32 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_32_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_32 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_32_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_32 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_33 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_33_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_33 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_33_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_33 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_34 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_34_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_34 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_34_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_34 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_35 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_35_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_35 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_35_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_35 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_36 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_36_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_36 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_36_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_36 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_37 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_37_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_37 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_37_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_37 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_38 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_38_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_38 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_38_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_38 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_39 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_39_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_39 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_39_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_39 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_3_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_3 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_3_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_3 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_40 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_40_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_40 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_40_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_40 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_41 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_41_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_41 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_41_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_41 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_42 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_42_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_42 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_42_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_42 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_43 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_43_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_43 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_43_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_43 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_44 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_44_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_44 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_44_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_44 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_45 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_45_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_45 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_45_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_45 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_46 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_46_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_46 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_46_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_46 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_47 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_47_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_47 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_47_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_47 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_48 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_48_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_48 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_48_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_48 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_49 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_49_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_49 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_49_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_49 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_4_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_4 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_4_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_4 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_50 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_50_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_50 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_50_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_50 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_51 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_51_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_51 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_51_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_51 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_52 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_52_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_52 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_52_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_52 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_53 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_53_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_53 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_53_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_53 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_54 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_54_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_54 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_54_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_54 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_55 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_55_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_55 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_55_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_55 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_56 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_56_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_56 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_56_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_56 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_57 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_57_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_57 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_57_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_57 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_58 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_58_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_58 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_58_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_58 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_59 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_59_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_59 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_59_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_59 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_5_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_5 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_5_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_5 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_60 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_60_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_60 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_60_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_60 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_61 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_61_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_61 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_61_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_61 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_62 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_62_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_62 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_62_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_62 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_63 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_63_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_63 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_63_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_63 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_64 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_64_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_64 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_64_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_64 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_65 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_65_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_65 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_65_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_65 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_66 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_66_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_66 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_66_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_66 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_67 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_67_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_67 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_67_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_67 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_68 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_68_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_68 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_68_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_68 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_69 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_69_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_69 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_69_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_69 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_6_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_6 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_6_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_6 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_70 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_70_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_70 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_70_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_70 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_7_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_7 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_7_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_7 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_8_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_8 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_8_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_8 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateCreated_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateCreated_idx1" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateCreated_idx2" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateCreated_idx3" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateCreated_idx4" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateDeleted_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateDeleted_idx1" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateDeleted_idx2" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateDeleted_idx3" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateDeleted_idx4" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateUpdated_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateUpdated_idx1" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateUpdated_idx2" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateUpdated_idx3" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_DateUpdated_idx4" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_EnrollmentID_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_EnrollmentID_idx1" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_EnrollmentID_idx2" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_EnrollmentID_idx3" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_EnrollmentID_idx4" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EntryDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_EntryDate_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EntryDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_EntryDate_idx1" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EntryDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_EntryDate_idx2" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EntryDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_EntryDate_idx3" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EntryDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_EntryDate_idx4" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EntryDate"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ExportID_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ExportID_idx1" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ExportID_idx2" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ExportID_idx3" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ExportID_idx4" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_LivingSituation_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_LivingSituation_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_LivingSituation_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_LivingSituation_idx1" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_LivingSituation_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_LivingSituation_idx2" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_LivingSituation_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_LivingSituation_idx3" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_LivingSituation_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_LivingSituation_idx4" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_PersonalID_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx1" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx2" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx3" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx4" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ProjectID_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ProjectID_idx1" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ProjectID_idx2" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ProjectID_idx3" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_ProjectID_idx4" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("ProjectID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx1" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx2" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx3" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx4" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx5" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_9_importer_log_id_idx ON hmis.hmis_2022_enrollments_partitioned_9 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_enrollments_partitioned_9_source_type_source_id_idx ON hmis.hmis_2022_enrollments_partitioned_9 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx10; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx10" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx11; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx11" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx12; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx12" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx13; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx13" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx14; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx14" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx15; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx15" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx16; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx16" ON hmis.hmis_2022_enrollments_partitioned_3 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx17; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx17" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx18; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx18" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx19; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx19" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx20; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx20" ON hmis.hmis_2022_enrollments_partitioned_4 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx21; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx21" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx22; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx22" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx23; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx23" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx24; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx24" ON hmis.hmis_2022_enrollments_partitioned_5 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx25; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx25" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx26; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx26" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx27; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx27" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx28; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx28" ON hmis.hmis_2022_enrollments_partitioned_6 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx29; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx29" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx30; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx30" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx31; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx31" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx32; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx32" ON hmis.hmis_2022_enrollments_partitioned_7 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx33; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx33" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx34; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx34" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx35; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx35" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx36; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx36" ON hmis.hmis_2022_enrollments_partitioned_8 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx37; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx37" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx38; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx38" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx39; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx39" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx40; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx40" ON hmis.hmis_2022_enrollments_partitioned_9 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx41; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx41" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx42; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx42" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx43; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx43" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx44; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx44" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx45; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx45" ON hmis.hmis_2022_enrollments_partitioned_10 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx46; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx46" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx47; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx47" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx48; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx48" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx49; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx49" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx50; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx50" ON hmis.hmis_2022_enrollments_partitioned_11 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx51; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx51" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx52; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx52" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx53; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx53" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx54; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx54" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx55; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx55" ON hmis.hmis_2022_enrollments_partitioned_12 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx56; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx56" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx57; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx57" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx58; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx58" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx59; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx59" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx60; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx60" ON hmis.hmis_2022_enrollments_partitioned_13 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx61; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx61" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx62; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx62" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx63; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx63" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx64; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx64" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx65; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx65" ON hmis.hmis_2022_enrollments_partitioned_14 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx66; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx66" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx67; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx67" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx68; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx68" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx69; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx69" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx70; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx70" ON hmis.hmis_2022_enrollments_partitioned_15 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx71; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx71" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx72; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx72" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx73; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx73" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx74; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx74" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx75; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx75" ON hmis.hmis_2022_enrollments_partitioned_16 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx76; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx76" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx77; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx77" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx78; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx78" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx79; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx79" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx80; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx80" ON hmis.hmis_2022_enrollments_partitioned_17 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx81; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx81" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx82; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx82" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx83; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx83" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx84; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx84" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx85; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx85" ON hmis.hmis_2022_enrollments_partitioned_18 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx86; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx86" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx87; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx87" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx88; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx88" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx89; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx89" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx90; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx90" ON hmis.hmis_2022_enrollments_partitioned_19 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx91; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx91" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx92; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx92" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx93; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx93" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx94; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx94" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx95; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx95" ON hmis.hmis_2022_enrollments_partitioned_20 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx96; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx96" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx97; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx97" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx98; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx98" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx99; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx99" ON hmis.hmis_2022_enrollments_partitioned_21 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_enrollments_partitioned_0 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx6" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx7" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx8" ON hmis.hmis_2022_enrollments_partitioned_1 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx9" ON hmis.hmis_2022_enrollments_partitioned_2 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateCreated_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateCreated_idx" ON ONLY public.hmis_2022_exits USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateCreated_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateCreated_idx1" ON ONLY public.hmis_2022_exits USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateCreated_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateCreated_idx2" ON ONLY public.hmis_2022_exits USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateCreated_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateCreated_idx3" ON ONLY public.hmis_2022_exits USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateCreated_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateCreated_idx4" ON ONLY public.hmis_2022_exits USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateDeleted_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateDeleted_idx" ON ONLY public.hmis_2022_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateDeleted_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateDeleted_idx1" ON ONLY public.hmis_2022_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateDeleted_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateDeleted_idx2" ON ONLY public.hmis_2022_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateDeleted_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateDeleted_idx3" ON ONLY public.hmis_2022_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateDeleted_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateDeleted_idx4" ON ONLY public.hmis_2022_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateUpdated_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateUpdated_idx" ON ONLY public.hmis_2022_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateUpdated_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateUpdated_idx1" ON ONLY public.hmis_2022_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateUpdated_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateUpdated_idx2" ON ONLY public.hmis_2022_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateUpdated_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateUpdated_idx3" ON ONLY public.hmis_2022_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_DateUpdated_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_DateUpdated_idx4" ON ONLY public.hmis_2022_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ON ONLY public.hmis_2022_exits USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_PersonalID_impo_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_EnrollmentID_PersonalID_impo_idx1" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ON ONLY public.hmis_2022_exits USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_PersonalID_impor_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_EnrollmentID_PersonalID_impor_idx" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_EnrollmentID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_EnrollmentID_idx" ON ONLY public.hmis_2022_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_EnrollmentID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_EnrollmentID_idx1" ON ONLY public.hmis_2022_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_EnrollmentID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_EnrollmentID_idx2" ON ONLY public.hmis_2022_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_EnrollmentID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_EnrollmentID_idx3" ON ONLY public.hmis_2022_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_EnrollmentID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_EnrollmentID_idx4" ON ONLY public.hmis_2022_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExitDate_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExitDate_idx" ON ONLY public.hmis_2022_exits USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExitDate_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExitDate_idx1" ON ONLY public.hmis_2022_exits USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExitDate_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExitDate_idx2" ON ONLY public.hmis_2022_exits USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExitDate_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExitDate_idx3" ON ONLY public.hmis_2022_exits USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExitDate_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExitDate_idx4" ON ONLY public.hmis_2022_exits USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExitDate"); + + +-- +-- Name: hmis2022exits_fa9a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022exits_fa9a ON ONLY public.hmis_2022_exits USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExitID_data_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ON ONLY public.hmis_2022_exits USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_ExitID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExitID_idx" ON ONLY public.hmis_2022_exits USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExitID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExitID_idx1" ON ONLY public.hmis_2022_exits USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExitID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExitID_idx2" ON ONLY public.hmis_2022_exits USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExitID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExitID_idx3" ON ONLY public.hmis_2022_exits USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExitID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExitID_idx4" ON ONLY public.hmis_2022_exits USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExportID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExportID_idx" ON ONLY public.hmis_2022_exits USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExportID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExportID_idx1" ON ONLY public.hmis_2022_exits USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExportID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExportID_idx2" ON ONLY public.hmis_2022_exits USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExportID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExportID_idx3" ON ONLY public.hmis_2022_exits USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_ExportID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_ExportID_idx4" ON ONLY public.hmis_2022_exits USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_PersonalID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_PersonalID_idx" ON ONLY public.hmis_2022_exits USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_PersonalID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_PersonalID_idx1" ON ONLY public.hmis_2022_exits USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_PersonalID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_PersonalID_idx2" ON ONLY public.hmis_2022_exits USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_PersonalID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_PersonalID_idx3" ON ONLY public.hmis_2022_exits USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_PersonalID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_PersonalID_idx4" ON ONLY public.hmis_2022_exits USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_0_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_0_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_importer_log_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_importer_log_id_idx ON ONLY public.hmis_2022_exits USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_0_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_0_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_0 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_source_type_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_source_type_source_id_idx ON ONLY public.hmis_2022_exits USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_0_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_0_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_0 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_10_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_10_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_10_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_10 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_10_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_10_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_10 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_11_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_11_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_11_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_11 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_11_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_11_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_11 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_12_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_12_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_12_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_12 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_12_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_12_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_12 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_13_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_13_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_13_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_13 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_13_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_13_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_13 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_14_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_14_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_14_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_14 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_14_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_14_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_14 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_15_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_15_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_15_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_15 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_15_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_15_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_15 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_16_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_16_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_16_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_16 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_16_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_16_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_16 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_17_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_17_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_17_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_17 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_17_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_17_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_17 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_18_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_18_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_18_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_18 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_18_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_18_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_18 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_19_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_19_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_19_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_19 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_19_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_19_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_19 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx1" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx2" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx3" ON hmis.hmis_2022_exits_partitioned_10 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx4" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx5" ON hmis.hmis_2022_exits_partitioned_11 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx6" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx7" ON hmis.hmis_2022_exits_partitioned_12 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx8" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx9" ON hmis.hmis_2022_exits_partitioned_13 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impor_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impor_idx" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_1_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_1_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_1_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_1 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_1_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_1_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_1 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_20_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_20_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_20_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_20 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_20_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_20_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_20 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_21_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_21_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_21_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_21 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_21_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_21_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_21 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_22_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_22_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_22_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_22 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_22_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_22_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_22 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_23_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_23_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_23_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_23 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_23_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_23_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_23 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_24_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_24_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_24_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_24 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_24_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_24_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_24 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_25_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_25_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_25_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_25 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_25_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_25_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_25 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_26_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_26_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_26_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_26 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_26_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_26_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_26 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_27_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_27_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_27_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_27 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_27_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_27_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_27 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_28_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_28_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_28_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_28 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_28_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_28_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_28 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_29_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_29_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_29_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_29 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_29_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_29_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_29 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx1" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx2" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx3" ON hmis.hmis_2022_exits_partitioned_20 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx4" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx5" ON hmis.hmis_2022_exits_partitioned_21 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx6" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx7" ON hmis.hmis_2022_exits_partitioned_22 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx8" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx9" ON hmis.hmis_2022_exits_partitioned_23 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impor_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impor_idx" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_2_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_2_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_2_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_2 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_2_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_2_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_2 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_30_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_30_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_30_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_30 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_30_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_30_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_30 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_31_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_31_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_31_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_31 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_31_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_31_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_31 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_32_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_32_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_32_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_32 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_32_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_32_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_32 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_33_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_33_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_33_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_33 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_33_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_33_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_33 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_34_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_34_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_34_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_34 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_34_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_34_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_34 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_35_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_35_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_35_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_35 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_35_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_35_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_35 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_36_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_36_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_36_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_36 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_36_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_36_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_36 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_37_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_37_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_37_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_37 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_37_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_37_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_37 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_38_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_38_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_38_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_38 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_38_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_38_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_38 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_39_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_39_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_39_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_39 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_39_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_39_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_39 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx1" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx2" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx3" ON hmis.hmis_2022_exits_partitioned_30 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx4" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx5" ON hmis.hmis_2022_exits_partitioned_31 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx6" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx7" ON hmis.hmis_2022_exits_partitioned_32 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx8" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx9" ON hmis.hmis_2022_exits_partitioned_33 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impor_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impor_idx" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_3_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_3_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_3_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_3 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_3_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_3_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_3 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_40_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_40_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_40_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_40 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_40_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_40_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_40 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_41_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_41_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_41_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_41 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_41_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_41_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_41 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_42_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_42_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_42_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_42 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_42_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_42_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_42 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_43_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_43_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_43_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_43 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_43_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_43_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_43 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_44_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_44_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_44_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_44 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_44_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_44_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_44 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_45_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_45_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_45_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_45 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_45_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_45_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_45 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_46_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_46_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_46_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_46 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_46_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_46_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_46 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_47_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_47_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_47_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_47 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_47_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_47_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_47 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_48_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_48_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_48_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_48 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_48_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_48_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_48 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_49_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_49_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_49_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_49 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_49_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_49_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_49 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx1" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx2" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx3" ON hmis.hmis_2022_exits_partitioned_40 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx4" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx5" ON hmis.hmis_2022_exits_partitioned_41 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx6" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx7" ON hmis.hmis_2022_exits_partitioned_42 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx8" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx9" ON hmis.hmis_2022_exits_partitioned_43 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impor_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impor_idx" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_4_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_4_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_4_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_4 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_4_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_4_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_4 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_50_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_50_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_50_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_50 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_50_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_50_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_50 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_51_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_51_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_51_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_51 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_51_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_51_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_51 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_52_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_52_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_52_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_52 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_52_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_52_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_52 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_53_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_53_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_53_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_53 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_53_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_53_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_53 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_54_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_54_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_54_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_54 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_54_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_54_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_54 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_55_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_55_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_55_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_55 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_55_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_55_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_55 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_56_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_56_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_56_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_56 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_56_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_56_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_56 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_57_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_57_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_57_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_57 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_57_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_57_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_57 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_58_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_58_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_58_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_58 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_58_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_58_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_58 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_59_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_59_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_59_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_59 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_59_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_59_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_59 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx1" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx2" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx3" ON hmis.hmis_2022_exits_partitioned_50 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx4" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx5" ON hmis.hmis_2022_exits_partitioned_51 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx6" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx7" ON hmis.hmis_2022_exits_partitioned_52 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx8" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx9" ON hmis.hmis_2022_exits_partitioned_53 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impor_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impor_idx" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_5_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_5_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_5_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_5 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_5_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_5_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_5 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_60_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_60_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_60_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_60 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_60_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_60_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_60 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_61_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_61_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_61_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_61 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_61_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_61_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_61 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_62_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_62_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_62_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_62 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_62_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_62_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_62 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_63_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_63_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_63_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_63 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_63_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_63_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_63 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_64_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_64_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_64_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_64 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_64_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_64_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_64 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_65_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_65_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_65_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_65 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_65_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_65_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_65 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_66_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_66_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_66_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_66 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_66_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_66_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_66 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_67_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_67_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_67_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_67 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_67_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_67_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_67 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_68_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_68_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_68_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_68 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_68_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_68_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_68 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_69_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_69_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_69_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_69 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_69_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_69_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_69 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx1" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx2" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx3" ON hmis.hmis_2022_exits_partitioned_60 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx4" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx5" ON hmis.hmis_2022_exits_partitioned_61 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx6" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx7" ON hmis.hmis_2022_exits_partitioned_62 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx8" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx9" ON hmis.hmis_2022_exits_partitioned_63 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impor_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impor_idx" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_6_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_6_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_6_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_6 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_6_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_6_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_6 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_70_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_70_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_70_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_70 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_70_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_70_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_70 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impo_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impo_idx1" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impo_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impo_idx2" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impo_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impo_idx3" ON hmis.hmis_2022_exits_partitioned_70 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impor_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impor_idx" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_7_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_7_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_7_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_7 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_7_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_7_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_7 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_PersonalID_impo_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_EnrollmentID_PersonalID_impo_idx1" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_PersonalID_impor_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_EnrollmentID_PersonalID_impor_idx" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_8_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_8_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_8_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_8 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_8_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_8_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_8 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateCreated_idx" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateCreated_idx1" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateCreated_idx2" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateCreated_idx3" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateCreated_idx4" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateDeleted_idx" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateDeleted_idx1" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateDeleted_idx2" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateDeleted_idx3" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateDeleted_idx4" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateUpdated_idx" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateUpdated_idx1" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateUpdated_idx2" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateUpdated_idx3" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_DateUpdated_idx4" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_PersonalID_impo_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_EnrollmentID_PersonalID_impo_idx1" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_PersonalID_impor_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_EnrollmentID_PersonalID_impor_idx" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_EnrollmentID_idx" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_EnrollmentID_idx1" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_EnrollmentID_idx2" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_EnrollmentID_idx3" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_EnrollmentID_idx4" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExitDate_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExitDate_idx" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExitDate_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExitDate_idx1" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExitDate_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExitDate_idx2" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExitDate_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExitDate_idx3" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExitDate_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExitDate_idx4" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExitDate_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExitDate_idx5" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExitDate"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExitID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExitID_data_source_id_idx" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExitID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExitID_idx" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExitID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExitID_idx1" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExitID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExitID_idx2" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExitID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExitID_idx3" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExitID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExitID_idx4" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExitID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExportID_idx" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExportID_idx1" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExportID_idx2" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExportID_idx3" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_ExportID_idx4" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_PersonalID_idx" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_PersonalID_idx1" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_PersonalID_idx2" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_PersonalID_idx3" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned_9_PersonalID_idx4" ON hmis.hmis_2022_exits_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_exits_partitioned_9_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_9_importer_log_id_idx ON hmis.hmis_2022_exits_partitioned_9 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_exits_partitioned_9_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_exits_partitioned_9_source_type_source_id_idx ON hmis.hmis_2022_exits_partitioned_9 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx10; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx10" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx11; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx11" ON hmis.hmis_2022_exits_partitioned_14 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx12; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx12" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx13; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx13" ON hmis.hmis_2022_exits_partitioned_15 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx14; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx14" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx15; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx15" ON hmis.hmis_2022_exits_partitioned_16 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx16; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx16" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx17; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx17" ON hmis.hmis_2022_exits_partitioned_17 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx18; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx18" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx19; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx19" ON hmis.hmis_2022_exits_partitioned_18 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx20; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx20" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx21; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx21" ON hmis.hmis_2022_exits_partitioned_19 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx22; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx22" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx23; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx23" ON hmis.hmis_2022_exits_partitioned_24 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx24; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx24" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx25; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx25" ON hmis.hmis_2022_exits_partitioned_25 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx26; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx26" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx27; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx27" ON hmis.hmis_2022_exits_partitioned_26 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx28; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx28" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx29; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx29" ON hmis.hmis_2022_exits_partitioned_27 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx30; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx30" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx31; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx31" ON hmis.hmis_2022_exits_partitioned_28 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx32; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx32" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx33; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx33" ON hmis.hmis_2022_exits_partitioned_29 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx34; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx34" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx35; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx35" ON hmis.hmis_2022_exits_partitioned_34 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx36; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx36" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx37; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx37" ON hmis.hmis_2022_exits_partitioned_35 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx38; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx38" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx39; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx39" ON hmis.hmis_2022_exits_partitioned_36 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx40; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx40" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx41; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx41" ON hmis.hmis_2022_exits_partitioned_37 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx42; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx42" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx43; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx43" ON hmis.hmis_2022_exits_partitioned_38 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx44; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx44" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx45; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx45" ON hmis.hmis_2022_exits_partitioned_39 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx46; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx46" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx47; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx47" ON hmis.hmis_2022_exits_partitioned_44 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx48; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx48" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx49; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx49" ON hmis.hmis_2022_exits_partitioned_45 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx50; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx50" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx51; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx51" ON hmis.hmis_2022_exits_partitioned_46 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx52; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx52" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx53; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx53" ON hmis.hmis_2022_exits_partitioned_47 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx54; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx54" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx55; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx55" ON hmis.hmis_2022_exits_partitioned_48 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx56; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx56" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx57; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx57" ON hmis.hmis_2022_exits_partitioned_49 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx58; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx58" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx59; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx59" ON hmis.hmis_2022_exits_partitioned_54 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx60; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx60" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx61; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx61" ON hmis.hmis_2022_exits_partitioned_55 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx62; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx62" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx63; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx63" ON hmis.hmis_2022_exits_partitioned_56 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx64; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx64" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx65; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx65" ON hmis.hmis_2022_exits_partitioned_57 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx66; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx66" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx67; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx67" ON hmis.hmis_2022_exits_partitioned_58 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx68; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx68" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx69; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx69" ON hmis.hmis_2022_exits_partitioned_59 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx70; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx70" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx71; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx71" ON hmis.hmis_2022_exits_partitioned_64 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx72; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx72" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx73; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx73" ON hmis.hmis_2022_exits_partitioned_65 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx74; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx74" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx75; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx75" ON hmis.hmis_2022_exits_partitioned_66 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx76; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx76" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx77; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx77" ON hmis.hmis_2022_exits_partitioned_67 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx78; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx78" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx79; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx79" ON hmis.hmis_2022_exits_partitioned_68 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx80; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx80" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx81; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx81" ON hmis.hmis_2022_exits_partitioned_69 USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx100; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx100" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx101; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx101" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx102; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx102" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx103; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx103" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx104; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx104" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx105; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx105" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx106; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx106" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx107; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx107" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx108; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx108" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx109; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx109" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx110; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx110" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx111; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx111" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx112; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx112" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx113; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx113" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx114; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx114" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx115; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx115" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx116; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx116" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx117; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx117" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx118; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx118" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx119; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx119" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx120; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx120" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx121; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx121" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx122; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx122" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx123; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx123" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx124; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx124" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx125; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx125" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx126; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx126" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx127; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx127" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx128; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx128" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx129; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx129" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx130; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx130" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx131; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx131" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx132; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx132" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx133; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx133" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx134; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx134" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx135; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx135" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx136; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx136" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx137; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx137" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx138; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx138" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx139; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx139" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx140; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx140" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx141; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx141" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx142; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx142" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx143; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx143" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx144; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx144" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx145; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx145" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx146; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx146" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx147; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx147" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx148; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx148" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx149; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx149" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx150; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx150" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx151; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx151" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx152; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx152" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx153; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx153" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx154; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx154" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx155; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx155" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx156; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx156" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx157; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx157" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx158; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx158" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx159; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx159" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx160; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx160" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx161; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx161" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx162; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx162" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx163; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx163" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx164; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx164" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx165; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx165" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx166; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx166" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx167; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx167" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx168; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx168" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx169; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx169" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx170; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx170" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx171; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx171" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx172; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx172" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx173; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx173" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx174; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx174" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx175; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx175" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx176; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx176" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx177; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx177" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx178; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx178" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx179; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx179" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx180; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx180" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx181; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx181" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx182; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx182" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx183; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx183" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx184; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx184" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx185; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx185" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx186; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx186" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx187; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx187" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx188; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx188" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx189; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx189" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx190; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx190" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx191; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx191" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx192; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx192" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx193; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx193" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx194; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx194" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx195; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx195" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx196; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx196" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx197; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx197" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx198; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx198" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx199; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx199" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx200; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx200" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx201; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx201" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx202; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx202" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx203; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx203" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx204; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx204" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx205; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx205" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx206; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx206" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx207; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx207" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx208; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx208" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx209; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx209" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx210; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx210" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx211; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx211" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx212; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx212" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx213; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx213" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx214; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx214" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx215; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx215" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx216; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx216" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx217; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx217" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx218; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx218" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx219; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx219" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx220; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx220" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx221; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx221" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx222; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx222" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx223; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx223" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx224; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx224" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx225; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx225" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx226; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx226" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx227; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx227" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx228; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx228" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx229; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx229" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx230; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx230" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx231; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx231" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx232; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx232" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx233; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx233" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx234; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx234" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx235; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx235" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx236; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx236" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx237; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx237" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx238; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx238" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx239; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx239" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx240; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx240" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx241; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx241" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx242; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx242" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx243; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx243" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx244; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx244" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx245; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx245" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx246; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx246" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx247; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx247" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx248; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx248" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx249; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx249" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx250; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx250" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx251; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx251" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx252; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx252" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx253; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx253" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx254; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx254" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx255; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx255" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx256; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx256" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx257; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx257" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx258; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx258" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx259; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx259" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx260; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx260" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx261; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx261" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx262; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx262" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx263; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx263" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx264; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx264" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx265; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx265" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx266; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx266" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx267; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx267" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx268; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx268" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx269; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx269" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx270; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx270" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx271; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx271" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx272; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx272" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx273; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx273" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx274; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx274" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx275; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx275" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx276; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx276" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx277; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx277" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx278; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx278" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx279; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx279" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx280; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx280" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx281; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx281" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx282; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx282" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx283; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx283" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx284; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx284" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx285; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx285" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx286; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx286" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx287; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx287" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx288; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx288" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx289; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx289" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx290; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx290" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx291; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx291" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx292; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx292" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx293; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx293" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx294; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx294" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx295; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx295" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx296; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx296" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx297; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx297" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx298; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx298" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx299; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx299" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx300; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx300" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx301; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx301" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx302; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx302" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx303; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx303" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx304; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx304" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx305; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx305" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx306; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx306" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx307; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx307" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx308; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx308" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx309; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx309" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx310; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx310" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx311; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx311" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx312; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx312" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx313; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx313" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx314; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx314" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx315; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx315" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx316; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx316" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx317; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx317" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx318; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx318" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx319; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx319" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx320; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx320" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx321; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx321" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx322; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx322" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx323; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx323" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx324; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx324" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx325; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx325" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx326; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx326" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx327; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx327" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx328; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx328" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx329; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx329" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx330; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx330" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx331; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx331" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx332; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx332" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx333; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx333" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx334; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx334" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx335; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx335" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx336; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx336" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx337; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx337" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx338; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx338" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx339; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx339" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx340; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx340" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx341; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx341" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx342; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx342" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx343; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx343" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx344; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx344" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx345; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx345" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx346; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx346" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx347; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx347" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx348; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx348" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx349; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx349" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx350; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx350" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx351; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx351" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx352; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx352" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx353; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx353" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx354; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx354" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx10; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx10" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx11; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx11" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx12; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx12" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx13; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx13" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx14; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx14" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx15; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx15" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx16; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx16" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx17; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx17" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx18; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx18" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx19; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx19" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx20; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx20" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx21; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx21" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx22; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx22" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx23; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx23" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx24; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx24" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx25; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx25" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx26; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx26" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx27; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx27" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx28; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx28" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx29; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx29" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx30; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx30" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx31; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx31" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx32; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx32" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx33; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx33" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx34; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx34" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx35; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx35" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx36; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx36" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx37; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx37" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx38; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx38" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx39; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx39" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx40; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx40" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx41; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx41" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx42; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx42" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx43; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx43" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx44; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx44" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx45; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx45" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx46; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx46" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx47; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx47" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx48; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx48" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx49; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx49" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx50; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx50" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx51; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx51" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx52; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx52" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx53; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx53" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx54; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx54" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx55; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx55" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx56; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx56" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx57; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx57" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx58; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx58" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx59; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx59" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx60; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx60" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx61; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx61" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx62; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx62" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx63; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx63" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx64; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx64" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx65; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx65" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx66; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx66" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx67; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx67" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx68; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx68" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx69; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx69" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx70; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx70" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx71; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx71" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx72; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx72" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx73; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx73" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx74; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx74" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx75; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx75" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx76; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx76" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx77; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx77" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx78; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx78" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx79; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx79" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx80; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx80" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx81; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx81" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx82; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx82" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx83; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx83" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx84; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx84" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx85; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx85" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx86; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx86" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx87; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx87" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx88; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx88" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx89; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx89" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx90; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx90" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx91; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx91" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx92; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx92" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx93; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx93" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx94; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx94" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx95; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx95" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx96; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx96" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx97; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx97" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx98; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx98" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx99; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx99" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ON ONLY public.hmis_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx100; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx100" ON hmis.hmis_2022_services_partitioned_20 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ON ONLY public.hmis_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx101; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx101" ON hmis.hmis_2022_services_partitioned_20 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ON ONLY public.hmis_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx102; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx102" ON hmis.hmis_2022_services_partitioned_20 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ON ONLY public.hmis_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx103; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx103" ON hmis.hmis_2022_services_partitioned_20 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ON ONLY public.hmis_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx104; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx104" ON hmis.hmis_2022_services_partitioned_20 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx105; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx105" ON hmis.hmis_2022_services_partitioned_21 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx106; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx106" ON hmis.hmis_2022_services_partitioned_21 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx107; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx107" ON hmis.hmis_2022_services_partitioned_21 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx108; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx108" ON hmis.hmis_2022_services_partitioned_21 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx109; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx109" ON hmis.hmis_2022_services_partitioned_21 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx110; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx110" ON hmis.hmis_2022_services_partitioned_22 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx111; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx111" ON hmis.hmis_2022_services_partitioned_22 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx112; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx112" ON hmis.hmis_2022_services_partitioned_22 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx113; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx113" ON hmis.hmis_2022_services_partitioned_22 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx114; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx114" ON hmis.hmis_2022_services_partitioned_22 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx115; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx115" ON hmis.hmis_2022_services_partitioned_23 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx116; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx116" ON hmis.hmis_2022_services_partitioned_23 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx117; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx117" ON hmis.hmis_2022_services_partitioned_23 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx118; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx118" ON hmis.hmis_2022_services_partitioned_23 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx119; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx119" ON hmis.hmis_2022_services_partitioned_23 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx120; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx120" ON hmis.hmis_2022_services_partitioned_24 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx121; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx121" ON hmis.hmis_2022_services_partitioned_24 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx122; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx122" ON hmis.hmis_2022_services_partitioned_24 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx123; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx123" ON hmis.hmis_2022_services_partitioned_24 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx124; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx124" ON hmis.hmis_2022_services_partitioned_24 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx125; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx125" ON hmis.hmis_2022_services_partitioned_25 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx126; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx126" ON hmis.hmis_2022_services_partitioned_25 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx127; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx127" ON hmis.hmis_2022_services_partitioned_25 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx128; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx128" ON hmis.hmis_2022_services_partitioned_25 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx129; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx129" ON hmis.hmis_2022_services_partitioned_25 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx130; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx130" ON hmis.hmis_2022_services_partitioned_26 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx131; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx131" ON hmis.hmis_2022_services_partitioned_26 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx132; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx132" ON hmis.hmis_2022_services_partitioned_26 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx133; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx133" ON hmis.hmis_2022_services_partitioned_26 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx134; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx134" ON hmis.hmis_2022_services_partitioned_26 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx135; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx135" ON hmis.hmis_2022_services_partitioned_27 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx136; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx136" ON hmis.hmis_2022_services_partitioned_27 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx137; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx137" ON hmis.hmis_2022_services_partitioned_27 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx138; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx138" ON hmis.hmis_2022_services_partitioned_27 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx139; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx139" ON hmis.hmis_2022_services_partitioned_27 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx140; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx140" ON hmis.hmis_2022_services_partitioned_28 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx141; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx141" ON hmis.hmis_2022_services_partitioned_28 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx142; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx142" ON hmis.hmis_2022_services_partitioned_28 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx143; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx143" ON hmis.hmis_2022_services_partitioned_28 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx144; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx144" ON hmis.hmis_2022_services_partitioned_28 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx145; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx145" ON hmis.hmis_2022_services_partitioned_29 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx146; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx146" ON hmis.hmis_2022_services_partitioned_29 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx147; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx147" ON hmis.hmis_2022_services_partitioned_29 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx148; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx148" ON hmis.hmis_2022_services_partitioned_29 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx149; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx149" ON hmis.hmis_2022_services_partitioned_29 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx150; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx150" ON hmis.hmis_2022_services_partitioned_30 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx151; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx151" ON hmis.hmis_2022_services_partitioned_30 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx152; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx152" ON hmis.hmis_2022_services_partitioned_30 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx153; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx153" ON hmis.hmis_2022_services_partitioned_30 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx154; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx154" ON hmis.hmis_2022_services_partitioned_30 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx155; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx155" ON hmis.hmis_2022_services_partitioned_31 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx156; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx156" ON hmis.hmis_2022_services_partitioned_31 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx157; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx157" ON hmis.hmis_2022_services_partitioned_31 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx158; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx158" ON hmis.hmis_2022_services_partitioned_31 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx159; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx159" ON hmis.hmis_2022_services_partitioned_31 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx160; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx160" ON hmis.hmis_2022_services_partitioned_32 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx161; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx161" ON hmis.hmis_2022_services_partitioned_32 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx162; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx162" ON hmis.hmis_2022_services_partitioned_32 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx163; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx163" ON hmis.hmis_2022_services_partitioned_32 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx164; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx164" ON hmis.hmis_2022_services_partitioned_32 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx165; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx165" ON hmis.hmis_2022_services_partitioned_33 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx166; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx166" ON hmis.hmis_2022_services_partitioned_33 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx167; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx167" ON hmis.hmis_2022_services_partitioned_33 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx168; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx168" ON hmis.hmis_2022_services_partitioned_33 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx169; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx169" ON hmis.hmis_2022_services_partitioned_33 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx170; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx170" ON hmis.hmis_2022_services_partitioned_34 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx171; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx171" ON hmis.hmis_2022_services_partitioned_34 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx172; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx172" ON hmis.hmis_2022_services_partitioned_34 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx173; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx173" ON hmis.hmis_2022_services_partitioned_34 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx174; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx174" ON hmis.hmis_2022_services_partitioned_34 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx175; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx175" ON hmis.hmis_2022_services_partitioned_35 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx176; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx176" ON hmis.hmis_2022_services_partitioned_35 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx177; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx177" ON hmis.hmis_2022_services_partitioned_35 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx178; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx178" ON hmis.hmis_2022_services_partitioned_35 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx179; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx179" ON hmis.hmis_2022_services_partitioned_35 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx180; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx180" ON hmis.hmis_2022_services_partitioned_36 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx181; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx181" ON hmis.hmis_2022_services_partitioned_36 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx182; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx182" ON hmis.hmis_2022_services_partitioned_36 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx183; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx183" ON hmis.hmis_2022_services_partitioned_36 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx184; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx184" ON hmis.hmis_2022_services_partitioned_36 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx185; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx185" ON hmis.hmis_2022_services_partitioned_37 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx186; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx186" ON hmis.hmis_2022_services_partitioned_37 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx187; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx187" ON hmis.hmis_2022_services_partitioned_37 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx188; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx188" ON hmis.hmis_2022_services_partitioned_37 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx189; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx189" ON hmis.hmis_2022_services_partitioned_37 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx190; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx190" ON hmis.hmis_2022_services_partitioned_38 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx191; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx191" ON hmis.hmis_2022_services_partitioned_38 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx192; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx192" ON hmis.hmis_2022_services_partitioned_38 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx193; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx193" ON hmis.hmis_2022_services_partitioned_38 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx194; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx194" ON hmis.hmis_2022_services_partitioned_38 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx195; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx195" ON hmis.hmis_2022_services_partitioned_39 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx196; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx196" ON hmis.hmis_2022_services_partitioned_39 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx197; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx197" ON hmis.hmis_2022_services_partitioned_39 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx198; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx198" ON hmis.hmis_2022_services_partitioned_39 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx199; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx199" ON hmis.hmis_2022_services_partitioned_39 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx200; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx200" ON hmis.hmis_2022_services_partitioned_40 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx201; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx201" ON hmis.hmis_2022_services_partitioned_40 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx202; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx202" ON hmis.hmis_2022_services_partitioned_40 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx203; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx203" ON hmis.hmis_2022_services_partitioned_40 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx204; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx204" ON hmis.hmis_2022_services_partitioned_40 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx205; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx205" ON hmis.hmis_2022_services_partitioned_41 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx206; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx206" ON hmis.hmis_2022_services_partitioned_41 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx207; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx207" ON hmis.hmis_2022_services_partitioned_41 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx208; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx208" ON hmis.hmis_2022_services_partitioned_41 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx209; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx209" ON hmis.hmis_2022_services_partitioned_41 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx210; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx210" ON hmis.hmis_2022_services_partitioned_42 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx211; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx211" ON hmis.hmis_2022_services_partitioned_42 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx212; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx212" ON hmis.hmis_2022_services_partitioned_42 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx213; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx213" ON hmis.hmis_2022_services_partitioned_42 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx214; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx214" ON hmis.hmis_2022_services_partitioned_42 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx215; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx215" ON hmis.hmis_2022_services_partitioned_43 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx216; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx216" ON hmis.hmis_2022_services_partitioned_43 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx217; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx217" ON hmis.hmis_2022_services_partitioned_43 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx218; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx218" ON hmis.hmis_2022_services_partitioned_43 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx219; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx219" ON hmis.hmis_2022_services_partitioned_43 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx220; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx220" ON hmis.hmis_2022_services_partitioned_44 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx221; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx221" ON hmis.hmis_2022_services_partitioned_44 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx222; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx222" ON hmis.hmis_2022_services_partitioned_44 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx223; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx223" ON hmis.hmis_2022_services_partitioned_44 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx224; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx224" ON hmis.hmis_2022_services_partitioned_44 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx225; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx225" ON hmis.hmis_2022_services_partitioned_45 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx226; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx226" ON hmis.hmis_2022_services_partitioned_45 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx227; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx227" ON hmis.hmis_2022_services_partitioned_45 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx228; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx228" ON hmis.hmis_2022_services_partitioned_45 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx229; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx229" ON hmis.hmis_2022_services_partitioned_45 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx230; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx230" ON hmis.hmis_2022_services_partitioned_46 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx231; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx231" ON hmis.hmis_2022_services_partitioned_46 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx232; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx232" ON hmis.hmis_2022_services_partitioned_46 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx233; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx233" ON hmis.hmis_2022_services_partitioned_46 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx234; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx234" ON hmis.hmis_2022_services_partitioned_46 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx235; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx235" ON hmis.hmis_2022_services_partitioned_47 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx236; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx236" ON hmis.hmis_2022_services_partitioned_47 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx237; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx237" ON hmis.hmis_2022_services_partitioned_47 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx238; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx238" ON hmis.hmis_2022_services_partitioned_47 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx239; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx239" ON hmis.hmis_2022_services_partitioned_47 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx240; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx240" ON hmis.hmis_2022_services_partitioned_48 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx241; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx241" ON hmis.hmis_2022_services_partitioned_48 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx242; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx242" ON hmis.hmis_2022_services_partitioned_48 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx243; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx243" ON hmis.hmis_2022_services_partitioned_48 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx244; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx244" ON hmis.hmis_2022_services_partitioned_48 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx245; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx245" ON hmis.hmis_2022_services_partitioned_49 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx246; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx246" ON hmis.hmis_2022_services_partitioned_49 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx247; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx247" ON hmis.hmis_2022_services_partitioned_49 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx248; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx248" ON hmis.hmis_2022_services_partitioned_49 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx249; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx249" ON hmis.hmis_2022_services_partitioned_49 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx250; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx250" ON hmis.hmis_2022_services_partitioned_50 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx251; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx251" ON hmis.hmis_2022_services_partitioned_50 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx252; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx252" ON hmis.hmis_2022_services_partitioned_50 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx253; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx253" ON hmis.hmis_2022_services_partitioned_50 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx254; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx254" ON hmis.hmis_2022_services_partitioned_50 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx255; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx255" ON hmis.hmis_2022_services_partitioned_51 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx256; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx256" ON hmis.hmis_2022_services_partitioned_51 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx257; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx257" ON hmis.hmis_2022_services_partitioned_51 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx258; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx258" ON hmis.hmis_2022_services_partitioned_51 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx259; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx259" ON hmis.hmis_2022_services_partitioned_51 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx260; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx260" ON hmis.hmis_2022_services_partitioned_52 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx261; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx261" ON hmis.hmis_2022_services_partitioned_52 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx262; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx262" ON hmis.hmis_2022_services_partitioned_52 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx263; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx263" ON hmis.hmis_2022_services_partitioned_52 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx264; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx264" ON hmis.hmis_2022_services_partitioned_52 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx265; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx265" ON hmis.hmis_2022_services_partitioned_53 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx266; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx266" ON hmis.hmis_2022_services_partitioned_53 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx267; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx267" ON hmis.hmis_2022_services_partitioned_53 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx268; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx268" ON hmis.hmis_2022_services_partitioned_53 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx269; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx269" ON hmis.hmis_2022_services_partitioned_53 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx270; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx270" ON hmis.hmis_2022_services_partitioned_54 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx271; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx271" ON hmis.hmis_2022_services_partitioned_54 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx272; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx272" ON hmis.hmis_2022_services_partitioned_54 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx273; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx273" ON hmis.hmis_2022_services_partitioned_54 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx274; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx274" ON hmis.hmis_2022_services_partitioned_54 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx275; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx275" ON hmis.hmis_2022_services_partitioned_55 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx276; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx276" ON hmis.hmis_2022_services_partitioned_55 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx277; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx277" ON hmis.hmis_2022_services_partitioned_55 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx278; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx278" ON hmis.hmis_2022_services_partitioned_55 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx279; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx279" ON hmis.hmis_2022_services_partitioned_55 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx280; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx280" ON hmis.hmis_2022_services_partitioned_56 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx281; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx281" ON hmis.hmis_2022_services_partitioned_56 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx282; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx282" ON hmis.hmis_2022_services_partitioned_56 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx283; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx283" ON hmis.hmis_2022_services_partitioned_56 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx284; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx284" ON hmis.hmis_2022_services_partitioned_56 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx285; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx285" ON hmis.hmis_2022_services_partitioned_57 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx286; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx286" ON hmis.hmis_2022_services_partitioned_57 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx287; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx287" ON hmis.hmis_2022_services_partitioned_57 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx288; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx288" ON hmis.hmis_2022_services_partitioned_57 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx289; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx289" ON hmis.hmis_2022_services_partitioned_57 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx290; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx290" ON hmis.hmis_2022_services_partitioned_58 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx291; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx291" ON hmis.hmis_2022_services_partitioned_58 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx292; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx292" ON hmis.hmis_2022_services_partitioned_58 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx293; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx293" ON hmis.hmis_2022_services_partitioned_58 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx294; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx294" ON hmis.hmis_2022_services_partitioned_58 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx295; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx295" ON hmis.hmis_2022_services_partitioned_59 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx296; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx296" ON hmis.hmis_2022_services_partitioned_59 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx297; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx297" ON hmis.hmis_2022_services_partitioned_59 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx298; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx298" ON hmis.hmis_2022_services_partitioned_59 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx299; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx299" ON hmis.hmis_2022_services_partitioned_59 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx300; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx300" ON hmis.hmis_2022_services_partitioned_60 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx301; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx301" ON hmis.hmis_2022_services_partitioned_60 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx302; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx302" ON hmis.hmis_2022_services_partitioned_60 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx303; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx303" ON hmis.hmis_2022_services_partitioned_60 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx304; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx304" ON hmis.hmis_2022_services_partitioned_60 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx305; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx305" ON hmis.hmis_2022_services_partitioned_61 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx306; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx306" ON hmis.hmis_2022_services_partitioned_61 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx307; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx307" ON hmis.hmis_2022_services_partitioned_61 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx308; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx308" ON hmis.hmis_2022_services_partitioned_61 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx309; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx309" ON hmis.hmis_2022_services_partitioned_61 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx310; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx310" ON hmis.hmis_2022_services_partitioned_62 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx311; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx311" ON hmis.hmis_2022_services_partitioned_62 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx312; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx312" ON hmis.hmis_2022_services_partitioned_62 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx313; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx313" ON hmis.hmis_2022_services_partitioned_62 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx314; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx314" ON hmis.hmis_2022_services_partitioned_62 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx315; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx315" ON hmis.hmis_2022_services_partitioned_63 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx316; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx316" ON hmis.hmis_2022_services_partitioned_63 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx317; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx317" ON hmis.hmis_2022_services_partitioned_63 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx318; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx318" ON hmis.hmis_2022_services_partitioned_63 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx319; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx319" ON hmis.hmis_2022_services_partitioned_63 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx320; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx320" ON hmis.hmis_2022_services_partitioned_64 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx321; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx321" ON hmis.hmis_2022_services_partitioned_64 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx322; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx322" ON hmis.hmis_2022_services_partitioned_64 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx323; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx323" ON hmis.hmis_2022_services_partitioned_64 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx324; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx324" ON hmis.hmis_2022_services_partitioned_64 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx325; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx325" ON hmis.hmis_2022_services_partitioned_65 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx326; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx326" ON hmis.hmis_2022_services_partitioned_65 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx327; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx327" ON hmis.hmis_2022_services_partitioned_65 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx328; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx328" ON hmis.hmis_2022_services_partitioned_65 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx329; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx329" ON hmis.hmis_2022_services_partitioned_65 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx330; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx330" ON hmis.hmis_2022_services_partitioned_66 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx331; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx331" ON hmis.hmis_2022_services_partitioned_66 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx332; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx332" ON hmis.hmis_2022_services_partitioned_66 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx333; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx333" ON hmis.hmis_2022_services_partitioned_66 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx334; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx334" ON hmis.hmis_2022_services_partitioned_66 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx335; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx335" ON hmis.hmis_2022_services_partitioned_67 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx336; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx336" ON hmis.hmis_2022_services_partitioned_67 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx337; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx337" ON hmis.hmis_2022_services_partitioned_67 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx338; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx338" ON hmis.hmis_2022_services_partitioned_67 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx339; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx339" ON hmis.hmis_2022_services_partitioned_67 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx340; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx340" ON hmis.hmis_2022_services_partitioned_68 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx341; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx341" ON hmis.hmis_2022_services_partitioned_68 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx342; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx342" ON hmis.hmis_2022_services_partitioned_68 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx343; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx343" ON hmis.hmis_2022_services_partitioned_68 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx344; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx344" ON hmis.hmis_2022_services_partitioned_68 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx345; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx345" ON hmis.hmis_2022_services_partitioned_69 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx346; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx346" ON hmis.hmis_2022_services_partitioned_69 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx347; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx347" ON hmis.hmis_2022_services_partitioned_69 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx348; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx348" ON hmis.hmis_2022_services_partitioned_69 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx349; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx349" ON hmis.hmis_2022_services_partitioned_69 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx350; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx350" ON hmis.hmis_2022_services_partitioned_70 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx351; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx351" ON hmis.hmis_2022_services_partitioned_70 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx352; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx352" ON hmis.hmis_2022_services_partitioned_70 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx353; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx353" ON hmis.hmis_2022_services_partitioned_70 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx354; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx354" ON hmis.hmis_2022_services_partitioned_70 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx10; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx10" ON hmis.hmis_2022_services_partitioned_2 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx11; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx11" ON hmis.hmis_2022_services_partitioned_2 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx12; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx12" ON hmis.hmis_2022_services_partitioned_2 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx13; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx13" ON hmis.hmis_2022_services_partitioned_2 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx14; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx14" ON hmis.hmis_2022_services_partitioned_2 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx15; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx15" ON hmis.hmis_2022_services_partitioned_3 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx16; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx16" ON hmis.hmis_2022_services_partitioned_3 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx17; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx17" ON hmis.hmis_2022_services_partitioned_3 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx18; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx18" ON hmis.hmis_2022_services_partitioned_3 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx19; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx19" ON hmis.hmis_2022_services_partitioned_3 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx20; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx20" ON hmis.hmis_2022_services_partitioned_4 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx21; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx21" ON hmis.hmis_2022_services_partitioned_4 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx22; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx22" ON hmis.hmis_2022_services_partitioned_4 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx23; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx23" ON hmis.hmis_2022_services_partitioned_4 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx24; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx24" ON hmis.hmis_2022_services_partitioned_4 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx25; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx25" ON hmis.hmis_2022_services_partitioned_5 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx26; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx26" ON hmis.hmis_2022_services_partitioned_5 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx27; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx27" ON hmis.hmis_2022_services_partitioned_5 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx28; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx28" ON hmis.hmis_2022_services_partitioned_5 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx29; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx29" ON hmis.hmis_2022_services_partitioned_5 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx30; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx30" ON hmis.hmis_2022_services_partitioned_6 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx31; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx31" ON hmis.hmis_2022_services_partitioned_6 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx32; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx32" ON hmis.hmis_2022_services_partitioned_6 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx33; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx33" ON hmis.hmis_2022_services_partitioned_6 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx34; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx34" ON hmis.hmis_2022_services_partitioned_6 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx35; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx35" ON hmis.hmis_2022_services_partitioned_7 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx36; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx36" ON hmis.hmis_2022_services_partitioned_7 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx37; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx37" ON hmis.hmis_2022_services_partitioned_7 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx38; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx38" ON hmis.hmis_2022_services_partitioned_7 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx39; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx39" ON hmis.hmis_2022_services_partitioned_7 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx40; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx40" ON hmis.hmis_2022_services_partitioned_8 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx41; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx41" ON hmis.hmis_2022_services_partitioned_8 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx42; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx42" ON hmis.hmis_2022_services_partitioned_8 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx43; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx43" ON hmis.hmis_2022_services_partitioned_8 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx44; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx44" ON hmis.hmis_2022_services_partitioned_8 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx45; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx45" ON hmis.hmis_2022_services_partitioned_9 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx46; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx46" ON hmis.hmis_2022_services_partitioned_9 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx47; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx47" ON hmis.hmis_2022_services_partitioned_9 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx48; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx48" ON hmis.hmis_2022_services_partitioned_9 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx49; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx49" ON hmis.hmis_2022_services_partitioned_9 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx50; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx50" ON hmis.hmis_2022_services_partitioned_10 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx51; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx51" ON hmis.hmis_2022_services_partitioned_10 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx52; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx52" ON hmis.hmis_2022_services_partitioned_10 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx53; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx53" ON hmis.hmis_2022_services_partitioned_10 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx54; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx54" ON hmis.hmis_2022_services_partitioned_10 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx55; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx55" ON hmis.hmis_2022_services_partitioned_11 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx56; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx56" ON hmis.hmis_2022_services_partitioned_11 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx57; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx57" ON hmis.hmis_2022_services_partitioned_11 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx58; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx58" ON hmis.hmis_2022_services_partitioned_11 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx59; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx59" ON hmis.hmis_2022_services_partitioned_11 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx60; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx60" ON hmis.hmis_2022_services_partitioned_12 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx61; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx61" ON hmis.hmis_2022_services_partitioned_12 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx62; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx62" ON hmis.hmis_2022_services_partitioned_12 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx63; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx63" ON hmis.hmis_2022_services_partitioned_12 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx64; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx64" ON hmis.hmis_2022_services_partitioned_12 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx65; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx65" ON hmis.hmis_2022_services_partitioned_13 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx66; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx66" ON hmis.hmis_2022_services_partitioned_13 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx67; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx67" ON hmis.hmis_2022_services_partitioned_13 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx68; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx68" ON hmis.hmis_2022_services_partitioned_13 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx69; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx69" ON hmis.hmis_2022_services_partitioned_13 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx70; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx70" ON hmis.hmis_2022_services_partitioned_14 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx71; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx71" ON hmis.hmis_2022_services_partitioned_14 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx72; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx72" ON hmis.hmis_2022_services_partitioned_14 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx73; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx73" ON hmis.hmis_2022_services_partitioned_14 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx74; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx74" ON hmis.hmis_2022_services_partitioned_14 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx75; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx75" ON hmis.hmis_2022_services_partitioned_15 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx76; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx76" ON hmis.hmis_2022_services_partitioned_15 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx77; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx77" ON hmis.hmis_2022_services_partitioned_15 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx78; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx78" ON hmis.hmis_2022_services_partitioned_15 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx79; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx79" ON hmis.hmis_2022_services_partitioned_15 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx80; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx80" ON hmis.hmis_2022_services_partitioned_16 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx81; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx81" ON hmis.hmis_2022_services_partitioned_16 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx82; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx82" ON hmis.hmis_2022_services_partitioned_16 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx83; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx83" ON hmis.hmis_2022_services_partitioned_16 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx84; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx84" ON hmis.hmis_2022_services_partitioned_16 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx85; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx85" ON hmis.hmis_2022_services_partitioned_17 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx86; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx86" ON hmis.hmis_2022_services_partitioned_17 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx87; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx87" ON hmis.hmis_2022_services_partitioned_17 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx88; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx88" ON hmis.hmis_2022_services_partitioned_17 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx89; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx89" ON hmis.hmis_2022_services_partitioned_17 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx90; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx90" ON hmis.hmis_2022_services_partitioned_18 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx91; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx91" ON hmis.hmis_2022_services_partitioned_18 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx92; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx92" ON hmis.hmis_2022_services_partitioned_18 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx93; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx93" ON hmis.hmis_2022_services_partitioned_18 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx94; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx94" ON hmis.hmis_2022_services_partitioned_18 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx95; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx95" ON hmis.hmis_2022_services_partitioned_19 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx96; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx96" ON hmis.hmis_2022_services_partitioned_19 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx97; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx97" ON hmis.hmis_2022_services_partitioned_19 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx98; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx98" ON hmis.hmis_2022_services_partitioned_19 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx99; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx99" ON hmis.hmis_2022_services_partitioned_19 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_DateD_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_DateD_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ON hmis.hmis_2022_services_partitioned_1 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ON hmis.hmis_2022_services_partitioned_1 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ON hmis.hmis_2022_services_partitioned_1 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ON hmis.hmis_2022_services_partitioned_1 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ON hmis.hmis_2022_services_partitioned_1 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enrollm_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitione_PersonalID_RecordType_Enrollm_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_DateCreated_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateCreated_idx" ON ONLY public.hmis_2022_services USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_DateCreated_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateCreated_idx1" ON ONLY public.hmis_2022_services USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_DateCreated_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateCreated_idx2" ON ONLY public.hmis_2022_services USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_DateCreated_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateCreated_idx3" ON ONLY public.hmis_2022_services USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_DateCreated_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateCreated_idx4" ON ONLY public.hmis_2022_services USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_DateDeleted_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateDeleted_idx" ON ONLY public.hmis_2022_services USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_DateDeleted_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateDeleted_idx1" ON ONLY public.hmis_2022_services USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_DateDeleted_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateDeleted_idx2" ON ONLY public.hmis_2022_services USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_DateDeleted_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateDeleted_idx3" ON ONLY public.hmis_2022_services USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_DateDeleted_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateDeleted_idx4" ON ONLY public.hmis_2022_services USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_DateProvided_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateProvided_idx" ON ONLY public.hmis_2022_services USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_DateProvided_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateProvided_idx1" ON ONLY public.hmis_2022_services USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_DateProvided_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateProvided_idx2" ON ONLY public.hmis_2022_services USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_DateProvided_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateProvided_idx3" ON ONLY public.hmis_2022_services USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_DateProvided_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateProvided_idx4" ON ONLY public.hmis_2022_services USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_DateUpdated_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateUpdated_idx" ON ONLY public.hmis_2022_services USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_DateUpdated_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateUpdated_idx1" ON ONLY public.hmis_2022_services USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_DateUpdated_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateUpdated_idx2" ON ONLY public.hmis_2022_services USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_DateUpdated_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateUpdated_idx3" ON ONLY public.hmis_2022_services USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_DateUpdated_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_DateUpdated_idx4" ON ONLY public.hmis_2022_services USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_0_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2022services_c548; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022services_c548 ON ONLY public.hmis_2022_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_EnrollmentID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_EnrollmentID_idx" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_EnrollmentID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_EnrollmentID_idx1" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_EnrollmentID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_EnrollmentID_idx2" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_EnrollmentID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_EnrollmentID_idx3" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_EnrollmentID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_EnrollmentID_idx4" ON ONLY public.hmis_2022_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_ExportID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ExportID_idx" ON ONLY public.hmis_2022_services USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_ExportID_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_ExportID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ExportID_idx1" ON ONLY public.hmis_2022_services USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_ExportID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ExportID_idx2" ON ONLY public.hmis_2022_services USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_ExportID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ExportID_idx3" ON ONLY public.hmis_2022_services USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_ExportID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ExportID_idx4" ON ONLY public.hmis_2022_services USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_PersonalID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_PersonalID_idx" ON ONLY public.hmis_2022_services USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_PersonalID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_PersonalID_idx1" ON ONLY public.hmis_2022_services USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_PersonalID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_PersonalID_idx2" ON ONLY public.hmis_2022_services USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_PersonalID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_PersonalID_idx3" ON ONLY public.hmis_2022_services USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_PersonalID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_PersonalID_idx4" ON ONLY public.hmis_2022_services USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_DateDeleted_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ON ONLY public.hmis_2022_services USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_DateDeleted_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ON ONLY public.hmis_2022_services USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_DateDeleted_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ON ONLY public.hmis_2022_services USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_DateDeleted_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ON ONLY public.hmis_2022_services USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_DateDeleted_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ON ONLY public.hmis_2022_services USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_DateProvided_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_DateProvided_idx" ON ONLY public.hmis_2022_services USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_DateProvided_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ON ONLY public.hmis_2022_services USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_DateProvided_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ON ONLY public.hmis_2022_services USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_DateProvided_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ON ONLY public.hmis_2022_services USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_DateProvided_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ON ONLY public.hmis_2022_services USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_idx" ON ONLY public.hmis_2022_services USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_idx1" ON ONLY public.hmis_2022_services USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_idx2" ON ONLY public.hmis_2022_services USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_idx3" ON ONLY public.hmis_2022_services USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_RecordType_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_RecordType_idx4" ON ONLY public.hmis_2022_services USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_data_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ON ONLY public.hmis_2022_services USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_0_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_idx" ON ONLY public.hmis_2022_services USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_idx1" ON ONLY public.hmis_2022_services USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_0 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_idx2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_idx2" ON ONLY public.hmis_2022_services USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_0 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_idx3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_idx3" ON ONLY public.hmis_2022_services USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_0 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_idx4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_idx4" ON ONLY public.hmis_2022_services USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_0_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_0 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ON ONLY public.hmis_2022_services USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_0_ServicesID_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_0_ServicesID_importer_log_id_idx" ON hmis.hmis_2022_services_partitioned_0 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_importer_log_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_importer_log_id_idx ON ONLY public.hmis_2022_services USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_0_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_0_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_0 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_source_type_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_source_type_source_id_idx ON ONLY public.hmis_2022_services USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_0_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_0_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_0 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_10_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_10 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_10 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_ExportID_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_10 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_10 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_10_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_10 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_10_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_10_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_10 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_10 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_10 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_10_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_10 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_10_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_10_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_10 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_10_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_10_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_10 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_11_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_11 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_11 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_ExportID_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_11 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_11 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_11_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_11 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_11_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_11_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_11 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_11 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_11 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_11_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_11 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_11_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_11_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_11 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_11_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_11_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_11 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_12_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_12 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_12 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_ExportID_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_12 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_12 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_12_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_12 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_12_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_12_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_12 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_12 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_12 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_12_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_12 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_12_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_12_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_12 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_12_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_12_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_12 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_13_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_ExportID_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_13_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_13_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_13_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_13 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_13 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_13 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_13 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_13_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_13_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_13_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_13 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_13_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_13_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_13 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_14_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_14 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_14 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_ExportID_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_14 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_14 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_14_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_14 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_14_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_14_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_14 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_14 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_14 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_14 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_14_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_14 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_14_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_14_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_14 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_14_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_14_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_14 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_15_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_15 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_15 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_ExportID_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_15 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_15 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_15_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_15 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_15_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_15_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_15 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_15 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_15 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_15 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_15_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_15 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_15_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_15_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_15 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_15_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_15_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_15 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_16_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_16 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_16 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_ExportID_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_16 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_16 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_16_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_16 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_16_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_16_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_16 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_16 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_16 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_16 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_16_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_16 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_16_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_16_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_16 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_16_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_16_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_16 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_17_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_17 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_17 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_ExportID_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_17 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_17 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_17_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_17 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_17_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_17_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_17 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_17 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_17 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_17 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_17_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_17 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_17_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_17_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_17 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_17_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_17_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_17 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_18_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_18 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_18 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_ExportID_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_18 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_18 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_18_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_18 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_18_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_18_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_18 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_18 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_18 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_18 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_18_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_18 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_18_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_18_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_18 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_18_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_18_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_18 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_19_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_19 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_19 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_ExportID_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_19 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_19 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_19_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_19 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_19_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_19_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_19 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_19 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_19 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_19 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_19_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_19 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_19_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_19_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_19 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_19_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_19_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_19 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_1_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_1 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_1 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_ExportID_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_1 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_1 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_1_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_1 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_1_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_1_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_1 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_1 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_1 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_1 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_1_ServicesID_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_1_ServicesID_importer_log_id_idx" ON hmis.hmis_2022_services_partitioned_1 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_1_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_1_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_1 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_1_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_1_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_1 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_20_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_20 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_20 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_ExportID_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_20 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_20 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_20_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_20 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_20_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_20_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_20 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_20 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_20 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_20 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_20_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_20 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_20_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_20_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_20 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_20_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_20_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_20 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_21_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_21 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_21 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_ExportID_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_21 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_21 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_21_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_21 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_21_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_21_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_21 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_21 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_21 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_21 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_21_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_21 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_21_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_21_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_21 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_21_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_21_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_21 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_22_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_22 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_22 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_ExportID_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_22 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_22 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_22_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_22 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_22_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_22_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_22 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_22 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_22 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_22 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_22_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_22 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_22_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_22_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_22 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_22_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_22_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_22 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_23_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_23 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_23 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_ExportID_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_23 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_23 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_23_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_23 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_23_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_23_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_23 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_23 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_23 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_23 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_23_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_23 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_23_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_23_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_23 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_23_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_23_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_23 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_24_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_24 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_24 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_ExportID_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_24 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_24 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_24_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_24 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_24_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_24_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_24 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_24 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_24 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_24 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_24_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_24 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_24_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_24_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_24 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_24_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_24_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_24 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_25_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_25 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_25 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_ExportID_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_25 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_25 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_25_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_25 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_25_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_25_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_25 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_25 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_25 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_25 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_25_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_25 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_25_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_25_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_25 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_25_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_25_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_25 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_26_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_26 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_26 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_ExportID_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_26 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_26 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_26_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_26 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_26_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_26_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_26 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_26 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_26 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_26 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_26_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_26 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_26_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_26_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_26 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_26_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_26_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_26 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_27_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_27 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_27 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_ExportID_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_27 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_27 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_27_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_27 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_27_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_27_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_27 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_27 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_27 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_27 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_27_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_27 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_27_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_27_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_27 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_27_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_27_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_27 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_28_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_28 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_28 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_ExportID_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_28 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_28 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_28_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_28 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_28_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_28_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_28 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_28 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_28 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_28 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_28_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_28 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_28_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_28_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_28 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_28_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_28_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_28 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_29_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_29 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_29 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_ExportID_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_29 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_29 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_29_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_29 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_29_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_29_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_29 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_29 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_29 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_29 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_29_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_29 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_29_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_29_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_29 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_29_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_29_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_29 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_2_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_2 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_2 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_ExportID_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_2 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_2 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_2_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_2 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_2_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_2_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_2 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_2 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_2 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_2 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_2_ServicesID_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_2_ServicesID_importer_log_id_idx" ON hmis.hmis_2022_services_partitioned_2 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_2_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_2_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_2 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_2_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_2_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_2 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_30_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_30 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_30 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_ExportID_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_30 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_30 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_30_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_30 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_30_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_30_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_30 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_30 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_30 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_30 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_30_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_30 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_30_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_30_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_30 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_30_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_30_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_30 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_31_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_31 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_31 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_ExportID_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_31 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_31 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_31_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_31 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_31_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_31_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_31 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_31 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_31 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_31 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_31_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_31 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_31_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_31_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_31 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_31_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_31_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_31 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_32_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_32 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_32 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_ExportID_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_32 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_32 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_32_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_32 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_32_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_32_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_32 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_32 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_32 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_32 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_32_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_32 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_32_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_32_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_32 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_32_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_32_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_32 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_33_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_33 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_33 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_ExportID_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_33 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_33 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_33_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_33 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_33_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_33_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_33 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_33 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_33 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_33 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_33_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_33 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_33_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_33_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_33 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_33_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_33_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_33 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_34_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_34 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_34 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_ExportID_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_34 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_34 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_34_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_34 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_34_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_34_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_34 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_34 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_34 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_34 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_34_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_34 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_34_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_34_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_34 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_34_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_34_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_34 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_35_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_35 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_35 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_ExportID_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_35 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_35 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_35_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_35 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_35_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_35_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_35 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_35 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_35 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_35 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_35_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_35 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_35_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_35_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_35 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_35_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_35_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_35 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_36_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_36 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_36 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_ExportID_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_36 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_36 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_36_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_36 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_36_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_36_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_36 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_36 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_36 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_36 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_36_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_36 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_36_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_36_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_36 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_36_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_36_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_36 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_37_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_37 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_37 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_ExportID_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_37 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_37 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_37_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_37 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_37_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_37_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_37 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_37 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_37 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_37 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_37_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_37 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_37_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_37_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_37 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_37_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_37_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_37 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_38_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_38 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_38 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_ExportID_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_38 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_38 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_38_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_38 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_38_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_38_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_38 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_38 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_38 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_38 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_38_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_38 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_38_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_38_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_38 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_38_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_38_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_38 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_39_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_39 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_39 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_ExportID_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_39 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_39 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_39_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_39 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_39_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_39_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_39 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_39 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_39 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_39 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_39_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_39 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_39_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_39_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_39 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_39_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_39_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_39 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_3_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_3 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_3 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_ExportID_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_3 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_3 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_3_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_3 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_3_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_3_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_3 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_3 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_3 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_3 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_3_ServicesID_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_3_ServicesID_importer_log_id_idx" ON hmis.hmis_2022_services_partitioned_3 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_3_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_3_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_3 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_3_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_3_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_3 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_40_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_40 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_40 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_ExportID_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_40 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_40 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_40_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_40 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_40_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_40_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_40 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_40 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_40 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_40 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_40_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_40 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_40_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_40_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_40 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_40_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_40_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_40 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_41_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_41 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_41 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_ExportID_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_41 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_41 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_41_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_41 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_41_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_41_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_41 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_41 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_41 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_41 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_41_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_41 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_41_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_41_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_41 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_41_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_41_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_41 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_42_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_42 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_42 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_ExportID_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_42 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_42 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_42_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_42 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_42_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_42_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_42 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_42 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_42 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_42 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_42_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_42 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_42_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_42_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_42 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_42_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_42_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_42 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_43_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_43 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_43 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_ExportID_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_43 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_43 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_43_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_43 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_43_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_43_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_43 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_43 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_43 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_43 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_43_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_43 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_43_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_43_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_43 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_43_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_43_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_43 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_44_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_44 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_44 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_ExportID_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_44 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_44 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_44_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_44 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_44_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_44_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_44 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_44 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_44 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_44 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_44_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_44 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_44_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_44_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_44 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_44_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_44_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_44 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_45_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_45 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_45 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_ExportID_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_45 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_45 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_45_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_45 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_45_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_45_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_45 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_45 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_45 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_45 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_45_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_45 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_45_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_45_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_45 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_45_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_45_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_45 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_46_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_46 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_46 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_ExportID_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_46 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_46 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_46_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_46 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_46_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_46_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_46 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_46 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_46 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_46 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_46_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_46 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_46_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_46_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_46 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_46_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_46_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_46 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_47_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_47 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_47 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_ExportID_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_47 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_47 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_47_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_47 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_47_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_47_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_47 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_47 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_47 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_47 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_47_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_47 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_47_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_47_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_47 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_47_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_47_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_47 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_48_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_48 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_48 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_ExportID_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_48 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_48 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_48_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_48 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_48_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_48_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_48 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_48 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_48 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_48 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_48_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_48 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_48_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_48_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_48 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_48_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_48_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_48 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_49_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_49 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_49 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_ExportID_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_49 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_49 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_49_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_49 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_49_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_49_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_49 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_49 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_49 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_49 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_49_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_49 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_49_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_49_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_49 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_49_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_49_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_49 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_4_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_4 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_4 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_ExportID_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_4 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_4 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_4_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_4 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_4_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_4_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_4 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_4 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_4 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_4 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_4_ServicesID_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_4_ServicesID_importer_log_id_idx" ON hmis.hmis_2022_services_partitioned_4 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_4_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_4_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_4 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_4_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_4_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_4 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_50_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_50 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_50 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_ExportID_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_50 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_50 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_50_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_50 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_50_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_50_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_50 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_50 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_50 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_50 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_50_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_50 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_50_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_50_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_50 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_50_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_50_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_50 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_51_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_51 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_51 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_ExportID_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_51 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_51 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_51_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_51 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_51_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_51_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_51 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_51 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_51 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_51 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_51_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_51 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_51_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_51_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_51 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_51_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_51_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_51 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_52_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_52 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_52 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_ExportID_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_52 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_52 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_52_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_52 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_52_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_52_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_52 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_52 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_52 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_52 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_52_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_52 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_52_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_52_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_52 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_52_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_52_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_52 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_53_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_53 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_53 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_ExportID_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_53 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_53 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_53_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_53 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_53_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_53_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_53 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_53 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_53 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_53 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_53_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_53 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_53_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_53_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_53 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_53_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_53_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_53 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_54_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_54 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_54 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_ExportID_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_54 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_54 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_54_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_54 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_54_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_54_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_54 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_54 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_54 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_54 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_54_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_54 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_54_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_54_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_54 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_54_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_54_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_54 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_55_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_55 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_55 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_ExportID_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_55 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_55 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_55_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_55 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_55_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_55_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_55 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_55 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_55 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_55 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_55_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_55 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_55_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_55_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_55 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_55_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_55_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_55 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_56_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_56 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_56 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_ExportID_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_56 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_56 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_56_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_56 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_56_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_56_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_56 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_56 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_56 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_56 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_56_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_56 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_56_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_56_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_56 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_56_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_56_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_56 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_57_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_57 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_57 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_ExportID_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_57 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_57 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_57_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_57 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_57_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_57_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_57 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_57 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_57 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_57 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_57_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_57 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_57_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_57_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_57 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_57_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_57_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_57 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_58_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_58 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_58 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_ExportID_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_58 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_58 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_58_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_58 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_58_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_58_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_58 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_58 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_58 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_58 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_58_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_58 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_58_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_58_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_58 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_58_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_58_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_58 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_59_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_59 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_59 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_ExportID_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_59 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_59 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_59_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_59 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_59_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_59_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_59 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_59 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_59 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_59 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_59_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_59 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_59_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_59_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_59 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_59_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_59_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_59 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_5_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_5 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_5 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_ExportID_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_5 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_5 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_5_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_5 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_5_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_5_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_5 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_5 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_5 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_5 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_5_ServicesID_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_5_ServicesID_importer_log_id_idx" ON hmis.hmis_2022_services_partitioned_5 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_5_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_5_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_5 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_5_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_5_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_5 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_60_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_60 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_60 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_ExportID_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_60 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_60 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_60_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_60 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_60_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_60_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_60 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_60 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_60 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_60 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_60_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_60 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_60_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_60_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_60 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_60_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_60_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_60 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_61_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_61 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_61 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_ExportID_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_61 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_61 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_61_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_61 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_61_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_61_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_61 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_61 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_61 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_61 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_61_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_61 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_61_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_61_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_61 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_61_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_61_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_61 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_62_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_62 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_62 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_ExportID_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_62 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_62 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_62_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_62 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_62_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_62_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_62 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_62 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_62 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_62 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_62_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_62 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_62_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_62_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_62 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_62_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_62_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_62 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_63_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_63 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_63 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_ExportID_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_63 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_63 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_63_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_63 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_63_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_63_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_63 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_63 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_63 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_63 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_63_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_63 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_63_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_63_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_63 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_63_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_63_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_63 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_64_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_64 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_64 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_ExportID_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_64 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_64 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_64_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_64 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_64_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_64_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_64 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_64 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_64 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_64 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_64_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_64 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_64_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_64_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_64 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_64_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_64_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_64 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_65_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_65 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_65 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_ExportID_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_65 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_65 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_65_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_65 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_65_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_65_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_65 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_65 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_65 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_65 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_65_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_65 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_65_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_65_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_65 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_65_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_65_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_65 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_66_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_66 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_66 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_ExportID_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_66 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_66 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_66_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_66 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_66_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_66_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_66 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_66 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_66 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_66 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_66_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_66 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_66_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_66_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_66 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_66_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_66_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_66 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_67_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_67 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_67 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_ExportID_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_67 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_67 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_67_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_67 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_67_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_67_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_67 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_67 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_67 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_67 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_67_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_67 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_67_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_67_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_67 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_67_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_67_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_67 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_68_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_68 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_68 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_ExportID_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_68 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_68 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_68_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_68 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_68_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_68_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_68 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_68 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_68 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_68 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_68_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_68 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_68_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_68_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_68 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_68_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_68_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_68 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_69_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_69 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_69 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_ExportID_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_69 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_69 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_69_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_69 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_69_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_69_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_69 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_69 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_69 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_69 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_69_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_69 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_69_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_69_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_69 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_69_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_69_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_69 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_6_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_6 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_6 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_ExportID_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_6 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_6 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_6_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_6 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_6_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_6_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_6 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_6 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_6 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_6 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_6_ServicesID_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_6_ServicesID_importer_log_id_idx" ON hmis.hmis_2022_services_partitioned_6 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_6_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_6_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_6 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_6_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_6_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_6 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_70_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_70 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_70 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_ExportID_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_70 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_70 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_70_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_70 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_70_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_70_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_70 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_70 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_70 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_70 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_70_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_70 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_70_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_70_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_70 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_70_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_70_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_70 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_7_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_7 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_7 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_ExportID_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_7 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_7 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_7_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_7 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_7_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_7_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_7 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_7 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_7 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_7 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_7_ServicesID_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_7_ServicesID_importer_log_id_idx" ON hmis.hmis_2022_services_partitioned_7 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_7_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_7_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_7 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_7_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_7_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_7 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_8_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_8 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_8 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_ExportID_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_8 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_8 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_8_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_8 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_8_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_8_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_8 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_8 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_8 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_8 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_8_ServicesID_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_8_ServicesID_importer_log_id_idx" ON hmis.hmis_2022_services_partitioned_8 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_8_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_8_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_8 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_8_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_8_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_8 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateCreated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateCreated_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateCreated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateCreated_idx1" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateCreated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateCreated_idx2" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateCreated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateCreated_idx3" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateCreated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateCreated_idx4" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateCreated"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateUpdated_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateUpdated_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateUpdated_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateUpdated_idx1" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateUpdated_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateUpdated_idx2" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateUpdated_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateUpdated_idx3" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_9_DateUpdated_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_DateUpdated_idx4" ON hmis.hmis_2022_services_partitioned_9 USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx5" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_EnrollmentID_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_EnrollmentID_idx1" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_EnrollmentID_idx2" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_EnrollmentID_idx3" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_EnrollmentID_idx4" ON hmis.hmis_2022_services_partitioned_9 USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_ExportID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_ExportID_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_ExportID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_ExportID_idx1" ON hmis.hmis_2022_services_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_ExportID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_ExportID_idx2" ON hmis.hmis_2022_services_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_ExportID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_ExportID_idx3" ON hmis.hmis_2022_services_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_ExportID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_ExportID_idx4" ON hmis.hmis_2022_services_partitioned_9 USING btree ("ExportID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_PersonalID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_PersonalID_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_PersonalID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_PersonalID_idx1" ON hmis.hmis_2022_services_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_PersonalID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_PersonalID_idx2" ON hmis.hmis_2022_services_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_PersonalID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_PersonalID_idx3" ON hmis.hmis_2022_services_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_PersonalID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_PersonalID_idx4" ON hmis.hmis_2022_services_partitioned_9 USING btree ("PersonalID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx1" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx2" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx3" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx4" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_DateProvided_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_DateProvided_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_DateProvided_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_DateProvided_idx1" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_DateProvided_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_DateProvided_idx2" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_DateProvided_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_DateProvided_idx3" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_DateProvided_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_DateProvided_idx4" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_idx1" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_idx2" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_idx3" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_9_RecordType_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_RecordType_idx4" ON hmis.hmis_2022_services_partitioned_9 USING btree ("RecordType"); + + +-- +-- Name: hmis_2022_services_partitioned_9_ServicesID_data_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_ServicesID_data_source_id_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_partitioned_9_ServicesID_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_ServicesID_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_ServicesID_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_ServicesID_idx1" ON hmis.hmis_2022_services_partitioned_9 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_ServicesID_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_ServicesID_idx2" ON hmis.hmis_2022_services_partitioned_9 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_ServicesID_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_ServicesID_idx3" ON hmis.hmis_2022_services_partitioned_9 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_ServicesID_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_ServicesID_idx4" ON hmis.hmis_2022_services_partitioned_9 USING btree ("ServicesID"); + + +-- +-- Name: hmis_2022_services_partitioned_9_ServicesID_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_9_ServicesID_importer_log_id_idx" ON hmis.hmis_2022_services_partitioned_9 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_9_importer_log_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_9_importer_log_id_idx ON hmis.hmis_2022_services_partitioned_9 USING btree (importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_9_source_type_source_id_idx; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX hmis_2022_services_partitioned_9_source_type_source_id_idx ON hmis.hmis_2022_services_partitioned_9 USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx10; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx10" ON hmis.hmis_2022_services_partitioned_19 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx11; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx11" ON hmis.hmis_2022_services_partitioned_20 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx12; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx12" ON hmis.hmis_2022_services_partitioned_21 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx13; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx13" ON hmis.hmis_2022_services_partitioned_22 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx14; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx14" ON hmis.hmis_2022_services_partitioned_23 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx15; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx15" ON hmis.hmis_2022_services_partitioned_24 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx16; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx16" ON hmis.hmis_2022_services_partitioned_25 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx17; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx17" ON hmis.hmis_2022_services_partitioned_26 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx18; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx18" ON hmis.hmis_2022_services_partitioned_27 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx19; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx19" ON hmis.hmis_2022_services_partitioned_28 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx20; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx20" ON hmis.hmis_2022_services_partitioned_29 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx21; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx21" ON hmis.hmis_2022_services_partitioned_30 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx22; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx22" ON hmis.hmis_2022_services_partitioned_31 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx23; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx23" ON hmis.hmis_2022_services_partitioned_32 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx24; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx24" ON hmis.hmis_2022_services_partitioned_33 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx25; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx25" ON hmis.hmis_2022_services_partitioned_34 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx26; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx26" ON hmis.hmis_2022_services_partitioned_35 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx27; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx27" ON hmis.hmis_2022_services_partitioned_36 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx28; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx28" ON hmis.hmis_2022_services_partitioned_37 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx29; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx29" ON hmis.hmis_2022_services_partitioned_38 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx30; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx30" ON hmis.hmis_2022_services_partitioned_39 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx31; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx31" ON hmis.hmis_2022_services_partitioned_40 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx32; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx32" ON hmis.hmis_2022_services_partitioned_41 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx33; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx33" ON hmis.hmis_2022_services_partitioned_42 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx34; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx34" ON hmis.hmis_2022_services_partitioned_43 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx35; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx35" ON hmis.hmis_2022_services_partitioned_44 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx36; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx36" ON hmis.hmis_2022_services_partitioned_45 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx37; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx37" ON hmis.hmis_2022_services_partitioned_46 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx38; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx38" ON hmis.hmis_2022_services_partitioned_47 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx39; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx39" ON hmis.hmis_2022_services_partitioned_48 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx40; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx40" ON hmis.hmis_2022_services_partitioned_49 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx41; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx41" ON hmis.hmis_2022_services_partitioned_50 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx42; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx42" ON hmis.hmis_2022_services_partitioned_51 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx43; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx43" ON hmis.hmis_2022_services_partitioned_52 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx44; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx44" ON hmis.hmis_2022_services_partitioned_53 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx45; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx45" ON hmis.hmis_2022_services_partitioned_54 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx46; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx46" ON hmis.hmis_2022_services_partitioned_55 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx47; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx47" ON hmis.hmis_2022_services_partitioned_56 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx48; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx48" ON hmis.hmis_2022_services_partitioned_57 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx49; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx49" ON hmis.hmis_2022_services_partitioned_58 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx50; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx50" ON hmis.hmis_2022_services_partitioned_59 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx51; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx51" ON hmis.hmis_2022_services_partitioned_60 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx52; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx52" ON hmis.hmis_2022_services_partitioned_61 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx53; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx53" ON hmis.hmis_2022_services_partitioned_62 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx54; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx54" ON hmis.hmis_2022_services_partitioned_63 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx55; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx55" ON hmis.hmis_2022_services_partitioned_64 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx56; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx56" ON hmis.hmis_2022_services_partitioned_65 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx57; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx57" ON hmis.hmis_2022_services_partitioned_66 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx58; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx58" ON hmis.hmis_2022_services_partitioned_67 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx59; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx59" ON hmis.hmis_2022_services_partitioned_68 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx60; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx60" ON hmis.hmis_2022_services_partitioned_69 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx61; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned_ServicesID_importer_log_id_idx61" ON hmis.hmis_2022_services_partitioned_70 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx1; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned__ServicesID_importer_log_id_idx1" ON hmis.hmis_2022_services_partitioned_10 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx2; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned__ServicesID_importer_log_id_idx2" ON hmis.hmis_2022_services_partitioned_11 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx3; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned__ServicesID_importer_log_id_idx3" ON hmis.hmis_2022_services_partitioned_12 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx4; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned__ServicesID_importer_log_id_idx4" ON hmis.hmis_2022_services_partitioned_13 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx5; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned__ServicesID_importer_log_id_idx5" ON hmis.hmis_2022_services_partitioned_14 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx6; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned__ServicesID_importer_log_id_idx6" ON hmis.hmis_2022_services_partitioned_15 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx7; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned__ServicesID_importer_log_id_idx7" ON hmis.hmis_2022_services_partitioned_16 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx8; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned__ServicesID_importer_log_id_idx8" ON hmis.hmis_2022_services_partitioned_17 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx9; Type: INDEX; Schema: hmis; Owner: - +-- + +CREATE INDEX "hmis_2022_services_partitioned__ServicesID_importer_log_id_idx9" ON hmis.hmis_2022_services_partitioned_18 USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: ClientUnencrypted_DateCreated_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "ClientUnencrypted_DateCreated_idx" ON public."ClientUnencrypted" USING btree ("DateCreated"); + + +-- +-- Name: ClientUnencrypted_DateDeleted_data_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "ClientUnencrypted_DateDeleted_data_source_id_idx" ON public."ClientUnencrypted" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: ClientUnencrypted_DateUpdated_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "ClientUnencrypted_DateUpdated_idx" ON public."ClientUnencrypted" USING btree ("DateUpdated"); + + +-- +-- Name: ClientUnencrypted_ExportID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "ClientUnencrypted_ExportID_idx" ON public."ClientUnencrypted" USING btree ("ExportID"); + + +-- +-- Name: ClientUnencrypted_FirstName_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "ClientUnencrypted_FirstName_idx" ON public."ClientUnencrypted" USING btree ("FirstName"); + + +-- +-- Name: ClientUnencrypted_LastName_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "ClientUnencrypted_LastName_idx" ON public."ClientUnencrypted" USING btree ("LastName"); + + +-- +-- Name: ClientUnencrypted_PersonalID_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "ClientUnencrypted_PersonalID_idx" ON public."ClientUnencrypted" USING btree ("PersonalID"); + + +-- +-- Name: ClientUnencrypted_creator_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "ClientUnencrypted_creator_id_idx" ON public."ClientUnencrypted" USING btree (creator_id); + + +-- +-- Name: ClientUnencrypted_data_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "ClientUnencrypted_data_source_id_idx" ON public."ClientUnencrypted" USING btree (data_source_id); + + +-- +-- Name: ClientUnencrypted_pending_date_deleted_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "ClientUnencrypted_pending_date_deleted_idx" ON public."ClientUnencrypted" USING btree (pending_date_deleted); + + +-- +-- Name: Disabilities_DateDeleted_data_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Disabilities_DateDeleted_data_source_id_idx" ON public."Disabilities" USING btree ("DateDeleted", data_source_id) WHERE ("DateDeleted" IS NULL); + + +-- +-- Name: Disabilities_DateDeleted_data_source_id_idx1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Disabilities_DateDeleted_data_source_id_idx1" ON public."Disabilities" USING btree ("DateDeleted", data_source_id) WHERE ("DateDeleted" IS NULL); + + +-- +-- Name: Disabilities_DateDeleted_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Disabilities_DateDeleted_idx" ON public."Disabilities" USING btree ("DateDeleted") WHERE ("DateDeleted" IS NULL); + + +-- +-- Name: Enrollment_2735; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Enrollment_2735" ON public."Enrollment" USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: Enrollment_3085; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Enrollment_3085" ON public."Enrollment" USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: Enrollment_34e3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Enrollment_34e3" ON public."Enrollment" USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: Enrollment_42af; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Enrollment_42af" ON public."Enrollment" USING btree ("ProjectID"); + + +-- +-- Name: Enrollment_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Enrollment_42d5" ON public."Enrollment" USING btree ("DateUpdated"); + + +-- +-- Name: Enrollment_4337; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Enrollment_4337" ON public."Enrollment" USING btree ("EnrollmentID"); + + +-- +-- Name: Enrollment_5328; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Enrollment_5328" ON public."Enrollment" USING btree ("HouseholdID"); + + +-- +-- Name: Enrollment_603f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Enrollment_603f" ON public."Enrollment" USING btree ("PersonalID"); + + +-- +-- Name: Enrollment_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Enrollment_634d" ON public."Enrollment" USING btree ("ExportID"); + + +-- +-- Name: Enrollment_c548; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Enrollment_c548" ON public."Enrollment" USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: Enrollment_d381; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Enrollment_d381" ON public."Enrollment" USING btree ("DateCreated"); + + +-- +-- Name: Enrollment_f3a2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "Enrollment_f3a2" ON public."Enrollment" USING btree ("DateDeleted"); + + +-- +-- Name: IncomeBenefits_DateDeleted_data_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "IncomeBenefits_DateDeleted_data_source_id_idx" ON public."IncomeBenefits" USING btree ("DateDeleted", data_source_id) WHERE ("DateDeleted" IS NULL); + + +-- +-- Name: IncomeBenefits_DateDeleted_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "IncomeBenefits_DateDeleted_idx" ON public."IncomeBenefits" USING btree ("DateDeleted") WHERE ("DateDeleted" IS NULL); + + +-- +-- Name: IncomeBenefits_data_source_id_DateDeleted_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "IncomeBenefits_data_source_id_DateDeleted_idx" ON public."IncomeBenefits" USING btree (data_source_id, "DateDeleted") WHERE ("DateDeleted" IS NULL); + + +-- +-- Name: affiliation_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX affiliation_date_created ON public."Affiliation" USING btree ("DateCreated"); + + +-- +-- Name: affiliation_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX affiliation_date_updated ON public."Affiliation" USING btree ("DateUpdated"); + + +-- +-- Name: affiliation_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX affiliation_export_id ON public."Affiliation" USING btree ("ExportID"); + + +-- +-- Name: apr_client_conflict_columns; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX apr_client_conflict_columns ON public.hud_report_apr_clients USING btree (client_id, data_source_id, report_instance_id); + + +-- +-- Name: aq_aq_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX aq_aq_id_ds_id ON public."AssessmentQuestions" USING btree ("AssessmentQuestionID", data_source_id); + + +-- +-- Name: ar_ar_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX ar_ar_id_ds_id ON public."AssessmentResults" USING btree ("AssessmentResultID", data_source_id); + + +-- +-- Name: assessment_p_id_en_id_ds_id_a_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX assessment_p_id_en_id_ds_id_a_id ON public."Assessment" USING btree ("PersonalID", "EnrollmentID", data_source_id, "AssessmentID"); + + +-- +-- Name: assessment_q_a_id_ds_id_p_id_en_id_aq_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX assessment_q_a_id_ds_id_p_id_en_id_aq_id ON public."AssessmentQuestions" USING btree ("AssessmentID", data_source_id, "PersonalID", "EnrollmentID", "AssessmentQuestionID"); + + +-- +-- Name: assessment_r_a_id_ds_id_p_id_en_id_ar_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX assessment_r_a_id_ds_id_p_id_en_id_ar_id ON public."AssessmentResults" USING btree ("AssessmentID", data_source_id, "PersonalID", "EnrollmentID", "AssessmentResultID"); + + +-- +-- Name: c_r_system_pathways_clients_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX c_r_system_pathways_clients_idx ON public.system_pathways_clients USING btree (client_id, report_id); + + +-- +-- Name: c_r_system_pathways_enrollments_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX c_r_system_pathways_enrollments_idx ON public.system_pathways_enrollments USING btree (client_id, report_id); + + +-- +-- Name: ch_enrollments_e_id_ch; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX ch_enrollments_e_id_ch ON public.ch_enrollments USING btree (enrollment_id, chronically_homeless_at_entry); + + +-- +-- Name: ch_enrollments_e_id_pro; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX ch_enrollments_e_id_pro ON public.ch_enrollments USING btree (enrollment_id, processed_as); + + +-- +-- Name: client_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX client_date_created ON public."Client" USING btree ("DateCreated"); + + +-- +-- Name: client_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX client_date_updated ON public."Client" USING btree ("DateUpdated"); + + +-- +-- Name: client_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX client_export_id ON public."Client" USING btree ("ExportID"); + + +-- +-- Name: client_first_name; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX client_first_name ON public."Client" USING btree ("FirstName"); + + +-- +-- Name: client_id_ret_index; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX client_id_ret_index ON public.recent_report_enrollments USING btree (client_id); + + +-- +-- Name: client_id_rsh_index; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX client_id_rsh_index ON public.recent_service_history USING btree (client_id); + + +-- +-- Name: client_last_name; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX client_last_name ON public."Client" USING btree ("LastName"); + + +-- +-- Name: client_personal_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX client_personal_id ON public."Client" USING btree ("PersonalID"); + + +-- +-- Name: coc_code_test; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX coc_code_test ON public."EnrollmentCoC" USING btree ("CoCCode"); + + +-- +-- Name: cur_liv_sit_cur_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX cur_liv_sit_cur_id_ds_id ON public."CurrentLivingSituation" USING btree ("CurrentLivingSitID", data_source_id); + + +-- +-- Name: cur_liv_sit_p_id_en_id_ds_id_cur_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX cur_liv_sit_p_id_en_id_ds_id_cur_id ON public."CurrentLivingSituation" USING btree ("PersonalID", "EnrollmentID", data_source_id, "CurrentLivingSitID"); + + +-- +-- Name: cur_liv_sit_sit_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX cur_liv_sit_sit_id_ds_id ON public."CurrentLivingSituation" USING btree ("CurrentLivingSitID", data_source_id); + + +-- +-- Name: date_rsh_index; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX date_rsh_index ON public.recent_service_history USING btree (date); + + +-- +-- Name: disabilities_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX disabilities_date_created ON public."Disabilities" USING btree ("DateCreated"); + + +-- +-- Name: disabilities_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX disabilities_date_updated ON public."Disabilities" USING btree ("DateUpdated"); + + +-- +-- Name: disabilities_disability_type_response_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX disabilities_disability_type_response_idx ON public."Disabilities" USING btree ("DisabilityType", "DisabilityResponse", "InformationDate", "PersonalID", "EnrollmentID", "DateDeleted"); + + +-- +-- Name: disabilities_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX disabilities_export_id ON public."Disabilities" USING btree ("ExportID"); + + +-- +-- Name: dq_client_conflict_columns; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX dq_client_conflict_columns ON public.hud_report_dq_clients USING btree (client_id, data_source_id, report_instance_id); + + +-- +-- Name: ds_ceparticipation_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX ds_ceparticipation_idx ON public."CEParticipation" USING btree (data_source_id, "CEParticipationID"); + + +-- +-- Name: ds_hmisparticipation_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX ds_hmisparticipation_idx ON public."HMISParticipation" USING btree (data_source_id, "HMISParticipationID"); + + +-- +-- Name: e_a_c_d_a_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX e_a_c_d_a_idx ON public.eccovia_assessments USING btree (client_id, data_source_id, assessment_id); + + +-- +-- Name: e_c_C_c_d_a_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "e_c_C_c_d_a_idx" ON public.eccovia_client_contacts USING btree (client_id, data_source_id); + + +-- +-- Name: e_c_m_c_d_a_u_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX e_c_m_c_d_a_u_idx ON public.eccovia_case_managers USING btree (client_id, data_source_id, case_manager_id, user_id); + + +-- +-- Name: ee_ee_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX ee_ee_id_ds_id ON public."EmploymentEducation" USING btree ("EmploymentEducationID", data_source_id); + + +-- +-- Name: employment_education_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX employment_education_date_created ON public."EmploymentEducation" USING btree ("DateCreated"); + + +-- +-- Name: employment_education_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX employment_education_date_updated ON public."EmploymentEducation" USING btree ("DateUpdated"); + + +-- +-- Name: employment_education_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX employment_education_export_id ON public."EmploymentEducation" USING btree ("ExportID"); + + +-- +-- Name: en_en_id_p_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX en_en_id_p_id_ds_id ON public."Enrollment" USING btree ("EnrollmentID", "PersonalID", data_source_id); + + +-- +-- Name: en_tt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX en_tt ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: enrollment_coc_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX enrollment_coc_date_created ON public."EnrollmentCoC" USING btree ("DateCreated"); + + +-- +-- Name: enrollment_coc_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX enrollment_coc_date_updated ON public."EnrollmentCoC" USING btree ("DateUpdated"); + + +-- +-- Name: enrollment_coc_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX enrollment_coc_export_id ON public."EnrollmentCoC" USING btree ("ExportID"); + + +-- +-- Name: enrollment_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX enrollment_date_created ON public."Enrollment" USING btree ("DateCreated"); + + +-- +-- Name: enrollment_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX enrollment_date_updated ON public."Enrollment" USING btree ("DateUpdated"); + + +-- +-- Name: enrollment_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX enrollment_export_id ON public."Enrollment" USING btree ("ExportID"); + + +-- +-- Name: entrydate_ret_index; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX entrydate_ret_index ON public.recent_report_enrollments USING btree ("EntryDate"); + + +-- +-- Name: ev_ev_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX ev_ev_id_ds_id ON public."Event" USING btree ("EventID", data_source_id); + + +-- +-- Name: event_ds_id_p_id_en_id_ev_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX event_ds_id_p_id_en_id_ev_id ON public."Event" USING btree (data_source_id, "PersonalID", "EnrollmentID", "EventID"); + + +-- +-- Name: ex_id_ds_id_fc_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX ex_id_ds_id_fc_idx ON public.financial_clients USING btree (external_client_id, data_source_id); + + +-- +-- Name: exit_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX exit_date_created ON public."Exit" USING btree ("DateCreated"); + + +-- +-- Name: exit_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX exit_date_updated ON public."Exit" USING btree ("DateUpdated"); + + +-- +-- Name: exit_en_id_p_id_ds_id_ex_d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX exit_en_id_p_id_ds_id_ex_d ON public."Exit" USING btree ("EnrollmentID", "PersonalID", data_source_id, "ExitDate"); + + +-- +-- Name: exit_en_id_p_id_ds_id_ex_d_undeleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX exit_en_id_p_id_ds_id_ex_d_undeleted ON public."Exit" USING btree ("EnrollmentID", "PersonalID", data_source_id, "ExitDate") WHERE ("DateDeleted" IS NULL); + + +-- +-- Name: exit_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX exit_export_id ON public."Exit" USING btree ("ExportID"); + + +-- +-- Name: exit_p_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX exit_p_id_ds_id ON public."Exit" USING btree ("PersonalID", data_source_id) WHERE ("DateDeleted" IS NULL); + + +-- +-- Name: export_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX export_export_id ON public."Export" USING btree ("ExportID"); + + +-- +-- Name: fq_r_id_p; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX fq_r_id_p ON public.pm_client_projects USING btree (for_question, report_id, period); + + +-- +-- Name: funder_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX funder_date_created ON public."Funder" USING btree ("DateCreated"); + + +-- +-- Name: funder_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX funder_date_updated ON public."Funder" USING btree ("DateUpdated"); + + +-- +-- Name: funder_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX funder_export_id ON public."Funder" USING btree ("ExportID"); + + +-- +-- Name: gs_source_id_source_type_uniq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX gs_source_id_source_type_uniq ON public.generic_services USING btree (source_id, source_type); + + +-- +-- Name: health_and_dv_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX health_and_dv_date_created ON public."HealthAndDV" USING btree ("DateCreated"); + + +-- +-- Name: health_and_dv_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX health_and_dv_date_updated ON public."HealthAndDV" USING btree ("DateUpdated"); + + +-- +-- Name: health_and_dv_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX health_and_dv_export_id ON public."HealthAndDV" USING btree ("ExportID"); + + +-- +-- Name: hmis2022affiliations_9Tjd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022affiliations_9Tjd" ON public.hmis_2022_affiliations USING btree ("ExportID"); + + +-- +-- Name: hmis2022affiliations_MCe3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022affiliations_MCe3" ON public.hmis_2022_affiliations USING btree ("ExportID"); + + +-- +-- Name: hmis2022affiliations_lc0a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022affiliations_lc0a ON public.hmis_2022_affiliations USING btree ("ExportID"); + + +-- +-- Name: hmis2022affiliations_lt6c; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022affiliations_lt6c ON public.hmis_2022_affiliations USING btree ("ExportID"); + + +-- +-- Name: hmis2022affiliations_otVM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022affiliations_otVM" ON public.hmis_2022_affiliations USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessmentquestions_66AG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentquestions_66AG" ON public.hmis_2022_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessmentquestions_67BE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentquestions_67BE" ON public.hmis_2022_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessmentquestions_8Qlc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentquestions_8Qlc" ON public.hmis_2022_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessmentquestions_FW3S; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentquestions_FW3S" ON public.hmis_2022_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessmentquestions_NcX9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentquestions_NcX9" ON public.hmis_2022_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessmentquestions_U4bM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentquestions_U4bM" ON public.hmis_2022_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessmentquestions_Y8GY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentquestions_Y8GY" ON public.hmis_2022_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessmentquestions_cKeo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentquestions_cKeo" ON public.hmis_2022_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessmentquestions_jsNW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentquestions_jsNW" ON public.hmis_2022_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessmentquestions_mNPM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentquestions_mNPM" ON public.hmis_2022_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessmentresults_4YlO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentresults_4YlO" ON public.hmis_2022_assessment_results USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessmentresults_A8se; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentresults_A8se" ON public.hmis_2022_assessment_results USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessmentresults_BRi6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentresults_BRi6" ON public.hmis_2022_assessment_results USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessmentresults_BgP9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentresults_BgP9" ON public.hmis_2022_assessment_results USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessmentresults_QszM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentresults_QszM" ON public.hmis_2022_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessmentresults_j7wN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentresults_j7wN" ON public.hmis_2022_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessmentresults_l8P3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentresults_l8P3" ON public.hmis_2022_assessment_results USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessmentresults_pBh1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentresults_pBh1" ON public.hmis_2022_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessmentresults_qwBT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentresults_qwBT" ON public.hmis_2022_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessmentresults_wvgD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessmentresults_wvgD" ON public.hmis_2022_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessments_1WRE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_1WRE" ON public.hmis_2022_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessments_1xkk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022assessments_1xkk ON public.hmis_2022_assessments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022assessments_8G4O; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_8G4O" ON public.hmis_2022_assessments USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessments_A3yK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_A3yK" ON public.hmis_2022_assessments USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessments_ACmg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_ACmg" ON public.hmis_2022_assessments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022assessments_AlYO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_AlYO" ON public.hmis_2022_assessments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022assessments_BXpI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_BXpI" ON public.hmis_2022_assessments USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessments_ByZf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_ByZf" ON public.hmis_2022_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessments_D5nN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_D5nN" ON public.hmis_2022_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmis2022assessments_KR2P; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_KR2P" ON public.hmis_2022_assessments USING btree ("PersonalID"); + + +-- +-- Name: hmis2022assessments_LJiY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_LJiY" ON public.hmis_2022_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmis2022assessments_PDLH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_PDLH" ON public.hmis_2022_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessments_PKqe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_PKqe" ON public.hmis_2022_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmis2022assessments_W410; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_W410" ON public.hmis_2022_assessments USING btree ("PersonalID"); + + +-- +-- Name: hmis2022assessments_bjSD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_bjSD" ON public.hmis_2022_assessments USING btree ("PersonalID"); + + +-- +-- Name: hmis2022assessments_fvZW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_fvZW" ON public.hmis_2022_assessments USING btree ("PersonalID"); + + +-- +-- Name: hmis2022assessments_je8c; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022assessments_je8c ON public.hmis_2022_assessments USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessments_lRgj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_lRgj" ON public.hmis_2022_assessments USING btree ("PersonalID"); + + +-- +-- Name: hmis2022assessments_lWWv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_lWWv" ON public.hmis_2022_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmis2022assessments_qLFb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_qLFb" ON public.hmis_2022_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessments_r7np; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022assessments_r7np ON public.hmis_2022_assessments USING btree ("ExportID"); + + +-- +-- Name: hmis2022assessments_sqjV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_sqjV" ON public.hmis_2022_assessments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022assessments_t8k1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022assessments_t8k1 ON public.hmis_2022_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmis2022assessments_vHPu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_vHPu" ON public.hmis_2022_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmis2022assessments_vTjw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022assessments_vTjw" ON public.hmis_2022_assessments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022clients_0K2Q; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_0K2Q" ON public.hmis_2022_clients_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022clients_0nAI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_0nAI" ON public.hmis_2022_clients_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022clients_1ZkA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_1ZkA" ON public.hmis_2022_clients_saved USING btree ("VeteranStatus"); + + +-- +-- Name: hmis2022clients_5PV0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_5PV0" ON public.hmis_2022_clients_saved USING btree ("DOB"); + + +-- +-- Name: hmis2022clients_8dIx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_8dIx" ON public.hmis_2022_clients_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022clients_E1Fj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_E1Fj" ON public.hmis_2022_clients_saved USING btree ("VeteranStatus"); + + +-- +-- Name: hmis2022clients_EuyH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_EuyH" ON public.hmis_2022_clients_saved USING btree ("VeteranStatus"); + + +-- +-- Name: hmis2022clients_G2Er; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_G2Er" ON public.hmis_2022_clients_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022clients_H9sW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_H9sW" ON public.hmis_2022_clients_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022clients_HLPo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_HLPo" ON public.hmis_2022_clients_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022clients_I9Fk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_I9Fk" ON public.hmis_2022_clients_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022clients_I9Hf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_I9Hf" ON public.hmis_2022_clients_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022clients_IHZO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_IHZO" ON public.hmis_2022_clients_saved USING btree ("FirstName"); + + +-- +-- Name: hmis2022clients_JCgD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_JCgD" ON public.hmis_2022_clients_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022clients_Lowh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_Lowh" ON public.hmis_2022_clients_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022clients_NBVb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_NBVb" ON public.hmis_2022_clients_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022clients_O4VV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_O4VV" ON public.hmis_2022_clients_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022clients_V6Ey; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_V6Ey" ON public.hmis_2022_clients_saved USING btree ("VeteranStatus"); + + +-- +-- Name: hmis2022clients_WRGs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_WRGs" ON public.hmis_2022_clients_saved USING btree ("FirstName"); + + +-- +-- Name: hmis2022clients_YO8w; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_YO8w" ON public.hmis_2022_clients_saved USING btree ("LastName"); + + +-- +-- Name: hmis2022clients_bgBr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_bgBr" ON public.hmis_2022_clients_saved USING btree ("DOB"); + + +-- +-- Name: hmis2022clients_cWzB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_cWzB" ON public.hmis_2022_clients_saved USING btree ("DOB"); + + +-- +-- Name: hmis2022clients_ctEI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_ctEI" ON public.hmis_2022_clients_saved USING btree ("VeteranStatus"); + + +-- +-- Name: hmis2022clients_fT7G; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_fT7G" ON public.hmis_2022_clients_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022clients_fuco; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022clients_fuco ON public.hmis_2022_clients_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022clients_kDCg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_kDCg" ON public.hmis_2022_clients_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022clients_kPEm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_kPEm" ON public.hmis_2022_clients_saved USING btree ("DOB"); + + +-- +-- Name: hmis2022clients_kXnX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_kXnX" ON public.hmis_2022_clients_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022clients_lDTO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_lDTO" ON public.hmis_2022_clients_saved USING btree ("LastName"); + + +-- +-- Name: hmis2022clients_lUID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_lUID" ON public.hmis_2022_clients_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022clients_mwtf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022clients_mwtf ON public.hmis_2022_clients_saved USING btree ("FirstName"); + + +-- +-- Name: hmis2022clients_nPqP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_nPqP" ON public.hmis_2022_clients_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022clients_o1zL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_o1zL" ON public.hmis_2022_clients_saved USING btree ("FirstName"); + + +-- +-- Name: hmis2022clients_rhmD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_rhmD" ON public.hmis_2022_clients_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022clients_sjHR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_sjHR" ON public.hmis_2022_clients_saved USING btree ("DOB"); + + +-- +-- Name: hmis2022clients_smwv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022clients_smwv ON public.hmis_2022_clients_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022clients_tAtk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_tAtk" ON public.hmis_2022_clients_saved USING btree ("LastName"); + + +-- +-- Name: hmis2022clients_vm2H; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_vm2H" ON public.hmis_2022_clients_saved USING btree ("LastName"); + + +-- +-- Name: hmis2022clients_wPM4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_wPM4" ON public.hmis_2022_clients_saved USING btree ("FirstName"); + + +-- +-- Name: hmis2022clients_xavS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022clients_xavS" ON public.hmis_2022_clients_saved USING btree ("LastName"); + + +-- +-- Name: hmis2022currentlivingsituations_1i8x; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022currentlivingsituations_1i8x ON public.hmis_2022_current_living_situations USING btree ("PersonalID"); + + +-- +-- Name: hmis2022currentlivingsituations_4lpH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_4lpH" ON public.hmis_2022_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmis2022currentlivingsituations_5TrW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_5TrW" ON public.hmis_2022_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmis2022currentlivingsituations_D7JX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_D7JX" ON public.hmis_2022_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmis2022currentlivingsituations_Dihe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_Dihe" ON public.hmis_2022_current_living_situations USING btree ("PersonalID"); + + +-- +-- Name: hmis2022currentlivingsituations_ELrQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_ELrQ" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmis2022currentlivingsituations_Jc9G; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_Jc9G" ON public.hmis_2022_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmis2022currentlivingsituations_No3V; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_No3V" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmis2022currentlivingsituations_OUiJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_OUiJ" ON public.hmis_2022_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022currentlivingsituations_P7xE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_P7xE" ON public.hmis_2022_current_living_situations USING btree ("PersonalID"); + + +-- +-- Name: hmis2022currentlivingsituations_Q6ST; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_Q6ST" ON public.hmis_2022_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022currentlivingsituations_Q9cW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_Q9cW" ON public.hmis_2022_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmis2022currentlivingsituations_QXw2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_QXw2" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmis2022currentlivingsituations_S2Pz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_S2Pz" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmis2022currentlivingsituations_S7CL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_S7CL" ON public.hmis_2022_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022currentlivingsituations_TGSd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_TGSd" ON public.hmis_2022_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmis2022currentlivingsituations_XjUe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_XjUe" ON public.hmis_2022_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmis2022currentlivingsituations_YN5f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_YN5f" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmis2022currentlivingsituations_ZUJw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_ZUJw" ON public.hmis_2022_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022currentlivingsituations_aP5P; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_aP5P" ON public.hmis_2022_current_living_situations USING btree ("PersonalID"); + + +-- +-- Name: hmis2022currentlivingsituations_bdhj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022currentlivingsituations_bdhj ON public.hmis_2022_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmis2022currentlivingsituations_cf01; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022currentlivingsituations_cf01 ON public.hmis_2022_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmis2022currentlivingsituations_dREG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_dREG" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmis2022currentlivingsituations_dhqx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022currentlivingsituations_dhqx ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmis2022currentlivingsituations_fcmV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_fcmV" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmis2022currentlivingsituations_g26S; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_g26S" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmis2022currentlivingsituations_jaT0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_jaT0" ON public.hmis_2022_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022currentlivingsituations_ktGp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_ktGp" ON public.hmis_2022_current_living_situations USING btree ("PersonalID"); + + +-- +-- Name: hmis2022currentlivingsituations_nYeO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_nYeO" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmis2022currentlivingsituations_sxaI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022currentlivingsituations_sxaI" ON public.hmis_2022_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmis2022disabilities_2fdh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022disabilities_2fdh ON public.hmis_2022_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmis2022disabilities_8STr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_8STr" ON public.hmis_2022_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022disabilities_Clxr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_Clxr" ON public.hmis_2022_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmis2022disabilities_DcsA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_DcsA" ON public.hmis_2022_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmis2022disabilities_EnAl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_EnAl" ON public.hmis_2022_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022disabilities_Fc3v; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_Fc3v" ON public.hmis_2022_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmis2022disabilities_GajH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_GajH" ON public.hmis_2022_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmis2022disabilities_GjW5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_GjW5" ON public.hmis_2022_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022disabilities_HxEV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_HxEV" ON public.hmis_2022_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022disabilities_JZgU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_JZgU" ON public.hmis_2022_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmis2022disabilities_KpIn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_KpIn" ON public.hmis_2022_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmis2022disabilities_Ku2m; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_Ku2m" ON public.hmis_2022_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmis2022disabilities_QvrC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_QvrC" ON public.hmis_2022_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022disabilities_RCMq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_RCMq" ON public.hmis_2022_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmis2022disabilities_RKMq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_RKMq" ON public.hmis_2022_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022disabilities_UzGK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_UzGK" ON public.hmis_2022_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmis2022disabilities_VCx7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_VCx7" ON public.hmis_2022_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmis2022disabilities_XiFD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_XiFD" ON public.hmis_2022_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmis2022disabilities_XtPr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_XtPr" ON public.hmis_2022_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmis2022disabilities_YfE6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_YfE6" ON public.hmis_2022_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022disabilities_Yqqw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_Yqqw" ON public.hmis_2022_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmis2022disabilities_e39G; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_e39G" ON public.hmis_2022_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmis2022disabilities_f6dj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022disabilities_f6dj ON public.hmis_2022_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmis2022disabilities_mMjd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_mMjd" ON public.hmis_2022_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmis2022disabilities_mwGB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_mwGB" ON public.hmis_2022_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022disabilities_sUB4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_sUB4" ON public.hmis_2022_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmis2022disabilities_sWeo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_sWeo" ON public.hmis_2022_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmis2022disabilities_trSP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_trSP" ON public.hmis_2022_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022disabilities_v0nQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_v0nQ" ON public.hmis_2022_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmis2022disabilities_yEVb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022disabilities_yEVb" ON public.hmis_2022_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022employmenteducations_01I4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_01I4" ON public.hmis_2022_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmis2022employmenteducations_0QcH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_0QcH" ON public.hmis_2022_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022employmenteducations_0bvE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_0bvE" ON public.hmis_2022_employment_educations USING btree ("PersonalID"); + + +-- +-- Name: hmis2022employmenteducations_0mfY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_0mfY" ON public.hmis_2022_employment_educations USING btree ("DateCreated"); + + +-- +-- Name: hmis2022employmenteducations_10CJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_10CJ" ON public.hmis_2022_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmis2022employmenteducations_1Y1K; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_1Y1K" ON public.hmis_2022_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022employmenteducations_1uKW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_1uKW" ON public.hmis_2022_employment_educations USING btree ("PersonalID"); + + +-- +-- Name: hmis2022employmenteducations_2YQq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_2YQq" ON public.hmis_2022_employment_educations USING btree ("DateCreated"); + + +-- +-- Name: hmis2022employmenteducations_4vda; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022employmenteducations_4vda ON public.hmis_2022_employment_educations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022employmenteducations_6zwy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022employmenteducations_6zwy ON public.hmis_2022_employment_educations USING btree ("DateCreated"); + + +-- +-- Name: hmis2022employmenteducations_8RGj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_8RGj" ON public.hmis_2022_employment_educations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022employmenteducations_BpmW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_BpmW" ON public.hmis_2022_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmis2022employmenteducations_D2yI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_D2yI" ON public.hmis_2022_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmis2022employmenteducations_Dnln; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_Dnln" ON public.hmis_2022_employment_educations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022employmenteducations_Fj6e; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_Fj6e" ON public.hmis_2022_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmis2022employmenteducations_LanN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_LanN" ON public.hmis_2022_employment_educations USING btree ("DateCreated"); + + +-- +-- Name: hmis2022employmenteducations_TEaN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_TEaN" ON public.hmis_2022_employment_educations USING btree ("DateCreated"); + + +-- +-- Name: hmis2022employmenteducations_VQ2U; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_VQ2U" ON public.hmis_2022_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmis2022employmenteducations_a5yU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_a5yU" ON public.hmis_2022_employment_educations USING btree ("PersonalID"); + + +-- +-- Name: hmis2022employmenteducations_dg9r; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022employmenteducations_dg9r ON public.hmis_2022_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmis2022employmenteducations_e8J8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_e8J8" ON public.hmis_2022_employment_educations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022employmenteducations_g4D9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_g4D9" ON public.hmis_2022_employment_educations USING btree ("PersonalID"); + + +-- +-- Name: hmis2022employmenteducations_kcTC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_kcTC" ON public.hmis_2022_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmis2022employmenteducations_m0aK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_m0aK" ON public.hmis_2022_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022employmenteducations_nQzF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_nQzF" ON public.hmis_2022_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022employmenteducations_njVL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_njVL" ON public.hmis_2022_employment_educations USING btree ("PersonalID"); + + +-- +-- Name: hmis2022employmenteducations_piba; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022employmenteducations_piba ON public.hmis_2022_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022employmenteducations_rUdW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_rUdW" ON public.hmis_2022_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmis2022employmenteducations_telE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_telE" ON public.hmis_2022_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmis2022employmenteducations_vFzw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022employmenteducations_vFzw" ON public.hmis_2022_employment_educations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022enrollmentcocs_00w1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollmentcocs_00w1 ON public.hmis_2022_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022enrollmentcocs_0w9c; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollmentcocs_0w9c ON public.hmis_2022_enrollment_cocs USING btree ("PersonalID"); + + +-- +-- Name: hmis2022enrollmentcocs_1cHr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_1cHr" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022enrollmentcocs_4x91; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollmentcocs_4x91 ON public.hmis_2022_enrollment_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis2022enrollmentcocs_5zjF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_5zjF" ON public.hmis_2022_enrollment_cocs USING btree ("PersonalID"); + + +-- +-- Name: hmis2022enrollmentcocs_6tJM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_6tJM" ON public.hmis_2022_enrollment_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis2022enrollmentcocs_AwFj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_AwFj" ON public.hmis_2022_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022enrollmentcocs_BpYl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_BpYl" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); + + +-- +-- Name: hmis2022enrollmentcocs_CPqr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_CPqr" ON public.hmis_2022_enrollment_cocs USING btree ("PersonalID"); + + +-- +-- Name: hmis2022enrollmentcocs_DDdl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_DDdl" ON public.hmis_2022_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022enrollmentcocs_DPzf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_DPzf" ON public.hmis_2022_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmis2022enrollmentcocs_DssF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_DssF" ON public.hmis_2022_enrollment_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis2022enrollmentcocs_ErL4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_ErL4" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); + + +-- +-- Name: hmis2022enrollmentcocs_Gu7W; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_Gu7W" ON public.hmis_2022_enrollment_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022enrollmentcocs_IMgq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_IMgq" ON public.hmis_2022_enrollment_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022enrollmentcocs_JPql; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_JPql" ON public.hmis_2022_enrollment_cocs USING btree ("PersonalID"); + + +-- +-- Name: hmis2022enrollmentcocs_JhHT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_JhHT" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022enrollmentcocs_NW2c; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_NW2c" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); + + +-- +-- Name: hmis2022enrollmentcocs_Oj66; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_Oj66" ON public.hmis_2022_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022enrollmentcocs_RDDm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_RDDm" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022enrollmentcocs_SLq3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_SLq3" ON public.hmis_2022_enrollment_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis2022enrollmentcocs_TBBA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_TBBA" ON public.hmis_2022_enrollment_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis2022enrollmentcocs_XK0J; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_XK0J" ON public.hmis_2022_enrollment_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022enrollmentcocs_Xq7j; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_Xq7j" ON public.hmis_2022_enrollment_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022enrollmentcocs_bKTB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_bKTB" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); + + +-- +-- Name: hmis2022enrollmentcocs_ce8t; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollmentcocs_ce8t ON public.hmis_2022_enrollment_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022enrollmentcocs_d0Ax; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_d0Ax" ON public.hmis_2022_enrollment_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022enrollmentcocs_e294; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollmentcocs_e294 ON public.hmis_2022_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmis2022enrollmentcocs_e6x1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollmentcocs_e6x1 ON public.hmis_2022_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmis2022enrollmentcocs_emfv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollmentcocs_emfv ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022enrollmentcocs_goeT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_goeT" ON public.hmis_2022_enrollment_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022enrollmentcocs_gtAC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_gtAC" ON public.hmis_2022_enrollment_cocs USING btree ("PersonalID"); + + +-- +-- Name: hmis2022enrollmentcocs_kTmm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_kTmm" ON public.hmis_2022_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmis2022enrollmentcocs_ltSs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_ltSs" ON public.hmis_2022_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmis2022enrollmentcocs_nLeg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_nLeg" ON public.hmis_2022_enrollment_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022enrollmentcocs_ptxT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_ptxT" ON public.hmis_2022_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022enrollmentcocs_qb26; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollmentcocs_qb26 ON public.hmis_2022_enrollment_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022enrollmentcocs_rftp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollmentcocs_rftp ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022enrollmentcocs_tZAm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_tZAm" ON public.hmis_2022_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmis2022enrollmentcocs_vL8z; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_vL8z" ON public.hmis_2022_enrollment_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022enrollmentcocs_yNaH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollmentcocs_yNaH" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); + + +-- +-- Name: hmis2022enrollments_0jfu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_0jfu ON public.hmis_2022_enrollments_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022enrollments_20lu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_20lu ON public.hmis_2022_enrollments_saved USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis2022enrollments_2j3v; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_2j3v ON public.hmis_2022_enrollments_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022enrollments_37TX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_37TX" ON public.hmis_2022_enrollments_saved USING btree ("LivingSituation"); + + +-- +-- Name: hmis2022enrollments_3RmC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_3RmC" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022enrollments_3Y3B; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_3Y3B" ON public.hmis_2022_enrollments_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022enrollments_3qUb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_3qUb" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis2022enrollments_3vdn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_3vdn ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis2022enrollments_4AvS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_4AvS" ON public.hmis_2022_enrollments_saved USING btree ("LivingSituation"); + + +-- +-- Name: hmis2022enrollments_4EjQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_4EjQ" ON public.hmis_2022_enrollments_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022enrollments_4KrJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_4KrJ" ON public.hmis_2022_enrollments_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022enrollments_5mgY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_5mgY" ON public.hmis_2022_enrollments_saved USING btree ("HouseholdID"); + + +-- +-- Name: hmis2022enrollments_6aWK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_6aWK" ON public.hmis_2022_enrollments_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022enrollments_6d0L; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_6d0L" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2022enrollments_7LRJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_7LRJ" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID"); + + +-- +-- Name: hmis2022enrollments_7SGc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_7SGc" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis2022enrollments_7WTk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_7WTk" ON public.hmis_2022_enrollments_saved USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis2022enrollments_8n5u; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_8n5u ON public.hmis_2022_enrollments_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022enrollments_8p3b; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_8p3b ON public.hmis_2022_enrollments_saved USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis2022enrollments_9HQ9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_9HQ9" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis2022enrollments_AUyr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_AUyr" ON public.hmis_2022_enrollments_saved USING btree ("EntryDate"); + + +-- +-- Name: hmis2022enrollments_B6MA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_B6MA" ON public.hmis_2022_enrollments_saved USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis2022enrollments_BDpp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_BDpp" ON public.hmis_2022_enrollments_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022enrollments_BTri; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_BTri" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis2022enrollments_ClYG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_ClYG" ON public.hmis_2022_enrollments_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022enrollments_DCEF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_DCEF" ON public.hmis_2022_enrollments_saved USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis2022enrollments_Dclz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_Dclz" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2022enrollments_EC9L; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_EC9L" ON public.hmis_2022_enrollments_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022enrollments_ELY8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_ELY8" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis2022enrollments_F7ci; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_F7ci" ON public.hmis_2022_enrollments_saved USING btree ("EntryDate"); + + +-- +-- Name: hmis2022enrollments_G9GI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_G9GI" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis2022enrollments_HQ8T; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_HQ8T" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022enrollments_HTOM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_HTOM" ON public.hmis_2022_enrollments_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022enrollments_HULG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_HULG" ON public.hmis_2022_enrollments_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022enrollments_J8cl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_J8cl" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID"); + + +-- +-- Name: hmis2022enrollments_LElu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_LElu" ON public.hmis_2022_enrollments_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022enrollments_LiYM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_LiYM" ON public.hmis_2022_enrollments_saved USING btree ("HouseholdID"); + + +-- +-- Name: hmis2022enrollments_Mjsu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_Mjsu" ON public.hmis_2022_enrollments_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022enrollments_Mz76; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_Mz76" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2022enrollments_MzHk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_MzHk" ON public.hmis_2022_enrollments_saved USING btree ("LivingSituation"); + + +-- +-- Name: hmis2022enrollments_N8KZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_N8KZ" ON public.hmis_2022_enrollments_saved USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis2022enrollments_NCDd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_NCDd" ON public.hmis_2022_enrollments_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022enrollments_NsV4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_NsV4" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis2022enrollments_PFBl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_PFBl" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis2022enrollments_QC4k; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_QC4k" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022enrollments_SjW2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_SjW2" ON public.hmis_2022_enrollments_saved USING btree ("HouseholdID"); + + +-- +-- Name: hmis2022enrollments_SvKn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_SvKn" ON public.hmis_2022_enrollments_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022enrollments_SyID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_SyID" ON public.hmis_2022_enrollments_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022enrollments_TMSu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_TMSu" ON public.hmis_2022_enrollments_saved USING btree ("EntryDate"); + + +-- +-- Name: hmis2022enrollments_TSRY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_TSRY" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis2022enrollments_V3qz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_V3qz" ON public.hmis_2022_enrollments_saved USING btree ("HouseholdID"); + + +-- +-- Name: hmis2022enrollments_Xexy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_Xexy" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis2022enrollments_aTDs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_aTDs" ON public.hmis_2022_enrollments_saved USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis2022enrollments_bIh3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_bIh3" ON public.hmis_2022_enrollments_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022enrollments_bbpQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_bbpQ" ON public.hmis_2022_enrollments_saved USING btree ("EntryDate"); + + +-- +-- Name: hmis2022enrollments_c5yw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_c5yw ON public.hmis_2022_enrollments_saved USING btree ("EntryDate"); + + +-- +-- Name: hmis2022enrollments_dl2L; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_dl2L" ON public.hmis_2022_enrollments_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022enrollments_eyPk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_eyPk" ON public.hmis_2022_enrollments_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022enrollments_gSa1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_gSa1" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID"); + + +-- +-- Name: hmis2022enrollments_geFN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_geFN" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022enrollments_gz2q; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_gz2q ON public.hmis_2022_enrollments_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022enrollments_hDxL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_hDxL" ON public.hmis_2022_enrollments_saved USING btree ("LivingSituation"); + + +-- +-- Name: hmis2022enrollments_hHFu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_hHFu" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis2022enrollments_icgG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_icgG" ON public.hmis_2022_enrollments_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022enrollments_inZc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_inZc" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis2022enrollments_k0nD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_k0nD" ON public.hmis_2022_enrollments_saved USING btree ("HouseholdID"); + + +-- +-- Name: hmis2022enrollments_mM9g; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_mM9g" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis2022enrollments_nrVw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_nrVw" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID"); + + +-- +-- Name: hmis2022enrollments_oD3L; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_oD3L" ON public.hmis_2022_enrollments_saved USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis2022enrollments_oO3x; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_oO3x" ON public.hmis_2022_enrollments_saved USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis2022enrollments_oSGW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_oSGW" ON public.hmis_2022_enrollments_saved USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis2022enrollments_pPK5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_pPK5" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID"); + + +-- +-- Name: hmis2022enrollments_pWJS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_pWJS" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2022enrollments_q5xg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_q5xg ON public.hmis_2022_enrollments_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022enrollments_qHpP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_qHpP" ON public.hmis_2022_enrollments_saved USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis2022enrollments_rcM8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_rcM8" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022enrollments_seem; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_seem ON public.hmis_2022_enrollments_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022enrollments_t4ln; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022enrollments_t4ln ON public.hmis_2022_enrollments_saved USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis2022enrollments_tVoY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_tVoY" ON public.hmis_2022_enrollments_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022enrollments_uaMe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_uaMe" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2022enrollments_vRaD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_vRaD" ON public.hmis_2022_enrollments_saved USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis2022enrollments_y3F2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_y3F2" ON public.hmis_2022_enrollments_saved USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis2022enrollments_ynuX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_ynuX" ON public.hmis_2022_enrollments_saved USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis2022enrollments_zmTQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_zmTQ" ON public.hmis_2022_enrollments_saved USING btree ("LivingSituation"); + + +-- +-- Name: hmis2022enrollments_zo2X; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022enrollments_zo2X" ON public.hmis_2022_enrollments_saved USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis2022events_2XYp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_2XYp" ON public.hmis_2022_events USING btree ("EventDate"); + + +-- +-- Name: hmis2022events_3GeP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_3GeP" ON public.hmis_2022_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022events_Evth; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_Evth" ON public.hmis_2022_events USING btree ("ExportID"); + + +-- +-- Name: hmis2022events_EwgP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_EwgP" ON public.hmis_2022_events USING btree ("EventDate"); + + +-- +-- Name: hmis2022events_Exri; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_Exri" ON public.hmis_2022_events USING btree ("EventID"); + + +-- +-- Name: hmis2022events_GNsx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_GNsx" ON public.hmis_2022_events USING btree ("EventDate"); + + +-- +-- Name: hmis2022events_HaIL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_HaIL" ON public.hmis_2022_events USING btree ("ExportID"); + + +-- +-- Name: hmis2022events_JK9C; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_JK9C" ON public.hmis_2022_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022events_LCxa; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_LCxa" ON public.hmis_2022_events USING btree ("PersonalID"); + + +-- +-- Name: hmis2022events_LXwo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_LXwo" ON public.hmis_2022_events USING btree ("EventDate"); + + +-- +-- Name: hmis2022events_OBnR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_OBnR" ON public.hmis_2022_events USING btree ("ExportID"); + + +-- +-- Name: hmis2022events_SLKf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_SLKf" ON public.hmis_2022_events USING btree ("EventID"); + + +-- +-- Name: hmis2022events_T5lV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_T5lV" ON public.hmis_2022_events USING btree ("PersonalID"); + + +-- +-- Name: hmis2022events_TcFv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_TcFv" ON public.hmis_2022_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022events_Uk3l; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_Uk3l" ON public.hmis_2022_events USING btree ("ExportID"); + + +-- +-- Name: hmis2022events_ZWfu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_ZWfu" ON public.hmis_2022_events USING btree ("PersonalID"); + + +-- +-- Name: hmis2022events_fsBr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_fsBr" ON public.hmis_2022_events USING btree ("ExportID"); + + +-- +-- Name: hmis2022events_jTpi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_jTpi" ON public.hmis_2022_events USING btree ("PersonalID"); + + +-- +-- Name: hmis2022events_jZh3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_jZh3" ON public.hmis_2022_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022events_lU5Z; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_lU5Z" ON public.hmis_2022_events USING btree ("PersonalID"); + + +-- +-- Name: hmis2022events_oHnT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_oHnT" ON public.hmis_2022_events USING btree ("EventID"); + + +-- +-- Name: hmis2022events_pGIP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_pGIP" ON public.hmis_2022_events USING btree ("EventID"); + + +-- +-- Name: hmis2022events_pf5U; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_pf5U" ON public.hmis_2022_events USING btree ("EventID"); + + +-- +-- Name: hmis2022events_uIUg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_uIUg" ON public.hmis_2022_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022events_unUI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022events_unUI" ON public.hmis_2022_events USING btree ("EventDate"); + + +-- +-- Name: hmis2022exits_0mCE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_0mCE" ON public.hmis_2022_exits_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022exits_2fAC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_2fAC" ON public.hmis_2022_exits_saved USING btree ("ExitDate"); + + +-- +-- Name: hmis2022exits_3ric; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022exits_3ric ON public.hmis_2022_exits_saved USING btree ("ExitID"); + + +-- +-- Name: hmis2022exits_4AWu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_4AWu" ON public.hmis_2022_exits_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022exits_4FaP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_4FaP" ON public.hmis_2022_exits_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022exits_9U2x; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_9U2x" ON public.hmis_2022_exits_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022exits_Af3i; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_Af3i" ON public.hmis_2022_exits_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022exits_AuYr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_AuYr" ON public.hmis_2022_exits_saved USING btree ("ExitDate"); + + +-- +-- Name: hmis2022exits_Cl49; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_Cl49" ON public.hmis_2022_exits_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022exits_E5ii; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_E5ii" ON public.hmis_2022_exits_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022exits_EVIM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_EVIM" ON public.hmis_2022_exits_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022exits_IuDI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_IuDI" ON public.hmis_2022_exits_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022exits_KKNd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_KKNd" ON public.hmis_2022_exits_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022exits_L2iM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_L2iM" ON public.hmis_2022_exits_saved USING btree ("ExitDate"); + + +-- +-- Name: hmis2022exits_LBAD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_LBAD" ON public.hmis_2022_exits_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022exits_MqXv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_MqXv" ON public.hmis_2022_exits_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022exits_Pdxz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_Pdxz" ON public.hmis_2022_exits_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022exits_R91g; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_R91g" ON public.hmis_2022_exits_saved USING btree ("ExitDate"); + + +-- +-- Name: hmis2022exits_Rbol; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_Rbol" ON public.hmis_2022_exits_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022exits_Tldv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_Tldv" ON public.hmis_2022_exits_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022exits_VVBK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_VVBK" ON public.hmis_2022_exits_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022exits_XAoJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_XAoJ" ON public.hmis_2022_exits_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022exits_ZNEH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_ZNEH" ON public.hmis_2022_exits_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022exits_cyno; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022exits_cyno ON public.hmis_2022_exits_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022exits_d4hu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022exits_d4hu ON public.hmis_2022_exits_saved USING btree ("ExitDate"); + + +-- +-- Name: hmis2022exits_dFpc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_dFpc" ON public.hmis_2022_exits_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022exits_fTOL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_fTOL" ON public.hmis_2022_exits_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022exits_ksT2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_ksT2" ON public.hmis_2022_exits_saved USING btree ("ExitID"); + + +-- +-- Name: hmis2022exits_lzvt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022exits_lzvt ON public.hmis_2022_exits_saved USING btree ("ExitID"); + + +-- +-- Name: hmis2022exits_msZd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_msZd" ON public.hmis_2022_exits_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022exits_noAP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_noAP" ON public.hmis_2022_exits_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022exits_oWLc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_oWLc" ON public.hmis_2022_exits_saved USING btree ("ExitID"); + + +-- +-- Name: hmis2022exits_p6Jb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_p6Jb" ON public.hmis_2022_exits_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022exits_r50N; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_r50N" ON public.hmis_2022_exits_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022exits_sMXZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_sMXZ" ON public.hmis_2022_exits_saved USING btree ("ExitID"); + + +-- +-- Name: hmis2022exits_ssZQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_ssZQ" ON public.hmis_2022_exits_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022exits_uttT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_uttT" ON public.hmis_2022_exits_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022exits_vL1k; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exits_vL1k" ON public.hmis_2022_exits_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022exits_vktj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022exits_vktj ON public.hmis_2022_exits_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022exits_x3r7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022exits_x3r7 ON public.hmis_2022_exits_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022exports_0o3Y; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exports_0o3Y" ON public.hmis_2022_exports USING btree ("ExportID"); + + +-- +-- Name: hmis2022exports_Vb9V; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exports_Vb9V" ON public.hmis_2022_exports USING btree ("ExportID"); + + +-- +-- Name: hmis2022exports_kbyY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exports_kbyY" ON public.hmis_2022_exports USING btree ("ExportID"); + + +-- +-- Name: hmis2022exports_r5Vj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exports_r5Vj" ON public.hmis_2022_exports USING btree ("ExportID"); + + +-- +-- Name: hmis2022exports_vVa8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022exports_vVa8" ON public.hmis_2022_exports USING btree ("ExportID"); + + +-- +-- Name: hmis2022funders_26bc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022funders_26bc ON public.hmis_2022_funders USING btree ("ExportID"); + + +-- +-- Name: hmis2022funders_46DZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_46DZ" ON public.hmis_2022_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022funders_4uvj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022funders_4uvj ON public.hmis_2022_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022funders_ABi2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_ABi2" ON public.hmis_2022_funders USING btree ("FunderID"); + + +-- +-- Name: hmis2022funders_CM44; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_CM44" ON public.hmis_2022_funders USING btree ("DateCreated"); + + +-- +-- Name: hmis2022funders_DmBq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_DmBq" ON public.hmis_2022_funders USING btree ("DateCreated"); + + +-- +-- Name: hmis2022funders_La2t; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_La2t" ON public.hmis_2022_funders USING btree ("ExportID"); + + +-- +-- Name: hmis2022funders_OTDJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_OTDJ" ON public.hmis_2022_funders USING btree ("ExportID"); + + +-- +-- Name: hmis2022funders_SshV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_SshV" ON public.hmis_2022_funders USING btree ("ExportID"); + + +-- +-- Name: hmis2022funders_ahFB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_ahFB" ON public.hmis_2022_funders USING btree ("FunderID"); + + +-- +-- Name: hmis2022funders_aqqv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022funders_aqqv ON public.hmis_2022_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022funders_e42h; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022funders_e42h ON public.hmis_2022_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022funders_hjB3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_hjB3" ON public.hmis_2022_funders USING btree ("DateCreated"); + + +-- +-- Name: hmis2022funders_ml9I; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_ml9I" ON public.hmis_2022_funders USING btree ("DateCreated"); + + +-- +-- Name: hmis2022funders_p7Md; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_p7Md" ON public.hmis_2022_funders USING btree ("ExportID"); + + +-- +-- Name: hmis2022funders_pYDL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_pYDL" ON public.hmis_2022_funders USING btree ("FunderID"); + + +-- +-- Name: hmis2022funders_rbeh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022funders_rbeh ON public.hmis_2022_funders USING btree ("DateCreated"); + + +-- +-- Name: hmis2022funders_tO3b; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_tO3b" ON public.hmis_2022_funders USING btree ("FunderID"); + + +-- +-- Name: hmis2022funders_wrmf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022funders_wrmf ON public.hmis_2022_funders USING btree ("FunderID"); + + +-- +-- Name: hmis2022funders_zCs4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022funders_zCs4" ON public.hmis_2022_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022healthanddvs_39pa; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022healthanddvs_39pa ON public.hmis_2022_health_and_dvs USING btree ("PersonalID"); + + +-- +-- Name: hmis2022healthanddvs_81Ip; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_81Ip" ON public.hmis_2022_health_and_dvs USING btree ("PersonalID"); + + +-- +-- Name: hmis2022healthanddvs_9xtv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022healthanddvs_9xtv ON public.hmis_2022_health_and_dvs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022healthanddvs_B3cK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_B3cK" ON public.hmis_2022_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmis2022healthanddvs_C3P0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_C3P0" ON public.hmis_2022_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmis2022healthanddvs_CqjD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_CqjD" ON public.hmis_2022_health_and_dvs USING btree ("PersonalID"); + + +-- +-- Name: hmis2022healthanddvs_EmeI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_EmeI" ON public.hmis_2022_health_and_dvs USING btree ("PersonalID"); + + +-- +-- Name: hmis2022healthanddvs_GwLc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_GwLc" ON public.hmis_2022_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022healthanddvs_IGDp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_IGDp" ON public.hmis_2022_health_and_dvs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022healthanddvs_J2k9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_J2k9" ON public.hmis_2022_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022healthanddvs_JnNy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_JnNy" ON public.hmis_2022_health_and_dvs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022healthanddvs_L20r; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_L20r" ON public.hmis_2022_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmis2022healthanddvs_LYST; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_LYST" ON public.hmis_2022_health_and_dvs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022healthanddvs_MM9C; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_MM9C" ON public.hmis_2022_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022healthanddvs_PTMk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_PTMk" ON public.hmis_2022_health_and_dvs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022healthanddvs_RZLE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_RZLE" ON public.hmis_2022_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmis2022healthanddvs_Vitu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_Vitu" ON public.hmis_2022_health_and_dvs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022healthanddvs_Zsjv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_Zsjv" ON public.hmis_2022_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmis2022healthanddvs_bSYK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_bSYK" ON public.hmis_2022_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmis2022healthanddvs_d4Mp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_d4Mp" ON public.hmis_2022_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmis2022healthanddvs_eFRE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_eFRE" ON public.hmis_2022_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmis2022healthanddvs_jsVe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_jsVe" ON public.hmis_2022_health_and_dvs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022healthanddvs_kG26; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_kG26" ON public.hmis_2022_health_and_dvs USING btree ("PersonalID"); + + +-- +-- Name: hmis2022healthanddvs_lrk9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022healthanddvs_lrk9 ON public.hmis_2022_health_and_dvs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022healthanddvs_mxKc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_mxKc" ON public.hmis_2022_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmis2022healthanddvs_nCmK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_nCmK" ON public.hmis_2022_health_and_dvs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022healthanddvs_oE33; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_oE33" ON public.hmis_2022_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022healthanddvs_qQGt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_qQGt" ON public.hmis_2022_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmis2022healthanddvs_rKKo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_rKKo" ON public.hmis_2022_health_and_dvs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022healthanddvs_sSdO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022healthanddvs_sSdO" ON public.hmis_2022_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022incomebenefits_0x7T; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_0x7T" ON public.hmis_2022_income_benefits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022incomebenefits_1iTb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_1iTb" ON public.hmis_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmis2022incomebenefits_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022incomebenefits_634d ON public.hmis_2022_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmis2022incomebenefits_84A2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_84A2" ON public.hmis_2022_income_benefits USING btree ("DateCreated"); + + +-- +-- Name: hmis2022incomebenefits_8YX1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_8YX1" ON public.hmis_2022_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmis2022incomebenefits_9VUZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_9VUZ" ON public.hmis_2022_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmis2022incomebenefits_AOIn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_AOIn" ON public.hmis_2022_income_benefits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022incomebenefits_AhcR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_AhcR" ON public.hmis_2022_income_benefits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022incomebenefits_CqV2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_CqV2" ON public.hmis_2022_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmis2022incomebenefits_DEc8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_DEc8" ON public.hmis_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmis2022incomebenefits_DHfs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_DHfs" ON public.hmis_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmis2022incomebenefits_FKM8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_FKM8" ON public.hmis_2022_income_benefits USING btree ("InformationDate"); + + +-- +-- Name: hmis2022incomebenefits_G13K; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_G13K" ON public.hmis_2022_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmis2022incomebenefits_GZEz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_GZEz" ON public.hmis_2022_income_benefits USING btree ("InformationDate"); + + +-- +-- Name: hmis2022incomebenefits_GskQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_GskQ" ON public.hmis_2022_income_benefits USING btree ("PersonalID"); + + +-- +-- Name: hmis2022incomebenefits_HA2R; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_HA2R" ON public.hmis_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmis2022incomebenefits_Hrr8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_Hrr8" ON public.hmis_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmis2022incomebenefits_JHkd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_JHkd" ON public.hmis_2022_income_benefits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022incomebenefits_JHq0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_JHq0" ON public.hmis_2022_income_benefits USING btree ("DateCreated"); + + +-- +-- Name: hmis2022incomebenefits_JwMD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_JwMD" ON public.hmis_2022_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022incomebenefits_JzOv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_JzOv" ON public.hmis_2022_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmis2022incomebenefits_PI60; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_PI60" ON public.hmis_2022_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmis2022incomebenefits_Sy6R; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_Sy6R" ON public.hmis_2022_income_benefits USING btree ("DateCreated"); + + +-- +-- Name: hmis2022incomebenefits_TMFo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_TMFo" ON public.hmis_2022_income_benefits USING btree ("DateCreated"); + + +-- +-- Name: hmis2022incomebenefits_UERs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_UERs" ON public.hmis_2022_income_benefits USING btree ("DateCreated"); + + +-- +-- Name: hmis2022incomebenefits_Vn6L; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_Vn6L" ON public.hmis_2022_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022incomebenefits_VnlT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_VnlT" ON public.hmis_2022_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmis2022incomebenefits_Zgub; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_Zgub" ON public.hmis_2022_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022incomebenefits_ae8d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022incomebenefits_ae8d ON public.hmis_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmis2022incomebenefits_azJ6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_azJ6" ON public.hmis_2022_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmis2022incomebenefits_bPyx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_bPyx" ON public.hmis_2022_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmis2022incomebenefits_ciWw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_ciWw" ON public.hmis_2022_income_benefits USING btree ("PersonalID"); + + +-- +-- Name: hmis2022incomebenefits_dRwA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_dRwA" ON public.hmis_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmis2022incomebenefits_ek1a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022incomebenefits_ek1a ON public.hmis_2022_income_benefits USING btree ("InformationDate"); + + +-- +-- Name: hmis2022incomebenefits_fD7y; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_fD7y" ON public.hmis_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmis2022incomebenefits_haCV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_haCV" ON public.hmis_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmis2022incomebenefits_is5G; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_is5G" ON public.hmis_2022_income_benefits USING btree ("PersonalID"); + + +-- +-- Name: hmis2022incomebenefits_lvsq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022incomebenefits_lvsq ON public.hmis_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmis2022incomebenefits_mvDZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_mvDZ" ON public.hmis_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmis2022incomebenefits_n8pL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_n8pL" ON public.hmis_2022_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmis2022incomebenefits_qGS5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_qGS5" ON public.hmis_2022_income_benefits USING btree ("PersonalID"); + + +-- +-- Name: hmis2022incomebenefits_sQmz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_sQmz" ON public.hmis_2022_income_benefits USING btree ("PersonalID"); + + +-- +-- Name: hmis2022incomebenefits_tIGj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_tIGj" ON public.hmis_2022_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022incomebenefits_ts9d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022incomebenefits_ts9d ON public.hmis_2022_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022incomebenefits_uWiD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022incomebenefits_uWiD" ON public.hmis_2022_income_benefits USING btree ("InformationDate"); + + +-- +-- Name: hmis2022incomebenefits_vzlx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022incomebenefits_vzlx ON public.hmis_2022_income_benefits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022incomebenefits_x9tg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022incomebenefits_x9tg ON public.hmis_2022_income_benefits USING btree ("InformationDate"); + + +-- +-- Name: hmis2022inventories_3i1a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022inventories_3i1a ON public.hmis_2022_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmis2022inventories_6jdY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_6jdY" ON public.hmis_2022_inventories USING btree ("ExportID"); + + +-- +-- Name: hmis2022inventories_8BiB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_8BiB" ON public.hmis_2022_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmis2022inventories_9529; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022inventories_9529 ON public.hmis_2022_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmis2022inventories_9WW6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_9WW6" ON public.hmis_2022_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmis2022inventories_AYgL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_AYgL" ON public.hmis_2022_inventories USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis2022inventories_Arn3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_Arn3" ON public.hmis_2022_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022inventories_C1bt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_C1bt" ON public.hmis_2022_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmis2022inventories_IstJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_IstJ" ON public.hmis_2022_inventories USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis2022inventories_KB9n; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_KB9n" ON public.hmis_2022_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmis2022inventories_LdMP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_LdMP" ON public.hmis_2022_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmis2022inventories_M3Ha; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_M3Ha" ON public.hmis_2022_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmis2022inventories_PsW9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_PsW9" ON public.hmis_2022_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022inventories_Qelf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_Qelf" ON public.hmis_2022_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmis2022inventories_SWlE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_SWlE" ON public.hmis_2022_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022inventories_bofb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022inventories_bofb ON public.hmis_2022_inventories USING btree ("ExportID"); + + +-- +-- Name: hmis2022inventories_cXOY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_cXOY" ON public.hmis_2022_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmis2022inventories_eLHl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_eLHl" ON public.hmis_2022_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022inventories_eXpd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_eXpd" ON public.hmis_2022_inventories USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis2022inventories_iP6i; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_iP6i" ON public.hmis_2022_inventories USING btree ("ExportID"); + + +-- +-- Name: hmis2022inventories_kR2K; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_kR2K" ON public.hmis_2022_inventories USING btree ("ExportID"); + + +-- +-- Name: hmis2022inventories_ovgT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_ovgT" ON public.hmis_2022_inventories USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis2022inventories_rLxn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_rLxn" ON public.hmis_2022_inventories USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis2022inventories_sm3T; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_sm3T" ON public.hmis_2022_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmis2022inventories_wLQS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_wLQS" ON public.hmis_2022_inventories USING btree ("ExportID"); + + +-- +-- Name: hmis2022inventories_yY0M; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022inventories_yY0M" ON public.hmis_2022_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022organizations_011s; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022organizations_011s ON public.hmis_2022_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmis2022organizations_LOzw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022organizations_LOzw" ON public.hmis_2022_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmis2022organizations_Psl1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022organizations_Psl1" ON public.hmis_2022_organizations USING btree ("ExportID"); + + +-- +-- Name: hmis2022organizations_TLP5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022organizations_TLP5" ON public.hmis_2022_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmis2022organizations_TdT2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022organizations_TdT2" ON public.hmis_2022_organizations USING btree ("ExportID"); + + +-- +-- Name: hmis2022organizations_UwWr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022organizations_UwWr" ON public.hmis_2022_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmis2022organizations_XsGg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022organizations_XsGg" ON public.hmis_2022_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmis2022organizations_mjhZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022organizations_mjhZ" ON public.hmis_2022_organizations USING btree ("ExportID"); + + +-- +-- Name: hmis2022organizations_rt9t; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022organizations_rt9t ON public.hmis_2022_organizations USING btree ("ExportID"); + + +-- +-- Name: hmis2022organizations_sCgG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022organizations_sCgG" ON public.hmis_2022_organizations USING btree ("ExportID"); + + +-- +-- Name: hmis2022projectcocs_0Now; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_0Now" ON public.hmis_2022_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmis2022projectcocs_1ike; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022projectcocs_1ike ON public.hmis_2022_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022projectcocs_3ED0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_3ED0" ON public.hmis_2022_project_cocs USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis2022projectcocs_3zNV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_3zNV" ON public.hmis_2022_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmis2022projectcocs_4M5C; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_4M5C" ON public.hmis_2022_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmis2022projectcocs_4qjb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022projectcocs_4qjb ON public.hmis_2022_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis2022projectcocs_5LwF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_5LwF" ON public.hmis_2022_project_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022projectcocs_5tqd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022projectcocs_5tqd ON public.hmis_2022_project_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022projectcocs_6Ygh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_6Ygh" ON public.hmis_2022_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis2022projectcocs_9Yoi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_9Yoi" ON public.hmis_2022_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis2022projectcocs_CcFO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_CcFO" ON public.hmis_2022_project_cocs USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis2022projectcocs_Mi4u; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_Mi4u" ON public.hmis_2022_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022projectcocs_PKtl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_PKtl" ON public.hmis_2022_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmis2022projectcocs_TNSX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_TNSX" ON public.hmis_2022_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis2022projectcocs_Vz5V; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_Vz5V" ON public.hmis_2022_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis2022projectcocs_X9kf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_X9kf" ON public.hmis_2022_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022projectcocs_XYpN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_XYpN" ON public.hmis_2022_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022projectcocs_b6rB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_b6rB" ON public.hmis_2022_project_cocs USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis2022projectcocs_ef8C; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_ef8C" ON public.hmis_2022_project_cocs USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis2022projectcocs_kX0x; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_kX0x" ON public.hmis_2022_project_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022projectcocs_lrLY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_lrLY" ON public.hmis_2022_project_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022projectcocs_lty3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022projectcocs_lty3 ON public.hmis_2022_project_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis2022projectcocs_oD4E; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_oD4E" ON public.hmis_2022_project_cocs USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis2022projectcocs_sQfd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_sQfd" ON public.hmis_2022_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmis2022projectcocs_yEto; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projectcocs_yEto" ON public.hmis_2022_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022projects_2k9I; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_2k9I" ON public.hmis_2022_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022projects_784w; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022projects_784w ON public.hmis_2022_projects USING btree ("ProjectID"); + + +-- +-- Name: hmis2022projects_9qGh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_9qGh" ON public.hmis_2022_projects USING btree ("ProjectID"); + + +-- +-- Name: hmis2022projects_ADJi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_ADJi" ON public.hmis_2022_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022projects_AnNo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_AnNo" ON public.hmis_2022_projects USING btree ("ExportID"); + + +-- +-- Name: hmis2022projects_CYGj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_CYGj" ON public.hmis_2022_projects USING btree ("ProjectType"); + + +-- +-- Name: hmis2022projects_DMpm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_DMpm" ON public.hmis_2022_projects USING btree ("ProjectID"); + + +-- +-- Name: hmis2022projects_F8tr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_F8tr" ON public.hmis_2022_projects USING btree ("DateCreated"); + + +-- +-- Name: hmis2022projects_GF0h; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_GF0h" ON public.hmis_2022_projects USING btree ("DateCreated"); + + +-- +-- Name: hmis2022projects_GbSc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_GbSc" ON public.hmis_2022_projects USING btree ("ProjectType"); + + +-- +-- Name: hmis2022projects_Gu3H; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_Gu3H" ON public.hmis_2022_projects USING btree ("ExportID"); + + +-- +-- Name: hmis2022projects_JSje; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_JSje" ON public.hmis_2022_projects USING btree ("ProjectID"); + + +-- +-- Name: hmis2022projects_K13K; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_K13K" ON public.hmis_2022_projects USING btree ("DateCreated"); + + +-- +-- Name: hmis2022projects_OT6u; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_OT6u" ON public.hmis_2022_projects USING btree ("ExportID"); + + +-- +-- Name: hmis2022projects_Pwue; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_Pwue" ON public.hmis_2022_projects USING btree ("ProjectType"); + + +-- +-- Name: hmis2022projects_dQCA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_dQCA" ON public.hmis_2022_projects USING btree ("ExportID"); + + +-- +-- Name: hmis2022projects_eOC7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_eOC7" ON public.hmis_2022_projects USING btree ("DateCreated"); + + +-- +-- Name: hmis2022projects_eUQm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_eUQm" ON public.hmis_2022_projects USING btree ("ExportID"); + + +-- +-- Name: hmis2022projects_fcQR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_fcQR" ON public.hmis_2022_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022projects_own3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022projects_own3 ON public.hmis_2022_projects USING btree ("ProjectType"); + + +-- +-- Name: hmis2022projects_qlW7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_qlW7" ON public.hmis_2022_projects USING btree ("ProjectType"); + + +-- +-- Name: hmis2022projects_snHq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_snHq" ON public.hmis_2022_projects USING btree ("ProjectID"); + + +-- +-- Name: hmis2022projects_v8Tc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_v8Tc" ON public.hmis_2022_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022projects_vOpf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_vOpf" ON public.hmis_2022_projects USING btree ("DateCreated"); + + +-- +-- Name: hmis2022projects_wkvZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022projects_wkvZ" ON public.hmis_2022_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022services_1VpJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_1VpJ" ON public.hmis_2022_services_saved USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2022services_2Pi6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_2Pi6" ON public.hmis_2022_services_saved USING btree ("DateProvided"); + + +-- +-- Name: hmis2022services_3F1O; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_3F1O" ON public.hmis_2022_services_saved USING btree ("RecordType"); + + +-- +-- Name: hmis2022services_4Fxe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_4Fxe" ON public.hmis_2022_services_saved USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis2022services_4IqJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_4IqJ" ON public.hmis_2022_services_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022services_5tYV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_5tYV" ON public.hmis_2022_services_saved USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis2022services_68qY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_68qY" ON public.hmis_2022_services_saved USING btree ("RecordType"); + + +-- +-- Name: hmis2022services_7WwG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_7WwG" ON public.hmis_2022_services_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022services_80Zv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_80Zv" ON public.hmis_2022_services_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022services_8Bt5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_8Bt5" ON public.hmis_2022_services_saved USING btree ("DateProvided"); + + +-- +-- Name: hmis2022services_8XXq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_8XXq" ON public.hmis_2022_services_saved USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis2022services_8evh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022services_8evh ON public.hmis_2022_services_saved USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2022services_93jP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_93jP" ON public.hmis_2022_services_saved USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis2022services_9eiT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_9eiT" ON public.hmis_2022_services_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022services_BCCk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_BCCk" ON public.hmis_2022_services_saved USING btree ("DateProvided"); + + +-- +-- Name: hmis2022services_CsGp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_CsGp" ON public.hmis_2022_services_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022services_D1jd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_D1jd" ON public.hmis_2022_services_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022services_Ek53; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_Ek53" ON public.hmis_2022_services_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022services_FSBY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_FSBY" ON public.hmis_2022_services_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022services_FcVG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_FcVG" ON public.hmis_2022_services_saved USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis2022services_Fd80; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_Fd80" ON public.hmis_2022_services_saved USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis2022services_HEJX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_HEJX" ON public.hmis_2022_services_saved USING btree ("ServicesID"); + + +-- +-- Name: hmis2022services_JfRQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_JfRQ" ON public.hmis_2022_services_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022services_LA4D; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_LA4D" ON public.hmis_2022_services_saved USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis2022services_LTfU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_LTfU" ON public.hmis_2022_services_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022services_MR5w; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_MR5w" ON public.hmis_2022_services_saved USING btree ("ServicesID"); + + +-- +-- Name: hmis2022services_OuBj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_OuBj" ON public.hmis_2022_services_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022services_PgzK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_PgzK" ON public.hmis_2022_services_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022services_Q64k; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_Q64k" ON public.hmis_2022_services_saved USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis2022services_QM5r; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_QM5r" ON public.hmis_2022_services_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022services_QVc8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_QVc8" ON public.hmis_2022_services_saved USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis2022services_QsED; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_QsED" ON public.hmis_2022_services_saved USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis2022services_Qscs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_Qscs" ON public.hmis_2022_services_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022services_Qxai; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_Qxai" ON public.hmis_2022_services_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022services_R4Ug; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_R4Ug" ON public.hmis_2022_services_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022services_Rgn7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_Rgn7" ON public.hmis_2022_services_saved USING btree ("RecordType"); + + +-- +-- Name: hmis2022services_TR6P; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_TR6P" ON public.hmis_2022_services_saved USING btree ("ServicesID"); + + +-- +-- Name: hmis2022services_TeiS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_TeiS" ON public.hmis_2022_services_saved USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis2022services_UdjB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_UdjB" ON public.hmis_2022_services_saved USING btree ("ExportID"); + + +-- +-- Name: hmis2022services_UhG8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_UhG8" ON public.hmis_2022_services_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022services_WzIZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_WzIZ" ON public.hmis_2022_services_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022services_Xp4E; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_Xp4E" ON public.hmis_2022_services_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022services_Y9OY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_Y9OY" ON public.hmis_2022_services_saved USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis2022services_YlM0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_YlM0" ON public.hmis_2022_services_saved USING btree ("DateUpdated"); + + +-- +-- Name: hmis2022services_ZeNL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_ZeNL" ON public.hmis_2022_services_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022services_aZ1P; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_aZ1P" ON public.hmis_2022_services_saved USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis2022services_dkaE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_dkaE" ON public.hmis_2022_services_saved USING btree ("DateProvided"); + + +-- +-- Name: hmis2022services_evj6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022services_evj6 ON public.hmis_2022_services_saved USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis2022services_fS9c; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_fS9c" ON public.hmis_2022_services_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022services_gLfJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_gLfJ" ON public.hmis_2022_services_saved USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis2022services_hp6g; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022services_hp6g ON public.hmis_2022_services_saved USING btree ("RecordType"); + + +-- +-- Name: hmis2022services_i3Fn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_i3Fn" ON public.hmis_2022_services_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022services_jK9O; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_jK9O" ON public.hmis_2022_services_saved USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis2022services_jPzY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_jPzY" ON public.hmis_2022_services_saved USING btree ("PersonalID"); + + +-- +-- Name: hmis2022services_jnER; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_jnER" ON public.hmis_2022_services_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022services_kMoh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_kMoh" ON public.hmis_2022_services_saved USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2022services_l83Q; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_l83Q" ON public.hmis_2022_services_saved USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis2022services_n6xL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_n6xL" ON public.hmis_2022_services_saved USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2022services_pQHA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_pQHA" ON public.hmis_2022_services_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022services_rKMA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_rKMA" ON public.hmis_2022_services_saved USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022services_rwkF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_rwkF" ON public.hmis_2022_services_saved USING btree ("RecordType"); + + +-- +-- Name: hmis2022services_s8In; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_s8In" ON public.hmis_2022_services_saved USING btree ("DateProvided"); + + +-- +-- Name: hmis2022services_tYIb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_tYIb" ON public.hmis_2022_services_saved USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2022services_taNN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_taNN" ON public.hmis_2022_services_saved USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis2022services_u0nP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_u0nP" ON public.hmis_2022_services_saved USING btree ("ServicesID"); + + +-- +-- Name: hmis2022services_vfjk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022services_vfjk ON public.hmis_2022_services_saved USING btree ("DateDeleted"); + + +-- +-- Name: hmis2022services_vsKi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_vsKi" ON public.hmis_2022_services_saved USING btree ("ServicesID"); + + +-- +-- Name: hmis2022services_w0lh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022services_w0lh ON public.hmis_2022_services_saved USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis2022services_z7LQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_z7LQ" ON public.hmis_2022_services_saved USING btree ("DateCreated"); + + +-- +-- Name: hmis2022services_zbEp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022services_zbEp" ON public.hmis_2022_services_saved USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis2022users_57c7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022users_57c7 ON public.hmis_2022_users USING btree ("UserID"); + + +-- +-- Name: hmis2022users_6bs3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022users_6bs3 ON public.hmis_2022_users USING btree ("ExportID"); + + +-- +-- Name: hmis2022users_9tte; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022users_9tte ON public.hmis_2022_users USING btree ("UserID"); + + +-- +-- Name: hmis2022users_Bb37; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022users_Bb37" ON public.hmis_2022_users USING btree ("ExportID"); + + +-- +-- Name: hmis2022users_I56Y; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022users_I56Y" ON public.hmis_2022_users USING btree ("UserID"); + + +-- +-- Name: hmis2022users_L8dm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022users_L8dm" ON public.hmis_2022_users USING btree ("ExportID"); + + +-- +-- Name: hmis2022users_cfDN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022users_cfDN" ON public.hmis_2022_users USING btree ("UserID"); + + +-- +-- Name: hmis2022users_iRM6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022users_iRM6" ON public.hmis_2022_users USING btree ("ExportID"); + + +-- +-- Name: hmis2022users_ixDP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022users_ixDP" ON public.hmis_2022_users USING btree ("ExportID"); + + +-- +-- Name: hmis2022users_jC3x; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022users_jC3x" ON public.hmis_2022_users USING btree ("UserID"); + + +-- +-- Name: hmis2022users_n0RN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022users_n0RN" ON public.hmis_2022_users USING btree ("UserID"); + + +-- +-- Name: hmis2022youtheducationstatuses_2ePH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_2ePH" ON public.hmis_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); + + +-- +-- Name: hmis2022youtheducationstatuses_3nPV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_3nPV" ON public.hmis_2022_youth_education_statuses USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022youtheducationstatuses_5Amx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_5Amx" ON public.hmis_2022_youth_education_statuses USING btree ("PersonalID"); + + +-- +-- Name: hmis2022youtheducationstatuses_6acJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_6acJ" ON public.hmis_2022_youth_education_statuses USING btree ("ExportID"); + + +-- +-- Name: hmis2022youtheducationstatuses_9lDW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_9lDW" ON public.hmis_2022_youth_education_statuses USING btree ("ExportID"); + + +-- +-- Name: hmis2022youtheducationstatuses_CPRH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_CPRH" ON public.hmis_2022_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: hmis2022youtheducationstatuses_Cl2V; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_Cl2V" ON public.hmis_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); + + +-- +-- Name: hmis2022youtheducationstatuses_E26n; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_E26n" ON public.hmis_2022_youth_education_statuses USING btree ("ExportID"); + + +-- +-- Name: hmis2022youtheducationstatuses_EioI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_EioI" ON public.hmis_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); + + +-- +-- Name: hmis2022youtheducationstatuses_GqWc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_GqWc" ON public.hmis_2022_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: hmis2022youtheducationstatuses_Jb6k; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_Jb6k" ON public.hmis_2022_youth_education_statuses USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022youtheducationstatuses_KWZP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_KWZP" ON public.hmis_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); + + +-- +-- Name: hmis2022youtheducationstatuses_MXhY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_MXhY" ON public.hmis_2022_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: hmis2022youtheducationstatuses_V5KQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_V5KQ" ON public.hmis_2022_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: hmis2022youtheducationstatuses_Xvwe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_Xvwe" ON public.hmis_2022_youth_education_statuses USING btree ("PersonalID"); + + +-- +-- Name: hmis2022youtheducationstatuses_bmwi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022youtheducationstatuses_bmwi ON public.hmis_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); + + +-- +-- Name: hmis2022youtheducationstatuses_fabe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022youtheducationstatuses_fabe ON public.hmis_2022_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: hmis2022youtheducationstatuses_oUUw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_oUUw" ON public.hmis_2022_youth_education_statuses USING btree ("ExportID"); + + +-- +-- Name: hmis2022youtheducationstatuses_pIqT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_pIqT" ON public.hmis_2022_youth_education_statuses USING btree ("PersonalID"); + + +-- +-- Name: hmis2022youtheducationstatuses_qY17; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_qY17" ON public.hmis_2022_youth_education_statuses USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022youtheducationstatuses_r4i7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2022youtheducationstatuses_r4i7 ON public.hmis_2022_youth_education_statuses USING btree ("PersonalID"); + + +-- +-- Name: hmis2022youtheducationstatuses_rWnz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_rWnz" ON public.hmis_2022_youth_education_statuses USING btree ("ExportID"); + + +-- +-- Name: hmis2022youtheducationstatuses_tADn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_tADn" ON public.hmis_2022_youth_education_statuses USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022youtheducationstatuses_u4Ae; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_u4Ae" ON public.hmis_2022_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: hmis2022youtheducationstatuses_xQUJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_xQUJ" ON public.hmis_2022_youth_education_statuses USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2022youtheducationstatuses_yBQz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis2022youtheducationstatuses_yBQz" ON public.hmis_2022_youth_education_statuses USING btree ("PersonalID"); + + +-- +-- Name: hmis2024assessmentquestions_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024assessmentquestions_634d ON public.hmis_2024_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmis2024assessmentquestions_da04; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024assessmentquestions_da04 ON public.hmis_2024_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmis2024assessmentresults_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024assessmentresults_634d ON public.hmis_2024_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmis2024assessments_4fa0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024assessments_4fa0 ON public.hmis_2024_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmis2024assessments_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024assessments_634d ON public.hmis_2024_assessments USING btree ("ExportID"); + + +-- +-- Name: hmis2024assessments_da04; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024assessments_da04 ON public.hmis_2024_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmis2024ceparticipations_42af; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024ceparticipations_42af ON public.hmis_2024_ce_participations USING btree ("ProjectID"); + + +-- +-- Name: hmis2024ceparticipations_5a29; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024ceparticipations_5a29 ON public.hmis_2024_ce_participations USING btree ("CEParticipationID"); + + +-- +-- Name: hmis2024ceparticipations_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024ceparticipations_634d ON public.hmis_2024_ce_participations USING btree ("ExportID"); + + +-- +-- Name: hmis2024clients_20a8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024clients_20a8 ON public.hmis_2024_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmis2024clients_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024clients_42d5 ON public.hmis_2024_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmis2024clients_603f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024clients_603f ON public.hmis_2024_clients USING btree ("PersonalID"); + + +-- +-- Name: hmis2024clients_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024clients_634d ON public.hmis_2024_clients USING btree ("ExportID"); + + +-- +-- Name: hmis2024currentlivingsituations_4337; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024currentlivingsituations_4337 ON public.hmis_2024_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2024currentlivingsituations_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024currentlivingsituations_634d ON public.hmis_2024_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmis2024currentlivingsituations_c1ef; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024currentlivingsituations_c1ef ON public.hmis_2024_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmis2024currentlivingsituations_d718; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024currentlivingsituations_d718 ON public.hmis_2024_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmis2024currentlivingsituations_fabe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024currentlivingsituations_fabe ON public.hmis_2024_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmis2024disabilities_1873; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024disabilities_1873 ON public.hmis_2024_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmis2024disabilities_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024disabilities_42d5 ON public.hmis_2024_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmis2024disabilities_603f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024disabilities_603f ON public.hmis_2024_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmis2024disabilities_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024disabilities_634d ON public.hmis_2024_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmis2024disabilities_d381; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024disabilities_d381 ON public.hmis_2024_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmis2024employmenteducations_350e; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024employmenteducations_350e ON public.hmis_2024_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmis2024employmenteducations_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024employmenteducations_42d5 ON public.hmis_2024_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmis2024employmenteducations_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024employmenteducations_634d ON public.hmis_2024_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmis2024enrollments_2735; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_2735 ON public.hmis_2024_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis2024enrollments_3085; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_3085 ON public.hmis_2024_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis2024enrollments_34e3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_34e3 ON public.hmis_2024_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis2024enrollments_42af; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_42af ON public.hmis_2024_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmis2024enrollments_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_42d5 ON public.hmis_2024_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmis2024enrollments_4337; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_4337 ON public.hmis_2024_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2024enrollments_44c4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_44c4 ON public.hmis_2024_enrollments USING btree ("MonthsHomelessPastThreeYears") INCLUDE ("EnrollmentID", "LivingSituation", "PreviousStreetESSH"); + + +-- +-- Name: hmis2024enrollments_4685; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_4685 ON public.hmis_2024_enrollments USING btree ("LengthOfStay") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmis2024enrollments_5328; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_5328 ON public.hmis_2024_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmis2024enrollments_5d40; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_5d40 ON public.hmis_2024_enrollments USING btree ("HouseholdID", "DateDeleted", "EntryDate", "RelationshipToHoH") INCLUDE ("EnrollmentID", "PersonalID", "DisablingCondition"); + + +-- +-- Name: hmis2024enrollments_603f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_603f ON public.hmis_2024_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmis2024enrollments_6191; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_6191 ON public.hmis_2024_enrollments USING btree ("EntryDate") INCLUDE ("EnrollmentID", "ProjectID", "HouseholdID", "RelationshipToHoH", "DateDeleted"); + + +-- +-- Name: hmis2024enrollments_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_634d ON public.hmis_2024_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmis2024enrollments_821a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_821a ON public.hmis_2024_enrollments USING btree ("LivingSituation") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmis2024enrollments_89e7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_89e7 ON public.hmis_2024_enrollments USING btree ("HouseholdID", "DateDeleted", "RelationshipToHoH") INCLUDE ("EnrollmentID", "PersonalID", "EntryDate", "DisablingCondition"); + + +-- +-- Name: hmis2024enrollments_8d5c; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_8d5c ON public.hmis_2024_enrollments USING btree ("DateDeleted", "RelationshipToHoH") INCLUDE ("EnrollmentID", "PersonalID", "EntryDate", "HouseholdID", "DisablingCondition"); + + +-- +-- Name: hmis2024enrollments_9005; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_9005 ON public.hmis_2024_enrollments USING btree ("ProjectID", "RelationshipToHoH", "DateDeleted") INCLUDE ("EnrollmentID", "PersonalID", "EntryDate", "HouseholdID", "MoveInDate"); + + +-- +-- Name: hmis2024enrollments_c321; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_c321 ON public.hmis_2024_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmis2024enrollments_c3b4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_c3b4 ON public.hmis_2024_enrollments USING btree ("RelationshipToHoH", "DateDeleted") INCLUDE ("EnrollmentID", "PersonalID", "ProjectID", "EntryDate", "HouseholdID", "MoveInDate", "DisablingCondition"); + + +-- +-- Name: hmis2024enrollments_c548; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_c548 ON public.hmis_2024_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis2024enrollments_c830; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_c830 ON public.hmis_2024_enrollments USING btree ("DateDeleted", "EntryDate") INCLUDE ("EnrollmentID", "HouseholdID", "ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis2024enrollments_ea7f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_ea7f ON public.hmis_2024_enrollments USING btree ("HouseholdID", "RelationshipToHoH", "DateDeleted") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmis2024enrollments_f3a2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_f3a2 ON public.hmis_2024_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmis2024enrollments_fbbd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024enrollments_fbbd ON public.hmis_2024_enrollments USING btree ("MoveInDate") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmis2024events_5251; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024events_5251 ON public.hmis_2024_events USING btree ("EventID"); + + +-- +-- Name: hmis2024events_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024events_634d ON public.hmis_2024_events USING btree ("ExportID"); + + +-- +-- Name: hmis2024events_ab19; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024events_ab19 ON public.hmis_2024_events USING btree ("EventDate"); + + +-- +-- Name: hmis2024exits_13dc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024exits_13dc ON public.hmis_2024_exits USING btree ("ExitDate", "Destination") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmis2024exits_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024exits_42d5 ON public.hmis_2024_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmis2024exits_4337; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024exits_4337 ON public.hmis_2024_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2024exits_603f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024exits_603f ON public.hmis_2024_exits USING btree ("PersonalID"); + + +-- +-- Name: hmis2024exits_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024exits_634d ON public.hmis_2024_exits USING btree ("ExportID"); + + +-- +-- Name: hmis2024exits_6f2b; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024exits_6f2b ON public.hmis_2024_exits USING btree ("ExitID"); + + +-- +-- Name: hmis2024exits_f3a2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024exits_f3a2 ON public.hmis_2024_exits USING btree ("DateDeleted") INCLUDE ("EnrollmentID", "ExitDate"); + + +-- +-- Name: hmis2024exits_fa9a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024exits_fa9a ON public.hmis_2024_exits USING btree ("ExitDate"); + + +-- +-- Name: hmis2024funders_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024funders_42d5 ON public.hmis_2024_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmis2024funders_4657; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024funders_4657 ON public.hmis_2024_funders USING btree ("FunderID"); + + +-- +-- Name: hmis2024funders_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024funders_634d ON public.hmis_2024_funders USING btree ("ExportID"); + + +-- +-- Name: hmis2024funders_d381; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024funders_d381 ON public.hmis_2024_funders USING btree ("DateCreated"); + + +-- +-- Name: hmis2024healthanddvs_1329; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024healthanddvs_1329 ON public.hmis_2024_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmis2024healthanddvs_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024healthanddvs_42d5 ON public.hmis_2024_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2024healthanddvs_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024healthanddvs_634d ON public.hmis_2024_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmis2024hmisparticipations_42af; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024hmisparticipations_42af ON public.hmis_2024_hmis_participations USING btree ("ProjectID"); + + +-- +-- Name: hmis2024hmisparticipations_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024hmisparticipations_634d ON public.hmis_2024_hmis_participations USING btree ("ExportID"); + + +-- +-- Name: hmis2024hmisparticipations_827e; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024hmisparticipations_827e ON public.hmis_2024_hmis_participations USING btree ("HMISParticipationID"); + + +-- +-- Name: hmis2024incomebenefits_16c2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024incomebenefits_16c2 ON public.hmis_2024_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmis2024incomebenefits_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024incomebenefits_42d5 ON public.hmis_2024_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmis2024incomebenefits_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024incomebenefits_634d ON public.hmis_2024_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmis2024incomebenefits_ae8d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024incomebenefits_ae8d ON public.hmis_2024_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmis2024incomebenefits_f5f5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024incomebenefits_f5f5 ON public.hmis_2024_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmis2024incomebenefits_fabe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024incomebenefits_fabe ON public.hmis_2024_income_benefits USING btree ("InformationDate"); + + +-- +-- Name: hmis2024inventories_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024inventories_42d5 ON public.hmis_2024_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmis2024inventories_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024inventories_634d ON public.hmis_2024_inventories USING btree ("ExportID"); + + +-- +-- Name: hmis2024inventories_9529; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024inventories_9529 ON public.hmis_2024_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmis2024inventories_d381; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024inventories_d381 ON public.hmis_2024_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmis2024organizations_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024organizations_634d ON public.hmis_2024_organizations USING btree ("ExportID"); + + +-- +-- Name: hmis2024organizations_b19d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024organizations_b19d ON public.hmis_2024_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmis2024projectcocs_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024projectcocs_42d5 ON public.hmis_2024_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis2024projectcocs_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024projectcocs_634d ON public.hmis_2024_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis2024projectcocs_787b; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024projectcocs_787b ON public.hmis_2024_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmis2024projects_42af; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024projects_42af ON public.hmis_2024_projects USING btree ("ProjectID"); + + +-- +-- Name: hmis2024projects_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024projects_42d5 ON public.hmis_2024_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmis2024projects_e4bb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024projects_e4bb ON public.hmis_2024_projects USING btree ("ProjectType"); + + +-- +-- Name: hmis2024services_237b; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024services_237b ON public.hmis_2024_services USING btree ("RecordType"); + + +-- +-- Name: hmis2024services_3444; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024services_3444 ON public.hmis_2024_services USING btree ("DateProvided"); + + +-- +-- Name: hmis2024services_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024services_42d5 ON public.hmis_2024_services USING btree ("DateUpdated"); + + +-- +-- Name: hmis2024services_4337; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024services_4337 ON public.hmis_2024_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmis2024services_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024services_634d ON public.hmis_2024_services USING btree ("ExportID"); + + +-- +-- Name: hmis2024services_6415; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024services_6415 ON public.hmis_2024_services USING btree ("ServicesID"); + + +-- +-- Name: hmis2024services_8dbb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024services_8dbb ON public.hmis_2024_services USING btree ("RecordType", "DateDeleted", "DateProvided") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmis2024services_9c1a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024services_9c1a ON public.hmis_2024_services USING btree ("EnrollmentID", "RecordType", "DateDeleted") INCLUDE ("DateProvided"); + + +-- +-- Name: hmis2024services_f3a2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024services_f3a2 ON public.hmis_2024_services USING btree ("DateDeleted"); + + +-- +-- Name: hmis2024users_57c7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024users_57c7 ON public.hmis_2024_users USING btree ("UserID"); + + +-- +-- Name: hmis2024users_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024users_634d ON public.hmis_2024_users USING btree ("ExportID"); + + +-- +-- Name: hmis2024youtheducationstatuses_6049; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024youtheducationstatuses_6049 ON public.hmis_2024_youth_education_statuses USING btree ("YouthEducationStatusID"); + + +-- +-- Name: hmis2024youtheducationstatuses_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024youtheducationstatuses_634d ON public.hmis_2024_youth_education_statuses USING btree ("ExportID"); + + +-- +-- Name: hmis2024youtheducationstatuses_fabe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis2024youtheducationstatuses_fabe ON public.hmis_2024_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: hmis_2020_affiliations-jXFa; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_affiliations-jXFa" ON public.hmis_2020_affiliations USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_affiliations-lZaj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_affiliations-lZaj" ON public.hmis_2020_affiliations USING btree ("AffiliationID", data_source_id); + + +-- +-- Name: hmis_2020_affiliations-qycr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_affiliations-qycr" ON public.hmis_2020_affiliations USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-0cTv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "hmis_2020_aggregated_enrollments-0cTv" ON public.hmis_2020_aggregated_enrollments USING btree ("EnrollmentID", "PersonalID", data_source_id); + + +-- +-- Name: hmis_2020_aggregated_enrollments-4L8g; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-4L8g" ON public.hmis_2020_aggregated_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-6wqk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-6wqk" ON public.hmis_2020_aggregated_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-BMfj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-BMfj" ON public.hmis_2020_aggregated_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-CpSq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-CpSq" ON public.hmis_2020_aggregated_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-E6ih; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-E6ih" ON public.hmis_2020_aggregated_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-G7U1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-G7U1" ON public.hmis_2020_aggregated_enrollments USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_aggregated_enrollments-Jmkq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-Jmkq" ON public.hmis_2020_aggregated_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-QV2G; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-QV2G" ON public.hmis_2020_aggregated_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-RJNU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-RJNU" ON public.hmis_2020_aggregated_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-RNSl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-RNSl" ON public.hmis_2020_aggregated_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-Xqsk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-Xqsk" ON public.hmis_2020_aggregated_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-ZGm4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-ZGm4" ON public.hmis_2020_aggregated_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-fSDc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "hmis_2020_aggregated_enrollments-fSDc" ON public.hmis_2020_aggregated_enrollments USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2020_aggregated_enrollments-fXAB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-fXAB" ON public.hmis_2020_aggregated_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-ocKA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-ocKA" ON public.hmis_2020_aggregated_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-oiEU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-oiEU" ON public.hmis_2020_aggregated_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-wnDD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-wnDD" ON public.hmis_2020_aggregated_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-ysoO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-ysoO" ON public.hmis_2020_aggregated_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2020_aggregated_enrollments-zNVo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_enrollments-zNVo" ON public.hmis_2020_aggregated_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2020_aggregated_exits-2lOR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_exits-2lOR" ON public.hmis_2020_aggregated_exits USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_aggregated_exits-2mwI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "hmis_2020_aggregated_exits-2mwI" ON public.hmis_2020_aggregated_exits USING btree ("ExitID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2020_aggregated_exits-BwSf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_exits-BwSf" ON public.hmis_2020_aggregated_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_aggregated_exits-EPOP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_exits-EPOP" ON public.hmis_2020_aggregated_exits USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_aggregated_exits-GBBG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_exits-GBBG" ON public.hmis_2020_aggregated_exits USING btree ("ExitDate"); + + +-- +-- Name: hmis_2020_aggregated_exits-SgMf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_exits-SgMf" ON public.hmis_2020_aggregated_exits USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_aggregated_exits-UYdB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "hmis_2020_aggregated_exits-UYdB" ON public.hmis_2020_aggregated_exits USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2020_aggregated_exits-VRGa; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_exits-VRGa" ON public.hmis_2020_aggregated_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_aggregated_exits-auds; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_exits-auds" ON public.hmis_2020_aggregated_exits USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_aggregated_exits-cduB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_exits-cduB" ON public.hmis_2020_aggregated_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2020_aggregated_exits-g6y1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_aggregated_exits-g6y1" ON public.hmis_2020_aggregated_exits USING btree ("ExitID"); + + +-- +-- Name: hmis_2020_assessment_questions-0oMf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessment_questions-0oMf" ON public.hmis_2020_assessment_questions USING btree ("AssessmentQuestionID", data_source_id); + + +-- +-- Name: hmis_2020_assessment_questions-fD1j; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessment_questions-fD1j" ON public.hmis_2020_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmis_2020_assessment_questions-gVG2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessment_questions-gVG2" ON public.hmis_2020_assessment_questions USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_assessment_questions-sDob; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessment_questions-sDob" ON public.hmis_2020_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_assessment_results-2kxY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessment_results-2kxY" ON public.hmis_2020_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_assessment_results-AnQd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessment_results-AnQd" ON public.hmis_2020_assessment_results USING btree ("AssessmentID"); + + +-- +-- Name: hmis_2020_assessment_results-CKgC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessment_results-CKgC" ON public.hmis_2020_assessment_results USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_assessment_results-rawc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessment_results-rawc" ON public.hmis_2020_assessment_results USING btree ("AssessmentResultID", data_source_id); + + +-- +-- Name: hmis_2020_assessments-3sM0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessments-3sM0" ON public.hmis_2020_assessments USING btree ("AssessmentID", data_source_id); + + +-- +-- Name: hmis_2020_assessments-B1tS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessments-B1tS" ON public.hmis_2020_assessments USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_assessments-YW8L; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessments-YW8L" ON public.hmis_2020_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmis_2020_assessments-gMUw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessments-gMUw" ON public.hmis_2020_assessments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_assessments-kdgA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessments-kdgA" ON public.hmis_2020_assessments USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_assessments-kqMe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessments-kqMe" ON public.hmis_2020_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmis_2020_assessments-u0eq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_assessments-u0eq" ON public.hmis_2020_assessments USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_clients-3vTw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_clients-3vTw" ON public.hmis_2020_clients USING btree ("LastName"); + + +-- +-- Name: hmis_2020_clients-48Qj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_clients-48Qj" ON public.hmis_2020_clients USING btree ("FirstName"); + + +-- +-- Name: hmis_2020_clients-VRsB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_clients-VRsB" ON public.hmis_2020_clients USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_clients-gmgS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_clients-gmgS" ON public.hmis_2020_clients USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_clients-jdcP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_clients-jdcP" ON public.hmis_2020_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_clients-qK9d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_clients-qK9d" ON public.hmis_2020_clients USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_clients-qUjP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_clients-qUjP" ON public.hmis_2020_clients USING btree ("DOB"); + + +-- +-- Name: hmis_2020_clients-rrgI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_clients-rrgI" ON public.hmis_2020_clients USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_clients-t6qe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_clients-t6qe" ON public.hmis_2020_clients USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2020_clients-z1iL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_clients-z1iL" ON public.hmis_2020_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_2020_current_living_situations-4v4L; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_current_living_situations-4v4L" ON public.hmis_2020_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmis_2020_current_living_situations-DXZ0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_current_living_situations-DXZ0" ON public.hmis_2020_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmis_2020_current_living_situations-WmJZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_current_living_situations-WmJZ" ON public.hmis_2020_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmis_2020_current_living_situations-cLpS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_current_living_situations-cLpS" ON public.hmis_2020_current_living_situations USING btree ("CurrentLivingSitID", data_source_id); + + +-- +-- Name: hmis_2020_current_living_situations-hGfj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_current_living_situations-hGfj" ON public.hmis_2020_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_current_living_situations-jG8y; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_current_living_situations-jG8y" ON public.hmis_2020_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_current_living_situations-qbbx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_current_living_situations-qbbx" ON public.hmis_2020_current_living_situations USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_current_living_situations-vWt4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_current_living_situations-vWt4" ON public.hmis_2020_current_living_situations USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_disabilities-1JPN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_disabilities-1JPN" ON public.hmis_2020_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_disabilities-2lYA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_disabilities-2lYA" ON public.hmis_2020_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_disabilities-8DFL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_disabilities-8DFL" ON public.hmis_2020_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmis_2020_disabilities-DA3C; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_disabilities-DA3C" ON public.hmis_2020_disabilities USING btree ("DisabilitiesID", data_source_id); + + +-- +-- Name: hmis_2020_disabilities-G1Z0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_disabilities-G1Z0" ON public.hmis_2020_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_disabilities-oxMH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_disabilities-oxMH" ON public.hmis_2020_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_disabilities-p0j2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_disabilities-p0j2" ON public.hmis_2020_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_disabilities-zFRZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_disabilities-zFRZ" ON public.hmis_2020_disabilities USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_employment_educations-EPrc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_employment_educations-EPrc" ON public.hmis_2020_employment_educations USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_employment_educations-Hv6e; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_employment_educations-Hv6e" ON public.hmis_2020_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmis_2020_employment_educations-mSvG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_employment_educations-mSvG" ON public.hmis_2020_employment_educations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_employment_educations-oPbl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_employment_educations-oPbl" ON public.hmis_2020_employment_educations USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_employment_educations-rTDS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_employment_educations-rTDS" ON public.hmis_2020_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_employment_educations-rxeE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_employment_educations-rxeE" ON public.hmis_2020_employment_educations USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_employment_educations-uCTm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_employment_educations-uCTm" ON public.hmis_2020_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_employment_educations-zM3A; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_employment_educations-zM3A" ON public.hmis_2020_employment_educations USING btree ("EmploymentEducationID", data_source_id); + + +-- +-- Name: hmis_2020_enrollment_cocs-5FMZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollment_cocs-5FMZ" ON public.hmis_2020_enrollment_cocs USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_enrollment_cocs-5ROz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollment_cocs-5ROz" ON public.hmis_2020_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmis_2020_enrollment_cocs-6ENr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollment_cocs-6ENr" ON public.hmis_2020_enrollment_cocs USING btree ("EnrollmentCoCID"); + + +-- +-- Name: hmis_2020_enrollment_cocs-6Mre; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollment_cocs-6Mre" ON public.hmis_2020_enrollment_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_enrollment_cocs-GUQA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollment_cocs-GUQA" ON public.hmis_2020_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2020_enrollment_cocs-LilW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollment_cocs-LilW" ON public.hmis_2020_enrollment_cocs USING btree ("EnrollmentCoCID", data_source_id); + + +-- +-- Name: hmis_2020_enrollment_cocs-Se2O; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollment_cocs-Se2O" ON public.hmis_2020_enrollment_cocs USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_enrollment_cocs-gQJA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollment_cocs-gQJA" ON public.hmis_2020_enrollment_cocs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_enrollment_cocs-sVGW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollment_cocs-sVGW" ON public.hmis_2020_enrollment_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_enrollment_cocs-zikd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollment_cocs-zikd" ON public.hmis_2020_enrollment_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_enrollments-3NkS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-3NkS" ON public.hmis_2020_enrollments USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_enrollments-6ZYF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-6ZYF" ON public.hmis_2020_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmis_2020_enrollments-8tOj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-8tOj" ON public.hmis_2020_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_2020_enrollments-9mEF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-9mEF" ON public.hmis_2020_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_2020_enrollments-HNd8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-HNd8" ON public.hmis_2020_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_2020_enrollments-Io4W; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-Io4W" ON public.hmis_2020_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmis_2020_enrollments-Qd6d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-Qd6d" ON public.hmis_2020_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_2020_enrollments-UM6y; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-UM6y" ON public.hmis_2020_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_enrollments-UrCS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-UrCS" ON public.hmis_2020_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_enrollments-ZK9t; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-ZK9t" ON public.hmis_2020_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_enrollments-dRUc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-dRUc" ON public.hmis_2020_enrollments USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2020_enrollments-dn8l; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-dn8l" ON public.hmis_2020_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmis_2020_enrollments-hQVn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-hQVn" ON public.hmis_2020_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_enrollments-kIRP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-kIRP" ON public.hmis_2020_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_2020_enrollments-kzx7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-kzx7" ON public.hmis_2020_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_enrollments-xB0L; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-xB0L" ON public.hmis_2020_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2020_enrollments-xiJ6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-xiJ6" ON public.hmis_2020_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmis_2020_enrollments-y1wr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_enrollments-y1wr" ON public.hmis_2020_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_2020_events-5Ulw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_events-5Ulw" ON public.hmis_2020_events USING btree ("EventID", data_source_id); + + +-- +-- Name: hmis_2020_events-SY9T; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_events-SY9T" ON public.hmis_2020_events USING btree ("EventDate"); + + +-- +-- Name: hmis_2020_events-chRs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_events-chRs" ON public.hmis_2020_events USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_events-ej4z; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_events-ej4z" ON public.hmis_2020_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_events-h86C; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_events-h86C" ON public.hmis_2020_events USING btree ("EventID"); + + +-- +-- Name: hmis_2020_events-sFna; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_events-sFna" ON public.hmis_2020_events USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_events-ztpH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_events-ztpH" ON public.hmis_2020_events USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_exits-4DnO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exits-4DnO" ON public.hmis_2020_exits USING btree ("ExitID"); + + +-- +-- Name: hmis_2020_exits-Crsu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exits-Crsu" ON public.hmis_2020_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_exits-F305; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exits-F305" ON public.hmis_2020_exits USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_exits-QkLT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exits-QkLT" ON public.hmis_2020_exits USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_exits-S9yO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exits-S9yO" ON public.hmis_2020_exits USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2020_exits-Z3F6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exits-Z3F6" ON public.hmis_2020_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_exits-c4Un; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exits-c4Un" ON public.hmis_2020_exits USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_exits-dozv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exits-dozv" ON public.hmis_2020_exits USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_exits-nEjV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exits-nEjV" ON public.hmis_2020_exits USING btree ("ExitDate"); + + +-- +-- Name: hmis_2020_exits-s54g; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exits-s54g" ON public.hmis_2020_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmis_2020_exports-5gdY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exports-5gdY" ON public.hmis_2020_exports USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_exports-YcvP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exports-YcvP" ON public.hmis_2020_exports USING btree ("ExportID", data_source_id); + + +-- +-- Name: hmis_2020_exports-awLV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_exports-awLV" ON public.hmis_2020_exports USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_funders-CQE4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_funders-CQE4" ON public.hmis_2020_funders USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_funders-P3hw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_funders-P3hw" ON public.hmis_2020_funders USING btree ("FunderID"); + + +-- +-- Name: hmis_2020_funders-Srvd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_funders-Srvd" ON public.hmis_2020_funders USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_funders-XiWW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_funders-XiWW" ON public.hmis_2020_funders USING btree ("FunderID", data_source_id); + + +-- +-- Name: hmis_2020_funders-qRxb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_funders-qRxb" ON public.hmis_2020_funders USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_funders-yKF3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_funders-yKF3" ON public.hmis_2020_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_health_and_dvs-85bD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_health_and_dvs-85bD" ON public.hmis_2020_health_and_dvs USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_health_and_dvs-Ha57; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_health_and_dvs-Ha57" ON public.hmis_2020_health_and_dvs USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_health_and_dvs-Kqiz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_health_and_dvs-Kqiz" ON public.hmis_2020_health_and_dvs USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_health_and_dvs-SbP4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_health_and_dvs-SbP4" ON public.hmis_2020_health_and_dvs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_health_and_dvs-TUTe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_health_and_dvs-TUTe" ON public.hmis_2020_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_health_and_dvs-w4jj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_health_and_dvs-w4jj" ON public.hmis_2020_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_health_and_dvs-zE81; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_health_and_dvs-zE81" ON public.hmis_2020_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmis_2020_health_and_dvs-zonF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_health_and_dvs-zonF" ON public.hmis_2020_health_and_dvs USING btree ("HealthAndDVID", data_source_id); + + +-- +-- Name: hmis_2020_income_benefits-AUwp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_income_benefits-AUwp" ON public.hmis_2020_income_benefits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_income_benefits-BE9p; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_income_benefits-BE9p" ON public.hmis_2020_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_income_benefits-JwPq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_income_benefits-JwPq" ON public.hmis_2020_income_benefits USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_income_benefits-LCKi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_income_benefits-LCKi" ON public.hmis_2020_income_benefits USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_income_benefits-NcHX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_income_benefits-NcHX" ON public.hmis_2020_income_benefits USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_income_benefits-aphJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_income_benefits-aphJ" ON public.hmis_2020_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_income_benefits-pfYl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_income_benefits-pfYl" ON public.hmis_2020_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmis_2020_income_benefits-tBcJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_income_benefits-tBcJ" ON public.hmis_2020_income_benefits USING btree ("IncomeBenefitsID", data_source_id); + + +-- +-- Name: hmis_2020_inventories-0TGU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_inventories-0TGU" ON public.hmis_2020_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_inventories-DTHt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_inventories-DTHt" ON public.hmis_2020_inventories USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_inventories-J6na; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_inventories-J6na" ON public.hmis_2020_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_inventories-LNwI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_inventories-LNwI" ON public.hmis_2020_inventories USING btree ("InventoryID", data_source_id); + + +-- +-- Name: hmis_2020_inventories-fun6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_inventories-fun6" ON public.hmis_2020_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmis_2020_inventories-whCo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_inventories-whCo" ON public.hmis_2020_inventories USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_inventories-yV3L; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_inventories-yV3L" ON public.hmis_2020_inventories USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis_2020_organizations-MfSb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_organizations-MfSb" ON public.hmis_2020_organizations USING btree ("OrganizationID", data_source_id); + + +-- +-- Name: hmis_2020_organizations-Prts; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_organizations-Prts" ON public.hmis_2020_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmis_2020_organizations-SWg3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_organizations-SWg3" ON public.hmis_2020_organizations USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_organizations-VQWo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_organizations-VQWo" ON public.hmis_2020_organizations USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_project_cocs-GTs4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_project_cocs-GTs4" ON public.hmis_2020_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_project_cocs-JAwb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_project_cocs-JAwb" ON public.hmis_2020_project_cocs USING btree ("ProjectCoCID", data_source_id); + + +-- +-- Name: hmis_2020_project_cocs-K8nw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_project_cocs-K8nw" ON public.hmis_2020_project_cocs USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis_2020_project_cocs-OI4Q; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_project_cocs-OI4Q" ON public.hmis_2020_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_project_cocs-Tmf3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_project_cocs-Tmf3" ON public.hmis_2020_project_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_project_cocs-icQq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_project_cocs-icQq" ON public.hmis_2020_project_cocs USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_project_cocs-iuZj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_project_cocs-iuZj" ON public.hmis_2020_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmis_2020_projects-5SSM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_projects-5SSM" ON public.hmis_2020_projects USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_projects-ctk2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_projects-ctk2" ON public.hmis_2020_projects USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_projects-fqB3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_projects-fqB3" ON public.hmis_2020_projects USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_projects-nhkJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_projects-nhkJ" ON public.hmis_2020_projects USING btree ("ProjectID"); + + +-- +-- Name: hmis_2020_projects-oxQa; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_projects-oxQa" ON public.hmis_2020_projects USING btree ("ProjectID", data_source_id); + + +-- +-- Name: hmis_2020_projects-xkUs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_projects-xkUs" ON public.hmis_2020_projects USING btree ("ProjectType"); + + +-- +-- Name: hmis_2020_projects-zcbu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_projects-zcbu" ON public.hmis_2020_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_services-3lC5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-3lC5" ON public.hmis_2020_services USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2020_services-4CG1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-4CG1" ON public.hmis_2020_services USING btree (source_type, source_id); + + +-- +-- Name: hmis_2020_services-8nZj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-8nZj" ON public.hmis_2020_services USING btree ("DateProvided"); + + +-- +-- Name: hmis_2020_services-ApuA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-ApuA" ON public.hmis_2020_services USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_2020_services-LqGx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-LqGx" ON public.hmis_2020_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_2020_services-QkXD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-QkXD" ON public.hmis_2020_services USING btree ("ServicesID"); + + +-- +-- Name: hmis_2020_services-Rwkq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-Rwkq" ON public.hmis_2020_services USING btree ("PersonalID"); + + +-- +-- Name: hmis_2020_services-VJ0s; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-VJ0s" ON public.hmis_2020_services USING btree ("DateUpdated"); + + +-- +-- Name: hmis_2020_services-WrTZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-WrTZ" ON public.hmis_2020_services USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_2020_services-Y8F7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-Y8F7" ON public.hmis_2020_services USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_services-eNab; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-eNab" ON public.hmis_2020_services USING btree ("DateCreated"); + + +-- +-- Name: hmis_2020_services-ggIO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-ggIO" ON public.hmis_2020_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_2020_services-m63x; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-m63x" ON public.hmis_2020_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_2020_services-mIRP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-mIRP" ON public.hmis_2020_services USING btree ("RecordType"); + + +-- +-- Name: hmis_2020_services-wXdL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_services-wXdL" ON public.hmis_2020_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_2020_users-74tq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_users-74tq" ON public.hmis_2020_users USING btree ("UserID"); + + +-- +-- Name: hmis_2020_users-DmeI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_users-DmeI" ON public.hmis_2020_users USING btree ("UserID", data_source_id); + + +-- +-- Name: hmis_2020_users-Ls1u; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_users-Ls1u" ON public.hmis_2020_users USING btree ("ExportID"); + + +-- +-- Name: hmis_2020_users-ZfY6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2020_users-ZfY6" ON public.hmis_2020_users USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_affiliations-6457; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_affiliations-6457" ON public.hmis_2022_affiliations USING btree ("AffiliationID", data_source_id); + + +-- +-- Name: hmis_2022_assessment_questions-0cd3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_assessment_questions-0cd3" ON public.hmis_2022_assessment_questions USING btree ("AssessmentQuestionID", data_source_id); + + +-- +-- Name: hmis_2022_assessment_results-d6c9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_assessment_results-d6c9" ON public.hmis_2022_assessment_results USING btree ("AssessmentResultID", data_source_id); + + +-- +-- Name: hmis_2022_assessments-df76; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_assessments-df76" ON public.hmis_2022_assessments USING btree ("AssessmentID", data_source_id); + + +-- +-- Name: hmis_2022_clients-230f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients-230f" ON public.hmis_2022_clients_saved USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients-48bf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_clients-48bf" ON public.hmis_2022_clients_saved USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_current_living_situations-cf31; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_current_living_situations-cf31" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSitID", data_source_id); + + +-- +-- Name: hmis_2022_disabilities_hk_l_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_disabilities_hk_l_id ON public.hmis_2022_disabilities USING btree ("DisabilitiesID", importer_log_id); + + +-- +-- Name: hmis_2022_employment_educations-3032; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_employment_educations-3032" ON public.hmis_2022_employment_educations USING btree ("EmploymentEducationID", data_source_id); + + +-- +-- Name: hmis_2022_enrollment_cocs-d4b8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollment_cocs-d4b8" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentCoCID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments-0a46; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments-0a46" ON public.hmis_2022_enrollments_saved USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2022_enrollments-48bf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_enrollments-48bf" ON public.hmis_2022_enrollments_saved USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_events_hk_l_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_events_hk_l_id ON public.hmis_2022_events USING btree ("EventID", importer_log_id); + + +-- +-- Name: hmis_2022_exit_e_id_compound; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_exit_e_id_compound ON public.hmis_2022_exits_saved USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: hmis_2022_exits-48bf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits-48bf" ON public.hmis_2022_exits_saved USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_exits-cfdd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exits-cfdd" ON public.hmis_2022_exits_saved USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2022_exports-86be; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_exports-86be" ON public.hmis_2022_exports USING btree ("ExportID", data_source_id); + + +-- +-- Name: hmis_2022_funders-4ad5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_funders-4ad5" ON public.hmis_2022_funders USING btree ("FunderID", data_source_id); + + +-- +-- Name: hmis_2022_health_and_dvs_hk_l_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_health_and_dvs_hk_l_id ON public.hmis_2022_health_and_dvs USING btree ("HealthAndDVID", importer_log_id); + + +-- +-- Name: hmis_2022_income_benefits_hk_l_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_income_benefits_hk_l_id ON public.hmis_2022_income_benefits USING btree ("IncomeBenefitsID", importer_log_id); + + +-- +-- Name: hmis_2022_inventories-86c0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_inventories-86c0" ON public.hmis_2022_inventories USING btree ("InventoryID", data_source_id); + + +-- +-- Name: hmis_2022_organizations-7580; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_organizations-7580" ON public.hmis_2022_organizations USING btree ("OrganizationID", data_source_id); + + +-- +-- Name: hmis_2022_project_cocs-3966; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_project_cocs-3966" ON public.hmis_2022_project_cocs USING btree ("ProjectCoCID", data_source_id); + + +-- +-- Name: hmis_2022_projects-92c5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_projects-92c5" ON public.hmis_2022_projects USING btree ("ProjectID", data_source_id); + + +-- +-- Name: hmis_2022_services-48bf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services-48bf" ON public.hmis_2022_services_saved USING btree (source_type, source_id); + + +-- +-- Name: hmis_2022_services-7a57; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_services-7a57" ON public.hmis_2022_services_saved USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2022_services_hk_l_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_2022_services_hk_l_id ON public.hmis_2022_services_saved USING btree ("ServicesID", importer_log_id); + + +-- +-- Name: hmis_2022_youth_education_statuses-a32f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2022_youth_education_statuses-a32f" ON public.hmis_2022_youth_education_statuses USING btree ("YouthEducationStatusID", data_source_id); + + +-- +-- Name: hmis_2024_affiliations-6457; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_affiliations-6457" ON public.hmis_2024_affiliations USING btree ("AffiliationID", data_source_id); + + +-- +-- Name: hmis_2024_assessment_questions-0cd3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_assessment_questions-0cd3" ON public.hmis_2024_assessment_questions USING btree ("AssessmentQuestionID", data_source_id); + + +-- +-- Name: hmis_2024_assessment_results-d6c9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_assessment_results-d6c9" ON public.hmis_2024_assessment_results USING btree ("AssessmentResultID", data_source_id); + + +-- +-- Name: hmis_2024_assessments-df76; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_assessments-df76" ON public.hmis_2024_assessments USING btree ("AssessmentID", data_source_id); + + +-- +-- Name: hmis_2024_ce_participations-5c6f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_ce_participations-5c6f" ON public.hmis_2024_ce_participations USING btree ("CEParticipationID", data_source_id); + + +-- +-- Name: hmis_2024_clients-230f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_clients-230f" ON public.hmis_2024_clients USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_2024_current_living_situations-cf31; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_current_living_situations-cf31" ON public.hmis_2024_current_living_situations USING btree ("CurrentLivingSitID", data_source_id); + + +-- +-- Name: hmis_2024_disabilities-7712; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_disabilities-7712" ON public.hmis_2024_disabilities USING btree ("DisabilitiesID", data_source_id); + + +-- +-- Name: hmis_2024_employment_educations-3032; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_employment_educations-3032" ON public.hmis_2024_employment_educations USING btree ("EmploymentEducationID", data_source_id); + + +-- +-- Name: hmis_2024_enrollments-0a46; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_enrollments-0a46" ON public.hmis_2024_enrollments USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_2024_events-9f9c; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_events-9f9c" ON public.hmis_2024_events USING btree ("EventID", data_source_id); + + +-- +-- Name: hmis_2024_exits-cfdd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_exits-cfdd" ON public.hmis_2024_exits USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_2024_exports-86be; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_exports-86be" ON public.hmis_2024_exports USING btree ("ExportID", data_source_id); + + +-- +-- Name: hmis_2024_funders-4ad5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_funders-4ad5" ON public.hmis_2024_funders USING btree ("FunderID", data_source_id); + + +-- +-- Name: hmis_2024_health_and_dvs-e384; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_health_and_dvs-e384" ON public.hmis_2024_health_and_dvs USING btree ("HealthAndDVID", data_source_id); + + +-- +-- Name: hmis_2024_hmis_participations-0f0d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_hmis_participations-0f0d" ON public.hmis_2024_hmis_participations USING btree ("HMISParticipationID", data_source_id); + + +-- +-- Name: hmis_2024_income_benefits-200d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_income_benefits-200d" ON public.hmis_2024_income_benefits USING btree ("IncomeBenefitsID", data_source_id); + + +-- +-- Name: hmis_2024_inventories-86c0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_inventories-86c0" ON public.hmis_2024_inventories USING btree ("InventoryID", data_source_id); + + +-- +-- Name: hmis_2024_organizations-7580; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_organizations-7580" ON public.hmis_2024_organizations USING btree ("OrganizationID", data_source_id); + + +-- +-- Name: hmis_2024_project_cocs-3966; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_project_cocs-3966" ON public.hmis_2024_project_cocs USING btree ("ProjectCoCID", data_source_id); + + +-- +-- Name: hmis_2024_projects-92c5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_projects-92c5" ON public.hmis_2024_projects USING btree ("ProjectID", data_source_id); + + +-- +-- Name: hmis_2024_services-7a57; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_services-7a57" ON public.hmis_2024_services USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_2024_users-b749; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_users-b749" ON public.hmis_2024_users USING btree ("UserID", data_source_id); + + +-- +-- Name: hmis_2024_youth_education_statuses-a32f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_2024_youth_education_statuses-a32f" ON public.hmis_2024_youth_education_statuses USING btree ("YouthEducationStatusID", data_source_id); + + +-- +-- Name: hmis_a_act_exl_con; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_a_act_exl_con ON public.hmis_assessments USING btree (active, exclude_from_window, confidential); + + +-- +-- Name: hmis_agg_enrollments_p_id_p_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_agg_enrollments_p_id_p_id_ds_id ON public.hmis_aggregated_enrollments USING btree ("PersonalID", "ProjectID", data_source_id); + + +-- +-- Name: hmis_aggregated_enrollments-aTmv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "hmis_aggregated_enrollments-aTmv" ON public.hmis_aggregated_enrollments USING btree ("EnrollmentID", "PersonalID", data_source_id); + + +-- +-- Name: hmis_aggregated_enrollments-qHbn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_aggregated_enrollments-qHbn" ON public.hmis_aggregated_enrollments USING btree (source_type, source_id); + + +-- +-- Name: hmis_aggregated_exits-FiCn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "hmis_aggregated_exits-FiCn" ON public.hmis_aggregated_exits USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_aggregated_exits-Nmym; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_aggregated_exits-Nmym" ON public.hmis_aggregated_exits USING btree (source_type, source_id); + + +-- +-- Name: hmis_csv_2020_affiliations-F2ar; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_affiliations-F2ar" ON public.hmis_csv_2020_affiliations USING btree ("AffiliationID", data_source_id); + + +-- +-- Name: hmis_csv_2020_affiliations-ofln; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_affiliations-ofln" ON public.hmis_csv_2020_affiliations USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_assessment_questions-U6Dk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_assessment_questions-U6Dk" ON public.hmis_csv_2020_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmis_csv_2020_assessment_questions-Xt6t; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_assessment_questions-Xt6t" ON public.hmis_csv_2020_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_assessment_questions-ZGxE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_assessment_questions-ZGxE" ON public.hmis_csv_2020_assessment_questions USING btree ("AssessmentQuestionID", data_source_id); + + +-- +-- Name: hmis_csv_2020_assessment_results-NEN7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_assessment_results-NEN7" ON public.hmis_csv_2020_assessment_results USING btree ("AssessmentID"); + + +-- +-- Name: hmis_csv_2020_assessment_results-NLC4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_assessment_results-NLC4" ON public.hmis_csv_2020_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_assessment_results-Rkod; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_assessment_results-Rkod" ON public.hmis_csv_2020_assessment_results USING btree ("AssessmentResultID", data_source_id); + + +-- +-- Name: hmis_csv_2020_assessments-EZd7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_assessments-EZd7" ON public.hmis_csv_2020_assessments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_csv_2020_assessments-GRoC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_assessments-GRoC" ON public.hmis_csv_2020_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmis_csv_2020_assessments-MoqJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_assessments-MoqJ" ON public.hmis_csv_2020_assessments USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_assessments-W4vL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_assessments-W4vL" ON public.hmis_csv_2020_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmis_csv_2020_assessments-nFH4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_assessments-nFH4" ON public.hmis_csv_2020_assessments USING btree ("PersonalID"); + + +-- +-- Name: hmis_csv_2020_assessments-y7s0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_assessments-y7s0" ON public.hmis_csv_2020_assessments USING btree ("AssessmentID", data_source_id); + + +-- +-- Name: hmis_csv_2020_clients-20vV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_clients-20vV" ON public.hmis_csv_2020_clients USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_clients-2cnC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_clients-2cnC" ON public.hmis_csv_2020_clients USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_clients-85Ap; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_clients-85Ap" ON public.hmis_csv_2020_clients USING btree ("LastName"); + + +-- +-- Name: hmis_csv_2020_clients-FQ7O; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_clients-FQ7O" ON public.hmis_csv_2020_clients USING btree ("DOB"); + + +-- +-- Name: hmis_csv_2020_clients-Q0u6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_clients-Q0u6" ON public.hmis_csv_2020_clients USING btree ("FirstName"); + + +-- +-- Name: hmis_csv_2020_clients-kRKs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_clients-kRKs" ON public.hmis_csv_2020_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmis_csv_2020_clients-moFz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_clients-moFz" ON public.hmis_csv_2020_clients USING btree ("PersonalID"); + + +-- +-- Name: hmis_csv_2020_clients-qppE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_clients-qppE" ON public.hmis_csv_2020_clients USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_csv_2020_clients-wlPc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_clients-wlPc" ON public.hmis_csv_2020_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_current_living_situations-3hVq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_current_living_situations-3hVq" ON public.hmis_csv_2020_current_living_situations USING btree ("PersonalID"); + + +-- +-- Name: hmis_csv_2020_current_living_situations-EGfX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_current_living_situations-EGfX" ON public.hmis_csv_2020_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmis_csv_2020_current_living_situations-KGuH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_current_living_situations-KGuH" ON public.hmis_csv_2020_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_current_living_situations-ScsR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_current_living_situations-ScsR" ON public.hmis_csv_2020_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_csv_2020_current_living_situations-VCsb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_current_living_situations-VCsb" ON public.hmis_csv_2020_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmis_csv_2020_current_living_situations-Vh4Y; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_current_living_situations-Vh4Y" ON public.hmis_csv_2020_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmis_csv_2020_current_living_situations-jzq2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_current_living_situations-jzq2" ON public.hmis_csv_2020_current_living_situations USING btree ("CurrentLivingSitID", data_source_id); + + +-- +-- Name: hmis_csv_2020_disabilities-4Nml; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_disabilities-4Nml" ON public.hmis_csv_2020_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_disabilities-9jL3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_disabilities-9jL3" ON public.hmis_csv_2020_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_csv_2020_disabilities-Sp4k; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_disabilities-Sp4k" ON public.hmis_csv_2020_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_disabilities-anqe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_disabilities-anqe" ON public.hmis_csv_2020_disabilities USING btree ("DisabilitiesID", data_source_id); + + +-- +-- Name: hmis_csv_2020_disabilities-ohpt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_disabilities-ohpt" ON public.hmis_csv_2020_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_disabilities-toFu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_disabilities-toFu" ON public.hmis_csv_2020_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmis_csv_2020_disabilities-xa8A; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_disabilities-xa8A" ON public.hmis_csv_2020_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmis_csv_2020_employment_educations-3UVX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_employment_educations-3UVX" ON public.hmis_csv_2020_employment_educations USING btree ("EmploymentEducationID", data_source_id); + + +-- +-- Name: hmis_csv_2020_employment_educations-4yxa; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_employment_educations-4yxa" ON public.hmis_csv_2020_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_employment_educations-8u1c; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_employment_educations-8u1c" ON public.hmis_csv_2020_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_employment_educations-JTgH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_employment_educations-JTgH" ON public.hmis_csv_2020_employment_educations USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_csv_2020_employment_educations-U3yq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_employment_educations-U3yq" ON public.hmis_csv_2020_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmis_csv_2020_employment_educations-bTVG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_employment_educations-bTVG" ON public.hmis_csv_2020_employment_educations USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_employment_educations-ffjb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_employment_educations-ffjb" ON public.hmis_csv_2020_employment_educations USING btree ("PersonalID"); + + +-- +-- Name: hmis_csv_2020_enrollment_cocs-AFlL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollment_cocs-AFlL" ON public.hmis_csv_2020_enrollment_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_enrollment_cocs-GYSJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollment_cocs-GYSJ" ON public.hmis_csv_2020_enrollment_cocs USING btree ("PersonalID"); + + +-- +-- Name: hmis_csv_2020_enrollment_cocs-ManB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollment_cocs-ManB" ON public.hmis_csv_2020_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmis_csv_2020_enrollment_cocs-MhSp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollment_cocs-MhSp" ON public.hmis_csv_2020_enrollment_cocs USING btree ("EnrollmentCoCID", data_source_id); + + +-- +-- Name: hmis_csv_2020_enrollment_cocs-RyqL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollment_cocs-RyqL" ON public.hmis_csv_2020_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmis_csv_2020_enrollment_cocs-dizj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollment_cocs-dizj" ON public.hmis_csv_2020_enrollment_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_enrollment_cocs-myvn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollment_cocs-myvn" ON public.hmis_csv_2020_enrollment_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_enrollment_cocs-phxe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollment_cocs-phxe" ON public.hmis_csv_2020_enrollment_cocs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_csv_2020_enrollment_cocs-zRK2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollment_cocs-zRK2" ON public.hmis_csv_2020_enrollment_cocs USING btree ("EnrollmentCoCID"); + + +-- +-- Name: hmis_csv_2020_enrollments-1CJ3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-1CJ3" ON public.hmis_csv_2020_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_enrollments-1ErZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-1ErZ" ON public.hmis_csv_2020_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmis_csv_2020_enrollments-2DM8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-2DM8" ON public.hmis_csv_2020_enrollments USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_csv_2020_enrollments-7ZVi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-7ZVi" ON public.hmis_csv_2020_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmis_csv_2020_enrollments-8UEw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-8UEw" ON public.hmis_csv_2020_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_csv_2020_enrollments-CKRZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-CKRZ" ON public.hmis_csv_2020_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmis_csv_2020_enrollments-CxJA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-CxJA" ON public.hmis_csv_2020_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmis_csv_2020_enrollments-GH0S; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-GH0S" ON public.hmis_csv_2020_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmis_csv_2020_enrollments-KtXA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-KtXA" ON public.hmis_csv_2020_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmis_csv_2020_enrollments-LQ7R; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-LQ7R" ON public.hmis_csv_2020_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmis_csv_2020_enrollments-Leaw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-Leaw" ON public.hmis_csv_2020_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmis_csv_2020_enrollments-XI6S; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-XI6S" ON public.hmis_csv_2020_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_csv_2020_enrollments-bpsk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-bpsk" ON public.hmis_csv_2020_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmis_csv_2020_enrollments-djbw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-djbw" ON public.hmis_csv_2020_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_enrollments-gF7Z; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-gF7Z" ON public.hmis_csv_2020_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmis_csv_2020_enrollments-l0fG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-l0fG" ON public.hmis_csv_2020_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmis_csv_2020_enrollments-qD0O; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_enrollments-qD0O" ON public.hmis_csv_2020_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_events-7ZMP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_events-7ZMP" ON public.hmis_csv_2020_events USING btree ("PersonalID"); + + +-- +-- Name: hmis_csv_2020_events-BBvn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_events-BBvn" ON public.hmis_csv_2020_events USING btree ("EventID", data_source_id); + + +-- +-- Name: hmis_csv_2020_events-G60G; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_events-G60G" ON public.hmis_csv_2020_events USING btree ("EventDate"); + + +-- +-- Name: hmis_csv_2020_events-HCAc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_events-HCAc" ON public.hmis_csv_2020_events USING btree ("EventID"); + + +-- +-- Name: hmis_csv_2020_events-lkZq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_events-lkZq" ON public.hmis_csv_2020_events USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_events-niJ9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_events-niJ9" ON public.hmis_csv_2020_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_csv_2020_exits-86BM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_exits-86BM" ON public.hmis_csv_2020_exits USING btree ("PersonalID"); + + +-- +-- Name: hmis_csv_2020_exits-9oMc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_exits-9oMc" ON public.hmis_csv_2020_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmis_csv_2020_exits-B03u; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_exits-B03u" ON public.hmis_csv_2020_exits USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_exits-lfLn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_exits-lfLn" ON public.hmis_csv_2020_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_csv_2020_exits-m68a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_exits-m68a" ON public.hmis_csv_2020_exits USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_csv_2020_exits-u5YR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_exits-u5YR" ON public.hmis_csv_2020_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_exits-wXSx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_exits-wXSx" ON public.hmis_csv_2020_exits USING btree ("ExitDate"); + + +-- +-- Name: hmis_csv_2020_exits-xc6a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_exits-xc6a" ON public.hmis_csv_2020_exits USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_exits-yZ3j; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_exits-yZ3j" ON public.hmis_csv_2020_exits USING btree ("ExitID"); + + +-- +-- Name: hmis_csv_2020_exports-K9wp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_exports-K9wp" ON public.hmis_csv_2020_exports USING btree ("ExportID", data_source_id); + + +-- +-- Name: hmis_csv_2020_exports-iweG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_exports-iweG" ON public.hmis_csv_2020_exports USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_funders-1HLT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_funders-1HLT" ON public.hmis_csv_2020_funders USING btree ("FunderID"); + + +-- +-- Name: hmis_csv_2020_funders-BLkd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_funders-BLkd" ON public.hmis_csv_2020_funders USING btree ("FunderID", data_source_id); + + +-- +-- Name: hmis_csv_2020_funders-IC4k; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_funders-IC4k" ON public.hmis_csv_2020_funders USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_funders-Ix1m; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_funders-Ix1m" ON public.hmis_csv_2020_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_funders-PEzG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_funders-PEzG" ON public.hmis_csv_2020_funders USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_health_and_dvs-2NoM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_health_and_dvs-2NoM" ON public.hmis_csv_2020_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmis_csv_2020_health_and_dvs-6zDo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_health_and_dvs-6zDo" ON public.hmis_csv_2020_health_and_dvs USING btree ("HealthAndDVID", data_source_id); + + +-- +-- Name: hmis_csv_2020_health_and_dvs-TUWh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_health_and_dvs-TUWh" ON public.hmis_csv_2020_health_and_dvs USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_health_and_dvs-lO76; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_health_and_dvs-lO76" ON public.hmis_csv_2020_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_health_and_dvs-xYMb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_health_and_dvs-xYMb" ON public.hmis_csv_2020_health_and_dvs USING btree ("PersonalID"); + + +-- +-- Name: hmis_csv_2020_health_and_dvs-y2fn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_health_and_dvs-y2fn" ON public.hmis_csv_2020_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_health_and_dvs-zvlJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_health_and_dvs-zvlJ" ON public.hmis_csv_2020_health_and_dvs USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_csv_2020_income_benefits-6HMy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_income_benefits-6HMy" ON public.hmis_csv_2020_income_benefits USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_csv_2020_income_benefits-KXp0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_income_benefits-KXp0" ON public.hmis_csv_2020_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmis_csv_2020_income_benefits-O58u; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_income_benefits-O58u" ON public.hmis_csv_2020_income_benefits USING btree ("IncomeBenefitsID", data_source_id); + + +-- +-- Name: hmis_csv_2020_income_benefits-Qf5l; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_income_benefits-Qf5l" ON public.hmis_csv_2020_income_benefits USING btree ("PersonalID"); + + +-- +-- Name: hmis_csv_2020_income_benefits-SEnq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_income_benefits-SEnq" ON public.hmis_csv_2020_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_income_benefits-YyfJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_income_benefits-YyfJ" ON public.hmis_csv_2020_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_income_benefits-lVjn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_income_benefits-lVjn" ON public.hmis_csv_2020_income_benefits USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_inventories-BTZq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_inventories-BTZq" ON public.hmis_csv_2020_inventories USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis_csv_2020_inventories-NeSc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_inventories-NeSc" ON public.hmis_csv_2020_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_inventories-RGrg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_inventories-RGrg" ON public.hmis_csv_2020_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmis_csv_2020_inventories-eYpq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_inventories-eYpq" ON public.hmis_csv_2020_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_inventories-sfWI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_inventories-sfWI" ON public.hmis_csv_2020_inventories USING btree ("InventoryID", data_source_id); + + +-- +-- Name: hmis_csv_2020_inventories-wdcK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_inventories-wdcK" ON public.hmis_csv_2020_inventories USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_organizations-LqQF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_organizations-LqQF" ON public.hmis_csv_2020_organizations USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_organizations-cRJF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_organizations-cRJF" ON public.hmis_csv_2020_organizations USING btree ("OrganizationID", data_source_id); + + +-- +-- Name: hmis_csv_2020_organizations-tyIy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_organizations-tyIy" ON public.hmis_csv_2020_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmis_csv_2020_project_cocs-336L; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_project_cocs-336L" ON public.hmis_csv_2020_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_project_cocs-5NHP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_project_cocs-5NHP" ON public.hmis_csv_2020_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmis_csv_2020_project_cocs-G4ij; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_project_cocs-G4ij" ON public.hmis_csv_2020_project_cocs USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmis_csv_2020_project_cocs-K765; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_project_cocs-K765" ON public.hmis_csv_2020_project_cocs USING btree ("ProjectCoCID", data_source_id); + + +-- +-- Name: hmis_csv_2020_project_cocs-fRQZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_project_cocs-fRQZ" ON public.hmis_csv_2020_project_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_project_cocs-wP5S; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_project_cocs-wP5S" ON public.hmis_csv_2020_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_projects-I9LN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_projects-I9LN" ON public.hmis_csv_2020_projects USING btree ("ProjectID"); + + +-- +-- Name: hmis_csv_2020_projects-MNAC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_projects-MNAC" ON public.hmis_csv_2020_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_projects-StS2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_projects-StS2" ON public.hmis_csv_2020_projects USING btree ("ProjectID", data_source_id); + + +-- +-- Name: hmis_csv_2020_projects-f4DP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_projects-f4DP" ON public.hmis_csv_2020_projects USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_projects-gAEK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_projects-gAEK" ON public.hmis_csv_2020_projects USING btree ("ProjectType"); + + +-- +-- Name: hmis_csv_2020_projects-m4tQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_projects-m4tQ" ON public.hmis_csv_2020_projects USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_services-1ggS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-1ggS" ON public.hmis_csv_2020_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmis_csv_2020_services-4Q3B; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-4Q3B" ON public.hmis_csv_2020_services USING btree ("ServicesID"); + + +-- +-- Name: hmis_csv_2020_services-7Ekp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-7Ekp" ON public.hmis_csv_2020_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmis_csv_2020_services-8SnT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-8SnT" ON public.hmis_csv_2020_services USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmis_csv_2020_services-MSYV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-MSYV" ON public.hmis_csv_2020_services USING btree ("DateUpdated"); + + +-- +-- Name: hmis_csv_2020_services-Nlyp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-Nlyp" ON public.hmis_csv_2020_services USING btree ("DateCreated"); + + +-- +-- Name: hmis_csv_2020_services-VRZ7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-VRZ7" ON public.hmis_csv_2020_services USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmis_csv_2020_services-ZiEF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-ZiEF" ON public.hmis_csv_2020_services USING btree ("PersonalID"); + + +-- +-- Name: hmis_csv_2020_services-b6iK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-b6iK" ON public.hmis_csv_2020_services USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_services-dacu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-dacu" ON public.hmis_csv_2020_services USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_csv_2020_services-feYP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-feYP" ON public.hmis_csv_2020_services USING btree ("RecordType"); + + +-- +-- Name: hmis_csv_2020_services-i7KB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-i7KB" ON public.hmis_csv_2020_services USING btree ("DateProvided"); + + +-- +-- Name: hmis_csv_2020_services-lVDS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-lVDS" ON public.hmis_csv_2020_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmis_csv_2020_services-mvqR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_services-mvqR" ON public.hmis_csv_2020_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmis_csv_2020_users-3tXl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_users-3tXl" ON public.hmis_csv_2020_users USING btree ("UserID"); + + +-- +-- Name: hmis_csv_2020_users-Vflk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_users-Vflk" ON public.hmis_csv_2020_users USING btree ("ExportID"); + + +-- +-- Name: hmis_csv_2020_users-Y4OW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2020_users-Y4OW" ON public.hmis_csv_2020_users USING btree ("UserID", data_source_id); + + +-- +-- Name: hmis_csv_2022_affiliations-6457; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2022_affiliations-6457" ON public.hmis_csv_2022_affiliations USING btree ("AffiliationID", data_source_id); + + +-- +-- Name: hmis_csv_2022_clients-230f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2022_clients-230f" ON public.hmis_csv_2022_clients USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_csv_2022_current_living_situations-cf31; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2022_current_living_situations-cf31" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSitID", data_source_id); + + +-- +-- Name: hmis_csv_2022_enrollments-0a46; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2022_enrollments-0a46" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_csv_2022_exits-cfdd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2022_exits-cfdd" ON public.hmis_csv_2022_exits USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_csv_2022_funders-4ad5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2022_funders-4ad5" ON public.hmis_csv_2022_funders USING btree ("FunderID", data_source_id); + + +-- +-- Name: hmis_csv_2022_health_and_dvs-e384; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2022_health_and_dvs-e384" ON public.hmis_csv_2022_health_and_dvs USING btree ("HealthAndDVID", data_source_id); + + +-- +-- Name: hmis_csv_2022_inventories-86c0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2022_inventories-86c0" ON public.hmis_csv_2022_inventories USING btree ("InventoryID", data_source_id); + + +-- +-- Name: hmis_csv_2022_organizations-7580; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2022_organizations-7580" ON public.hmis_csv_2022_organizations USING btree ("OrganizationID", data_source_id); + + +-- +-- Name: hmis_csv_2022_project_cocs-3966; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2022_project_cocs-3966" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectCoCID", data_source_id); + + +-- +-- Name: hmis_csv_2022_projects-92c5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2022_projects-92c5" ON public.hmis_csv_2022_projects USING btree ("ProjectID", data_source_id); + + +-- +-- Name: hmis_csv_2022_services-7a57; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2022_services-7a57" ON public.hmis_csv_2022_services USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_csv_2024_affiliations-6457; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_affiliations-6457" ON public.hmis_csv_2024_affiliations USING btree ("AffiliationID", data_source_id); + + +-- +-- Name: hmis_csv_2024_assessment_questions-0cd3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_assessment_questions-0cd3" ON public.hmis_csv_2024_assessment_questions USING btree ("AssessmentQuestionID", data_source_id); + + +-- +-- Name: hmis_csv_2024_assessments-df76; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_assessments-df76" ON public.hmis_csv_2024_assessments USING btree ("AssessmentID", data_source_id); + + +-- +-- Name: hmis_csv_2024_ce_participations-5c6f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_ce_participations-5c6f" ON public.hmis_csv_2024_ce_participations USING btree ("CEParticipationID", data_source_id); + + +-- +-- Name: hmis_csv_2024_clients-230f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_clients-230f" ON public.hmis_csv_2024_clients USING btree ("PersonalID", data_source_id); + + +-- +-- Name: hmis_csv_2024_current_living_situations-cf31; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_current_living_situations-cf31" ON public.hmis_csv_2024_current_living_situations USING btree ("CurrentLivingSitID", data_source_id); + + +-- +-- Name: hmis_csv_2024_disabilities-7712; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_disabilities-7712" ON public.hmis_csv_2024_disabilities USING btree ("DisabilitiesID", data_source_id); + + +-- +-- Name: hmis_csv_2024_employment_educations-3032; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_employment_educations-3032" ON public.hmis_csv_2024_employment_educations USING btree ("EmploymentEducationID", data_source_id); + + +-- +-- Name: hmis_csv_2024_enrollments-0a46; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_enrollments-0a46" ON public.hmis_csv_2024_enrollments USING btree ("EnrollmentID", data_source_id); + + +-- +-- Name: hmis_csv_2024_exits-cfdd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_exits-cfdd" ON public.hmis_csv_2024_exits USING btree ("ExitID", data_source_id); + + +-- +-- Name: hmis_csv_2024_funders-4ad5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_funders-4ad5" ON public.hmis_csv_2024_funders USING btree ("FunderID", data_source_id); + + +-- +-- Name: hmis_csv_2024_health_and_dvs-e384; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_health_and_dvs-e384" ON public.hmis_csv_2024_health_and_dvs USING btree ("HealthAndDVID", data_source_id); + + +-- +-- Name: hmis_csv_2024_hmis_participations-0f0d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_hmis_participations-0f0d" ON public.hmis_csv_2024_hmis_participations USING btree ("HMISParticipationID", data_source_id); + + +-- +-- Name: hmis_csv_2024_income_benefits-200d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_income_benefits-200d" ON public.hmis_csv_2024_income_benefits USING btree ("IncomeBenefitsID", data_source_id); + + +-- +-- Name: hmis_csv_2024_inventories-86c0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_inventories-86c0" ON public.hmis_csv_2024_inventories USING btree ("InventoryID", data_source_id); + + +-- +-- Name: hmis_csv_2024_organizations-7580; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_organizations-7580" ON public.hmis_csv_2024_organizations USING btree ("OrganizationID", data_source_id); + + +-- +-- Name: hmis_csv_2024_project_cocs-3966; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_project_cocs-3966" ON public.hmis_csv_2024_project_cocs USING btree ("ProjectCoCID", data_source_id); + + +-- +-- Name: hmis_csv_2024_projects-92c5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_projects-92c5" ON public.hmis_csv_2024_projects USING btree ("ProjectID", data_source_id); + + +-- +-- Name: hmis_csv_2024_services-7a57; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_services-7a57" ON public.hmis_csv_2024_services USING btree ("ServicesID", data_source_id); + + +-- +-- Name: hmis_csv_2024_youth_education_statuses-a32f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_2024_youth_education_statuses-a32f" ON public.hmis_csv_2024_youth_education_statuses USING btree ("YouthEducationStatusID", data_source_id); + + +-- +-- Name: hmis_csv_import_errors-wgH3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_import_errors-wgH3" ON public.hmis_csv_import_errors USING btree (source_type, source_id); + + +-- +-- Name: hmis_csv_validations-ONiu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmis_csv_validations-ONiu" ON public.hmis_csv_import_validations USING btree (source_type, source_id); + + +-- +-- Name: hmis_dqt_cls_cls_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmis_dqt_cls_cls_id ON public.hmis_dqt_current_living_situations USING btree (situation); + + +-- +-- Name: hmisaggregatedenrollments_1KEG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_1KEG" ON public.hmis_aggregated_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmisaggregatedenrollments_A5GJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_A5GJ" ON public.hmis_aggregated_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmisaggregatedenrollments_FHjE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_FHjE" ON public.hmis_aggregated_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmisaggregatedenrollments_NHNS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_NHNS" ON public.hmis_aggregated_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmisaggregatedenrollments_QCCR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_QCCR" ON public.hmis_aggregated_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmisaggregatedenrollments_Uv3q; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_Uv3q" ON public.hmis_aggregated_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmisaggregatedenrollments_V6EX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_V6EX" ON public.hmis_aggregated_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmisaggregatedenrollments_VpLz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_VpLz" ON public.hmis_aggregated_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmisaggregatedenrollments_bGvX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_bGvX" ON public.hmis_aggregated_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmisaggregatedenrollments_bHWN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_bHWN" ON public.hmis_aggregated_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmisaggregatedenrollments_c08h; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmisaggregatedenrollments_c08h ON public.hmis_aggregated_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmisaggregatedenrollments_eq3c; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmisaggregatedenrollments_eq3c ON public.hmis_aggregated_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmisaggregatedenrollments_kHZg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_kHZg" ON public.hmis_aggregated_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmisaggregatedenrollments_kQyq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_kQyq" ON public.hmis_aggregated_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmisaggregatedenrollments_naBW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_naBW" ON public.hmis_aggregated_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmisaggregatedenrollments_oNYR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_oNYR" ON public.hmis_aggregated_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmisaggregatedenrollments_uy6S; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedenrollments_uy6S" ON public.hmis_aggregated_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmisaggregatedexits_3LO0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedexits_3LO0" ON public.hmis_aggregated_exits USING btree ("ExportID"); + + +-- +-- Name: hmisaggregatedexits_IHNR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedexits_IHNR" ON public.hmis_aggregated_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmisaggregatedexits_IKVS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedexits_IKVS" ON public.hmis_aggregated_exits USING btree ("DateCreated"); + + +-- +-- Name: hmisaggregatedexits_XuIA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedexits_XuIA" ON public.hmis_aggregated_exits USING btree ("ExitID"); + + +-- +-- Name: hmisaggregatedexits_YcRf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedexits_YcRf" ON public.hmis_aggregated_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmisaggregatedexits_bSNd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedexits_bSNd" ON public.hmis_aggregated_exits USING btree ("PersonalID"); + + +-- +-- Name: hmisaggregatedexits_rDFN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedexits_rDFN" ON public.hmis_aggregated_exits USING btree ("ExitDate"); + + +-- +-- Name: hmisaggregatedexits_tmOV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmisaggregatedexits_tmOV" ON public.hmis_aggregated_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022affiliations_6QZN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022affiliations_6QZN" ON public.hmis_csv_2022_affiliations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022affiliations_IYWP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022affiliations_IYWP" ON public.hmis_csv_2022_affiliations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022affiliations_K0pm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022affiliations_K0pm" ON public.hmis_csv_2022_affiliations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022affiliations_ZrIt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022affiliations_ZrIt" ON public.hmis_csv_2022_affiliations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022affiliations_ayf6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022affiliations_ayf6 ON public.hmis_csv_2022_affiliations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessmentquestions_0Hnw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentquestions_0Hnw" ON public.hmis_csv_2022_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessmentquestions_9OKb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentquestions_9OKb" ON public.hmis_csv_2022_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessmentquestions_BYOc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentquestions_BYOc" ON public.hmis_csv_2022_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessmentquestions_Ce5I; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentquestions_Ce5I" ON public.hmis_csv_2022_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessmentquestions_Wboq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentquestions_Wboq" ON public.hmis_csv_2022_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessmentquestions_YiRf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentquestions_YiRf" ON public.hmis_csv_2022_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessmentquestions_b7du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022assessmentquestions_b7du ON public.hmis_csv_2022_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessmentquestions_f92d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022assessmentquestions_f92d ON public.hmis_csv_2022_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessmentquestions_tkC5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentquestions_tkC5" ON public.hmis_csv_2022_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessmentquestions_zaOr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentquestions_zaOr" ON public.hmis_csv_2022_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessmentresults_FEyR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentresults_FEyR" ON public.hmis_csv_2022_assessment_results USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessmentresults_HXI3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentresults_HXI3" ON public.hmis_csv_2022_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessmentresults_IHby; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentresults_IHby" ON public.hmis_csv_2022_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessmentresults_Kx2Z; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentresults_Kx2Z" ON public.hmis_csv_2022_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessmentresults_WyDM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentresults_WyDM" ON public.hmis_csv_2022_assessment_results USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessmentresults_deg4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022assessmentresults_deg4 ON public.hmis_csv_2022_assessment_results USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessmentresults_fmqe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022assessmentresults_fmqe ON public.hmis_csv_2022_assessment_results USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessmentresults_jF3M; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentresults_jF3M" ON public.hmis_csv_2022_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessmentresults_mcU2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentresults_mcU2" ON public.hmis_csv_2022_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessmentresults_tz9L; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessmentresults_tz9L" ON public.hmis_csv_2022_assessment_results USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessments_2PIZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_2PIZ" ON public.hmis_csv_2022_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmiscsv2022assessments_53fu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022assessments_53fu ON public.hmis_csv_2022_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmiscsv2022assessments_7pXC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_7pXC" ON public.hmis_csv_2022_assessments USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessments_9pYi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_9pYi" ON public.hmis_csv_2022_assessments USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessments_BR24; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_BR24" ON public.hmis_csv_2022_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessments_C04R; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_C04R" ON public.hmis_csv_2022_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessments_NGHw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_NGHw" ON public.hmis_csv_2022_assessments USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022assessments_NaP9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_NaP9" ON public.hmis_csv_2022_assessments USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022assessments_OGHC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_OGHC" ON public.hmis_csv_2022_assessments USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022assessments_Pd8t; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_Pd8t" ON public.hmis_csv_2022_assessments USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessments_Rg8h; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_Rg8h" ON public.hmis_csv_2022_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmiscsv2022assessments_Rthi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_Rthi" ON public.hmis_csv_2022_assessments USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022assessments_UlUg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_UlUg" ON public.hmis_csv_2022_assessments USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022assessments_UsZf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_UsZf" ON public.hmis_csv_2022_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmiscsv2022assessments_V72H; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_V72H" ON public.hmis_csv_2022_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessments_X4D5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_X4D5" ON public.hmis_csv_2022_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessments_ZFcY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_ZFcY" ON public.hmis_csv_2022_assessments USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022assessments_bNif; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_bNif" ON public.hmis_csv_2022_assessments USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022assessments_iP36; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_iP36" ON public.hmis_csv_2022_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmiscsv2022assessments_mO4c; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_mO4c" ON public.hmis_csv_2022_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2022assessments_peUV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_peUV" ON public.hmis_csv_2022_assessments USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022assessments_rDxW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_rDxW" ON public.hmis_csv_2022_assessments USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022assessments_rylL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_rylL" ON public.hmis_csv_2022_assessments USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022assessments_tGj7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_tGj7" ON public.hmis_csv_2022_assessments USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022assessments_vgMX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022assessments_vgMX" ON public.hmis_csv_2022_assessments USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022clients_1B2M; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_1B2M" ON public.hmis_csv_2022_clients USING btree ("DOB"); + + +-- +-- Name: hmiscsv2022clients_2g9p; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022clients_2g9p ON public.hmis_csv_2022_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022clients_4Erz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_4Erz" ON public.hmis_csv_2022_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmiscsv2022clients_603f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022clients_603f ON public.hmis_csv_2022_clients USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022clients_9y96; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022clients_9y96 ON public.hmis_csv_2022_clients USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022clients_ANF3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_ANF3" ON public.hmis_csv_2022_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022clients_ATux; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_ATux" ON public.hmis_csv_2022_clients USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022clients_AblB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_AblB" ON public.hmis_csv_2022_clients USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022clients_CftS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_CftS" ON public.hmis_csv_2022_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmiscsv2022clients_DFQP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_DFQP" ON public.hmis_csv_2022_clients USING btree ("LastName"); + + +-- +-- Name: hmiscsv2022clients_DlZc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_DlZc" ON public.hmis_csv_2022_clients USING btree ("DOB"); + + +-- +-- Name: hmiscsv2022clients_Go11; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_Go11" ON public.hmis_csv_2022_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmiscsv2022clients_HMAT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_HMAT" ON public.hmis_csv_2022_clients USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022clients_HyWK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_HyWK" ON public.hmis_csv_2022_clients USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022clients_Ipa3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_Ipa3" ON public.hmis_csv_2022_clients USING btree ("FirstName"); + + +-- +-- Name: hmiscsv2022clients_SPth; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_SPth" ON public.hmis_csv_2022_clients USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022clients_Tyfa; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_Tyfa" ON public.hmis_csv_2022_clients USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022clients_UOq6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_UOq6" ON public.hmis_csv_2022_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmiscsv2022clients_Ue7r; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_Ue7r" ON public.hmis_csv_2022_clients USING btree ("LastName"); + + +-- +-- Name: hmiscsv2022clients_XjIr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_XjIr" ON public.hmis_csv_2022_clients USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022clients_ZIZI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_ZIZI" ON public.hmis_csv_2022_clients USING btree ("DOB"); + + +-- +-- Name: hmiscsv2022clients_ZbiK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_ZbiK" ON public.hmis_csv_2022_clients USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022clients_bTWy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_bTWy" ON public.hmis_csv_2022_clients USING btree ("DOB"); + + +-- +-- Name: hmiscsv2022clients_dpoO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_dpoO" ON public.hmis_csv_2022_clients USING btree ("FirstName"); + + +-- +-- Name: hmiscsv2022clients_dxgO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_dxgO" ON public.hmis_csv_2022_clients USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022clients_hLhh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_hLhh" ON public.hmis_csv_2022_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022clients_ilET; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_ilET" ON public.hmis_csv_2022_clients USING btree ("FirstName"); + + +-- +-- Name: hmiscsv2022clients_jtrl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022clients_jtrl ON public.hmis_csv_2022_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022clients_lhQG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_lhQG" ON public.hmis_csv_2022_clients USING btree ("LastName"); + + +-- +-- Name: hmiscsv2022clients_nEPb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_nEPb" ON public.hmis_csv_2022_clients USING btree ("FirstName"); + + +-- +-- Name: hmiscsv2022clients_nuV1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_nuV1" ON public.hmis_csv_2022_clients USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022clients_oEBV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_oEBV" ON public.hmis_csv_2022_clients USING btree ("LastName"); + + +-- +-- Name: hmiscsv2022clients_preE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_preE" ON public.hmis_csv_2022_clients USING btree ("DOB"); + + +-- +-- Name: hmiscsv2022clients_qxVi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_qxVi" ON public.hmis_csv_2022_clients USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022clients_tVth; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_tVth" ON public.hmis_csv_2022_clients USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022clients_tWOM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_tWOM" ON public.hmis_csv_2022_clients USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022clients_u5Dy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_u5Dy" ON public.hmis_csv_2022_clients USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022clients_vJDq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_vJDq" ON public.hmis_csv_2022_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmiscsv2022clients_xYa1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_xYa1" ON public.hmis_csv_2022_clients USING btree ("LastName"); + + +-- +-- Name: hmiscsv2022clients_yj7O; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_yj7O" ON public.hmis_csv_2022_clients USING btree ("FirstName"); + + +-- +-- Name: hmiscsv2022clients_zrAC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022clients_zrAC" ON public.hmis_csv_2022_clients USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_0QjY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_0QjY" ON public.hmis_csv_2022_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_0whq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022currentlivingsituations_0whq ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_2ix3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022currentlivingsituations_2ix3 ON public.hmis_csv_2022_current_living_situations USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_79om; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022currentlivingsituations_79om ON public.hmis_csv_2022_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_G53q; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_G53q" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_IbRS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_IbRS" ON public.hmis_csv_2022_current_living_situations USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_L04m; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_L04m" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_L44P; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_L44P" ON public.hmis_csv_2022_current_living_situations USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_Lu7u; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_Lu7u" ON public.hmis_csv_2022_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_MBRO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_MBRO" ON public.hmis_csv_2022_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_OoDu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_OoDu" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_Rgzv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_Rgzv" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_Rq1z; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_Rq1z" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_Wec8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_Wec8" ON public.hmis_csv_2022_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_Zwl1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_Zwl1" ON public.hmis_csv_2022_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_beIg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_beIg" ON public.hmis_csv_2022_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_c7Fg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_c7Fg" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_dUT6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_dUT6" ON public.hmis_csv_2022_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_hxGV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_hxGV" ON public.hmis_csv_2022_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_iNeW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_iNeW" ON public.hmis_csv_2022_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_lc17; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022currentlivingsituations_lc17 ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_oN7a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_oN7a" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_prGC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_prGC" ON public.hmis_csv_2022_current_living_situations USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_qJOi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_qJOi" ON public.hmis_csv_2022_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_ttmJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_ttmJ" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_xWxO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_xWxO" ON public.hmis_csv_2022_current_living_situations USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_y4vM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_y4vM" ON public.hmis_csv_2022_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_yXYJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_yXYJ" ON public.hmis_csv_2022_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_z0XS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_z0XS" ON public.hmis_csv_2022_current_living_situations USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022currentlivingsituations_zYGE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022currentlivingsituations_zYGE" ON public.hmis_csv_2022_current_living_situations USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022disabilities_0FAj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_0FAj" ON public.hmis_csv_2022_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022disabilities_14pD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_14pD" ON public.hmis_csv_2022_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmiscsv2022disabilities_3jSy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_3jSy" ON public.hmis_csv_2022_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022disabilities_6NwA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_6NwA" ON public.hmis_csv_2022_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022disabilities_6PJV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_6PJV" ON public.hmis_csv_2022_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022disabilities_ARC4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_ARC4" ON public.hmis_csv_2022_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022disabilities_BfOC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_BfOC" ON public.hmis_csv_2022_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmiscsv2022disabilities_DUOj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_DUOj" ON public.hmis_csv_2022_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022disabilities_Gwg7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_Gwg7" ON public.hmis_csv_2022_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022disabilities_HfAi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_HfAi" ON public.hmis_csv_2022_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022disabilities_Ia96; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_Ia96" ON public.hmis_csv_2022_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022disabilities_JS03; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_JS03" ON public.hmis_csv_2022_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmiscsv2022disabilities_JlIz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_JlIz" ON public.hmis_csv_2022_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022disabilities_MLpw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_MLpw" ON public.hmis_csv_2022_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022disabilities_NAn7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_NAn7" ON public.hmis_csv_2022_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022disabilities_OFo6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_OFo6" ON public.hmis_csv_2022_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022disabilities_OMdy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_OMdy" ON public.hmis_csv_2022_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022disabilities_Olzq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_Olzq" ON public.hmis_csv_2022_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022disabilities_Tf5p; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_Tf5p" ON public.hmis_csv_2022_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmiscsv2022disabilities_TwHW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_TwHW" ON public.hmis_csv_2022_disabilities USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022disabilities_VMgh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_VMgh" ON public.hmis_csv_2022_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022disabilities_bckS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_bckS" ON public.hmis_csv_2022_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022disabilities_dHHy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_dHHy" ON public.hmis_csv_2022_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022disabilities_eK81; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_eK81" ON public.hmis_csv_2022_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022disabilities_fd6N; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_fd6N" ON public.hmis_csv_2022_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022disabilities_jDA7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_jDA7" ON public.hmis_csv_2022_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022disabilities_jabB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_jabB" ON public.hmis_csv_2022_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022disabilities_kUs4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_kUs4" ON public.hmis_csv_2022_disabilities USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022disabilities_xTGY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022disabilities_xTGY" ON public.hmis_csv_2022_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmiscsv2022disabilities_y3fv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022disabilities_y3fv ON public.hmis_csv_2022_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022employmenteducations_6eDi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_6eDi" ON public.hmis_csv_2022_employment_educations USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022employmenteducations_78id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022employmenteducations_78id ON public.hmis_csv_2022_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmiscsv2022employmenteducations_8Z2N; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_8Z2N" ON public.hmis_csv_2022_employment_educations USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022employmenteducations_A6mw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_A6mw" ON public.hmis_csv_2022_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022employmenteducations_AiJX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_AiJX" ON public.hmis_csv_2022_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022employmenteducations_EVib; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_EVib" ON public.hmis_csv_2022_employment_educations USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022employmenteducations_F0mG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_F0mG" ON public.hmis_csv_2022_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022employmenteducations_FiLV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_FiLV" ON public.hmis_csv_2022_employment_educations USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022employmenteducations_LI7n; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_LI7n" ON public.hmis_csv_2022_employment_educations USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022employmenteducations_MSFC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_MSFC" ON public.hmis_csv_2022_employment_educations USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022employmenteducations_NAxg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_NAxg" ON public.hmis_csv_2022_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmiscsv2022employmenteducations_NbWu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_NbWu" ON public.hmis_csv_2022_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmiscsv2022employmenteducations_R9hB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_R9hB" ON public.hmis_csv_2022_employment_educations USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022employmenteducations_Ysak; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_Ysak" ON public.hmis_csv_2022_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022employmenteducations_Yxep; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_Yxep" ON public.hmis_csv_2022_employment_educations USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022employmenteducations_ZbXO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_ZbXO" ON public.hmis_csv_2022_employment_educations USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022employmenteducations_bJWx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_bJWx" ON public.hmis_csv_2022_employment_educations USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022employmenteducations_cugU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_cugU" ON public.hmis_csv_2022_employment_educations USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022employmenteducations_dRqv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_dRqv" ON public.hmis_csv_2022_employment_educations USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022employmenteducations_fmAi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_fmAi" ON public.hmis_csv_2022_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmiscsv2022employmenteducations_iobe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022employmenteducations_iobe ON public.hmis_csv_2022_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022employmenteducations_j9oN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_j9oN" ON public.hmis_csv_2022_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022employmenteducations_lIAh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_lIAh" ON public.hmis_csv_2022_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022employmenteducations_mmce; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022employmenteducations_mmce ON public.hmis_csv_2022_employment_educations USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022employmenteducations_ocww; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022employmenteducations_ocww ON public.hmis_csv_2022_employment_educations USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022employmenteducations_oprT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_oprT" ON public.hmis_csv_2022_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022employmenteducations_ozcJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_ozcJ" ON public.hmis_csv_2022_employment_educations USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022employmenteducations_skDR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_skDR" ON public.hmis_csv_2022_employment_educations USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022employmenteducations_wddn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022employmenteducations_wddn ON public.hmis_csv_2022_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmiscsv2022employmenteducations_zwTX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022employmenteducations_zwTX" ON public.hmis_csv_2022_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_0IAL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_0IAL" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_1Xm2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_1Xm2" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_1dHp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_1dHp" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_8MhC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_8MhC" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_CkJU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_CkJU" ON public.hmis_csv_2022_enrollment_cocs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_DOSa; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_DOSa" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_EYBf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_EYBf" ON public.hmis_csv_2022_enrollment_cocs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_FwbF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_FwbF" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_GQqO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_GQqO" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_GuqN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_GuqN" ON public.hmis_csv_2022_enrollment_cocs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_MbjI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_MbjI" ON public.hmis_csv_2022_enrollment_cocs USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_RAnO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_RAnO" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_RFoA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_RFoA" ON public.hmis_csv_2022_enrollment_cocs USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_RWu2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_RWu2" ON public.hmis_csv_2022_enrollment_cocs USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_SbfY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_SbfY" ON public.hmis_csv_2022_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_Uzo4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_Uzo4" ON public.hmis_csv_2022_enrollment_cocs USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_VVbQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_VVbQ" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_WRnl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_WRnl" ON public.hmis_csv_2022_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_XgoM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_XgoM" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_Yhrm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_Yhrm" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_ZMp3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_ZMp3" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_aC6n; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_aC6n" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_axDz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_axDz" ON public.hmis_csv_2022_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_caGj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_caGj" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_cezi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022enrollmentcocs_cezi ON public.hmis_csv_2022_enrollment_cocs USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_emcB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_emcB" ON public.hmis_csv_2022_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_f3a2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022enrollmentcocs_f3a2 ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_g5J5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_g5J5" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_gXcN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_gXcN" ON public.hmis_csv_2022_enrollment_cocs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_iz8D; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_iz8D" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_mKux; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_mKux" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_nt0O; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_nt0O" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_oCoG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_oCoG" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_p3i5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022enrollmentcocs_p3i5 ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_pfEL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_pfEL" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_pmSf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_pmSf" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_qsT9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_qsT9" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_wcbV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_wcbV" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_wiac; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022enrollmentcocs_wiac ON public.hmis_csv_2022_enrollment_cocs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_ybyR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_ybyR" ON public.hmis_csv_2022_enrollment_cocs USING btree ("CoCCode"); + + +-- +-- Name: hmiscsv2022enrollmentcocs_zIJt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollmentcocs_zIJt" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022enrollments_000u; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022enrollments_000u ON public.hmis_csv_2022_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmiscsv2022enrollments_02Gq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_02Gq" ON public.hmis_csv_2022_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022enrollments_04uI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_04uI" ON public.hmis_csv_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmiscsv2022enrollments_0CSP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_0CSP" ON public.hmis_csv_2022_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmiscsv2022enrollments_0HUb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_0HUb" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmiscsv2022enrollments_0x3v; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022enrollments_0x3v ON public.hmis_csv_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmiscsv2022enrollments_1O7e; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_1O7e" ON public.hmis_csv_2022_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022enrollments_1jXQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_1jXQ" ON public.hmis_csv_2022_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmiscsv2022enrollments_2KUN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_2KUN" ON public.hmis_csv_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmiscsv2022enrollments_2Uh6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_2Uh6" ON public.hmis_csv_2022_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmiscsv2022enrollments_2W2h; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_2W2h" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmiscsv2022enrollments_3085; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022enrollments_3085 ON public.hmis_csv_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmiscsv2022enrollments_5Od1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_5Od1" ON public.hmis_csv_2022_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022enrollments_6RGw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_6RGw" ON public.hmis_csv_2022_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022enrollments_6xDx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_6xDx" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmiscsv2022enrollments_9KtN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_9KtN" ON public.hmis_csv_2022_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022enrollments_COSj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_COSj" ON public.hmis_csv_2022_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmiscsv2022enrollments_DEbx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_DEbx" ON public.hmis_csv_2022_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmiscsv2022enrollments_G41a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_G41a" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022enrollments_G6mN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_G6mN" ON public.hmis_csv_2022_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022enrollments_HAgm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_HAgm" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmiscsv2022enrollments_INhf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_INhf" ON public.hmis_csv_2022_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmiscsv2022enrollments_Jfc4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_Jfc4" ON public.hmis_csv_2022_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022enrollments_Kbfs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_Kbfs" ON public.hmis_csv_2022_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmiscsv2022enrollments_Knt6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_Knt6" ON public.hmis_csv_2022_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmiscsv2022enrollments_LOT5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_LOT5" ON public.hmis_csv_2022_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022enrollments_LVhZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_LVhZ" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmiscsv2022enrollments_Lr7G; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_Lr7G" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022enrollments_N5Wd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_N5Wd" ON public.hmis_csv_2022_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022enrollments_NGvh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_NGvh" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmiscsv2022enrollments_OvVn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_OvVn" ON public.hmis_csv_2022_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmiscsv2022enrollments_PKib; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_PKib" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmiscsv2022enrollments_PZWA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_PZWA" ON public.hmis_csv_2022_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmiscsv2022enrollments_QE4p; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_QE4p" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022enrollments_QJf5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_QJf5" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmiscsv2022enrollments_QqES; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_QqES" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022enrollments_S95a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_S95a" ON public.hmis_csv_2022_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmiscsv2022enrollments_SIaS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_SIaS" ON public.hmis_csv_2022_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022enrollments_TUkM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_TUkM" ON public.hmis_csv_2022_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022enrollments_Vf7B; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_Vf7B" ON public.hmis_csv_2022_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmiscsv2022enrollments_WODv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_WODv" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2022enrollments_XcDq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_XcDq" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2022enrollments_Xlha; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_Xlha" ON public.hmis_csv_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmiscsv2022enrollments_YQva; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_YQva" ON public.hmis_csv_2022_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmiscsv2022enrollments_YiGw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_YiGw" ON public.hmis_csv_2022_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmiscsv2022enrollments_YwGX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_YwGX" ON public.hmis_csv_2022_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022enrollments_ZJOW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_ZJOW" ON public.hmis_csv_2022_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022enrollments_b4C4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_b4C4" ON public.hmis_csv_2022_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022enrollments_bItG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_bItG" ON public.hmis_csv_2022_enrollments USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022enrollments_cCys; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_cCys" ON public.hmis_csv_2022_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022enrollments_dJ9X; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_dJ9X" ON public.hmis_csv_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmiscsv2022enrollments_dc9H; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_dc9H" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmiscsv2022enrollments_eMPH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_eMPH" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmiscsv2022enrollments_fYTX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_fYTX" ON public.hmis_csv_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmiscsv2022enrollments_fkcM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_fkcM" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmiscsv2022enrollments_gn6K; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_gn6K" ON public.hmis_csv_2022_enrollments USING btree ("LivingSituation"); + + +-- +-- Name: hmiscsv2022enrollments_goII; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_goII" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmiscsv2022enrollments_hYxd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_hYxd" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmiscsv2022enrollments_hdwb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022enrollments_hdwb ON public.hmis_csv_2022_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmiscsv2022enrollments_iWHQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_iWHQ" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022enrollments_jJjY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_jJjY" ON public.hmis_csv_2022_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022enrollments_jiTz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_jiTz" ON public.hmis_csv_2022_enrollments USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022enrollments_kdcK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_kdcK" ON public.hmis_csv_2022_enrollments USING btree ("EntryDate"); + + +-- +-- Name: hmiscsv2022enrollments_kfHu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_kfHu" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmiscsv2022enrollments_lCDv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_lCDv" ON public.hmis_csv_2022_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022enrollments_mGyY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_mGyY" ON public.hmis_csv_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmiscsv2022enrollments_nhXb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_nhXb" ON public.hmis_csv_2022_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022enrollments_oC1q; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_oC1q" ON public.hmis_csv_2022_enrollments USING btree ("RelationshipToHoH"); + + +-- +-- Name: hmiscsv2022enrollments_oOOv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_oOOv" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2022enrollments_pYk7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_pYk7" ON public.hmis_csv_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmiscsv2022enrollments_pksT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_pksT" ON public.hmis_csv_2022_enrollments USING btree ("HouseholdID"); + + +-- +-- Name: hmiscsv2022enrollments_py9x; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022enrollments_py9x ON public.hmis_csv_2022_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022enrollments_qhAg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_qhAg" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmiscsv2022enrollments_rgZ9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_rgZ9" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "HouseholdID"); + + +-- +-- Name: hmiscsv2022enrollments_rmZr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_rmZr" ON public.hmis_csv_2022_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022enrollments_rufY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_rufY" ON public.hmis_csv_2022_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022enrollments_sD3N; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_sD3N" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2022enrollments_upFd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_upFd" ON public.hmis_csv_2022_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022enrollments_vfUq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_vfUq" ON public.hmis_csv_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); + + +-- +-- Name: hmiscsv2022enrollments_wCi5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_wCi5" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmiscsv2022enrollments_xYjO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_xYjO" ON public.hmis_csv_2022_enrollments USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022enrollments_xkHU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_xkHU" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmiscsv2022enrollments_xwum; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022enrollments_xwum ON public.hmis_csv_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmiscsv2022enrollments_yiWK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_yiWK" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2022enrollments_z9WI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022enrollments_z9WI" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmiscsv2022enrollments_zumz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022enrollments_zumz ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmiscsv2022events_6eMI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_6eMI" ON public.hmis_csv_2022_events USING btree ("EventDate"); + + +-- +-- Name: hmiscsv2022events_70cK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_70cK" ON public.hmis_csv_2022_events USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022events_9PUb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_9PUb" ON public.hmis_csv_2022_events USING btree ("EventID"); + + +-- +-- Name: hmiscsv2022events_9r3x; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022events_9r3x ON public.hmis_csv_2022_events USING btree ("EventDate"); + + +-- +-- Name: hmiscsv2022events_9rNL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_9rNL" ON public.hmis_csv_2022_events USING btree ("EventID"); + + +-- +-- Name: hmiscsv2022events_A0Re; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_A0Re" ON public.hmis_csv_2022_events USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022events_AFoC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_AFoC" ON public.hmis_csv_2022_events USING btree ("EventDate"); + + +-- +-- Name: hmiscsv2022events_EF2x; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_EF2x" ON public.hmis_csv_2022_events USING btree ("EventID"); + + +-- +-- Name: hmiscsv2022events_HWMU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_HWMU" ON public.hmis_csv_2022_events USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022events_MpdL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_MpdL" ON public.hmis_csv_2022_events USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022events_PVi4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_PVi4" ON public.hmis_csv_2022_events USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022events_RGSg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_RGSg" ON public.hmis_csv_2022_events USING btree ("EventDate"); + + +-- +-- Name: hmiscsv2022events_RRPj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_RRPj" ON public.hmis_csv_2022_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022events_SEgq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_SEgq" ON public.hmis_csv_2022_events USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022events_TrwM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_TrwM" ON public.hmis_csv_2022_events USING btree ("EventID"); + + +-- +-- Name: hmiscsv2022events_UMEc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_UMEc" ON public.hmis_csv_2022_events USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022events_b0HY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_b0HY" ON public.hmis_csv_2022_events USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022events_f8eV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_f8eV" ON public.hmis_csv_2022_events USING btree ("EventID"); + + +-- +-- Name: hmiscsv2022events_fVxv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_fVxv" ON public.hmis_csv_2022_events USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022events_gFxo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_gFxo" ON public.hmis_csv_2022_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022events_jBzv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_jBzv" ON public.hmis_csv_2022_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022events_k3Vz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_k3Vz" ON public.hmis_csv_2022_events USING btree ("EventDate"); + + +-- +-- Name: hmiscsv2022events_wPoI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_wPoI" ON public.hmis_csv_2022_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022events_wiJI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022events_wiJI" ON public.hmis_csv_2022_events USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022events_yhpj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022events_yhpj ON public.hmis_csv_2022_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022exits_0oqJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_0oqJ" ON public.hmis_csv_2022_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022exits_2IJt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_2IJt" ON public.hmis_csv_2022_exits USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022exits_3hM6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_3hM6" ON public.hmis_csv_2022_exits USING btree ("ExitDate"); + + +-- +-- Name: hmiscsv2022exits_6mEQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_6mEQ" ON public.hmis_csv_2022_exits USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022exits_7XJm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_7XJm" ON public.hmis_csv_2022_exits USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022exits_7kNM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_7kNM" ON public.hmis_csv_2022_exits USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022exits_97kE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_97kE" ON public.hmis_csv_2022_exits USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022exits_9wKe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_9wKe" ON public.hmis_csv_2022_exits USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022exits_AJQd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_AJQd" ON public.hmis_csv_2022_exits USING btree ("ExitID"); + + +-- +-- Name: hmiscsv2022exits_BugK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_BugK" ON public.hmis_csv_2022_exits USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022exits_CFOy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_CFOy" ON public.hmis_csv_2022_exits USING btree ("ExitID"); + + +-- +-- Name: hmiscsv2022exits_FaOP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_FaOP" ON public.hmis_csv_2022_exits USING btree ("ExitID"); + + +-- +-- Name: hmiscsv2022exits_GVqN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_GVqN" ON public.hmis_csv_2022_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022exits_H1wM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_H1wM" ON public.hmis_csv_2022_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022exits_HEXL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_HEXL" ON public.hmis_csv_2022_exits USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022exits_JFIj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_JFIj" ON public.hmis_csv_2022_exits USING btree ("ExitDate"); + + +-- +-- Name: hmiscsv2022exits_QIyW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_QIyW" ON public.hmis_csv_2022_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022exits_QQgW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_QQgW" ON public.hmis_csv_2022_exits USING btree ("ExitDate"); + + +-- +-- Name: hmiscsv2022exits_Sweu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_Sweu" ON public.hmis_csv_2022_exits USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022exits_UpXI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_UpXI" ON public.hmis_csv_2022_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022exits_V4hG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_V4hG" ON public.hmis_csv_2022_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022exits_YPuW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_YPuW" ON public.hmis_csv_2022_exits USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022exits_ZLAK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_ZLAK" ON public.hmis_csv_2022_exits USING btree ("ExitID"); + + +-- +-- Name: hmiscsv2022exits_b9Iz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_b9Iz" ON public.hmis_csv_2022_exits USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022exits_jid6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022exits_jid6 ON public.hmis_csv_2022_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022exits_lR9a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_lR9a" ON public.hmis_csv_2022_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022exits_nNms; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_nNms" ON public.hmis_csv_2022_exits USING btree ("ExitID"); + + +-- +-- Name: hmiscsv2022exits_nix9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022exits_nix9 ON public.hmis_csv_2022_exits USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022exits_othX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_othX" ON public.hmis_csv_2022_exits USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022exits_pVQh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_pVQh" ON public.hmis_csv_2022_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022exits_s2TS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_s2TS" ON public.hmis_csv_2022_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022exits_sL74; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_sL74" ON public.hmis_csv_2022_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022exits_sUuv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_sUuv" ON public.hmis_csv_2022_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022exits_t4xs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022exits_t4xs ON public.hmis_csv_2022_exits USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022exits_vZPo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_vZPo" ON public.hmis_csv_2022_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022exits_vtCz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_vtCz" ON public.hmis_csv_2022_exits USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022exits_w7ex; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022exits_w7ex ON public.hmis_csv_2022_exits USING btree ("ExitDate"); + + +-- +-- Name: hmiscsv2022exits_xila; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022exits_xila ON public.hmis_csv_2022_exits USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022exits_xm89; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022exits_xm89 ON public.hmis_csv_2022_exits USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022exits_yCw0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exits_yCw0" ON public.hmis_csv_2022_exits USING btree ("ExitDate"); + + +-- +-- Name: hmiscsv2022exports_4A4m; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exports_4A4m" ON public.hmis_csv_2022_exports USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022exports_786V; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exports_786V" ON public.hmis_csv_2022_exports USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022exports_7cpb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022exports_7cpb ON public.hmis_csv_2022_exports USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022exports_Gf6i; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exports_Gf6i" ON public.hmis_csv_2022_exports USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022exports_qkPK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022exports_qkPK" ON public.hmis_csv_2022_exports USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022funders_EBQd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_EBQd" ON public.hmis_csv_2022_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022funders_EeF8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_EeF8" ON public.hmis_csv_2022_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022funders_FasV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_FasV" ON public.hmis_csv_2022_funders USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022funders_I59Y; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_I59Y" ON public.hmis_csv_2022_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022funders_KCdj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_KCdj" ON public.hmis_csv_2022_funders USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022funders_Q8i7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_Q8i7" ON public.hmis_csv_2022_funders USING btree ("FunderID"); + + +-- +-- Name: hmiscsv2022funders_U23e; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_U23e" ON public.hmis_csv_2022_funders USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022funders_W9nA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_W9nA" ON public.hmis_csv_2022_funders USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022funders_Zyir; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_Zyir" ON public.hmis_csv_2022_funders USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022funders_aEqh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_aEqh" ON public.hmis_csv_2022_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022funders_acMZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_acMZ" ON public.hmis_csv_2022_funders USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022funders_gFjD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_gFjD" ON public.hmis_csv_2022_funders USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022funders_hsxT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_hsxT" ON public.hmis_csv_2022_funders USING btree ("FunderID"); + + +-- +-- Name: hmiscsv2022funders_trtP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_trtP" ON public.hmis_csv_2022_funders USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022funders_vp8u; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022funders_vp8u ON public.hmis_csv_2022_funders USING btree ("FunderID"); + + +-- +-- Name: hmiscsv2022funders_wAAz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_wAAz" ON public.hmis_csv_2022_funders USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022funders_wkTK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_wkTK" ON public.hmis_csv_2022_funders USING btree ("FunderID"); + + +-- +-- Name: hmiscsv2022funders_y0jT; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_y0jT" ON public.hmis_csv_2022_funders USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022funders_yNBZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_yNBZ" ON public.hmis_csv_2022_funders USING btree ("FunderID"); + + +-- +-- Name: hmiscsv2022funders_zZPu; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022funders_zZPu" ON public.hmis_csv_2022_funders USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022healthanddvs_3s5V; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_3s5V" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022healthanddvs_8V6w; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_8V6w" ON public.hmis_csv_2022_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmiscsv2022healthanddvs_9xZf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_9xZf" ON public.hmis_csv_2022_health_and_dvs USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022healthanddvs_BRTj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_BRTj" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022healthanddvs_CRfc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_CRfc" ON public.hmis_csv_2022_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022healthanddvs_DBWO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_DBWO" ON public.hmis_csv_2022_health_and_dvs USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022healthanddvs_HnGC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_HnGC" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022healthanddvs_I9SQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_I9SQ" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022healthanddvs_JFxv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_JFxv" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022healthanddvs_PVQH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_PVQH" ON public.hmis_csv_2022_health_and_dvs USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022healthanddvs_TMQt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_TMQt" ON public.hmis_csv_2022_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022healthanddvs_Vsks; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_Vsks" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022healthanddvs_Xory; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_Xory" ON public.hmis_csv_2022_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022healthanddvs_Y01x; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_Y01x" ON public.hmis_csv_2022_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmiscsv2022healthanddvs_elHq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_elHq" ON public.hmis_csv_2022_health_and_dvs USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022healthanddvs_fkYA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_fkYA" ON public.hmis_csv_2022_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmiscsv2022healthanddvs_h8HB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_h8HB" ON public.hmis_csv_2022_health_and_dvs USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022healthanddvs_i9dN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_i9dN" ON public.hmis_csv_2022_health_and_dvs USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022healthanddvs_lDba; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_lDba" ON public.hmis_csv_2022_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmiscsv2022healthanddvs_lP0u; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_lP0u" ON public.hmis_csv_2022_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022healthanddvs_n8lZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_n8lZ" ON public.hmis_csv_2022_health_and_dvs USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022healthanddvs_nNgi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_nNgi" ON public.hmis_csv_2022_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmiscsv2022healthanddvs_pyNn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_pyNn" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022healthanddvs_q5XV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_q5XV" ON public.hmis_csv_2022_health_and_dvs USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022healthanddvs_qUR2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_qUR2" ON public.hmis_csv_2022_health_and_dvs USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022healthanddvs_r4Lx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_r4Lx" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022healthanddvs_sdZG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_sdZG" ON public.hmis_csv_2022_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022healthanddvs_xsrk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022healthanddvs_xsrk ON public.hmis_csv_2022_health_and_dvs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022healthanddvs_yG7j; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022healthanddvs_yG7j" ON public.hmis_csv_2022_health_and_dvs USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022healthanddvs_zf1v; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022healthanddvs_zf1v ON public.hmis_csv_2022_health_and_dvs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022incomebenefits_16c2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022incomebenefits_16c2 ON public.hmis_csv_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2022incomebenefits_1RQb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_1RQb" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2022incomebenefits_1XAs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_1XAs" ON public.hmis_csv_2022_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022incomebenefits_1tdi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022incomebenefits_1tdi ON public.hmis_csv_2022_income_benefits USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022incomebenefits_2tUP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_2tUP" ON public.hmis_csv_2022_income_benefits USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022incomebenefits_6HiZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_6HiZ" ON public.hmis_csv_2022_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022incomebenefits_6g8h; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022incomebenefits_6g8h ON public.hmis_csv_2022_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022incomebenefits_7IcJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_7IcJ" ON public.hmis_csv_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2022incomebenefits_7obR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_7obR" ON public.hmis_csv_2022_income_benefits USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022incomebenefits_Aw1x; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_Aw1x" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2022incomebenefits_BPxA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_BPxA" ON public.hmis_csv_2022_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022incomebenefits_EJv6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_EJv6" ON public.hmis_csv_2022_income_benefits USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022incomebenefits_EOkg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_EOkg" ON public.hmis_csv_2022_income_benefits USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022incomebenefits_EY8v; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_EY8v" ON public.hmis_csv_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2022incomebenefits_F7Yo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_F7Yo" ON public.hmis_csv_2022_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022incomebenefits_Fget; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_Fget" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmiscsv2022incomebenefits_FnDI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_FnDI" ON public.hmis_csv_2022_income_benefits USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022incomebenefits_GD5Y; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_GD5Y" ON public.hmis_csv_2022_income_benefits USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022incomebenefits_GRRK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_GRRK" ON public.hmis_csv_2022_income_benefits USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022incomebenefits_Gcc7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_Gcc7" ON public.hmis_csv_2022_income_benefits USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022incomebenefits_HQxa; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_HQxa" ON public.hmis_csv_2022_income_benefits USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022incomebenefits_HeoF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_HeoF" ON public.hmis_csv_2022_income_benefits USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022incomebenefits_Hzxy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_Hzxy" ON public.hmis_csv_2022_income_benefits USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022incomebenefits_KDpF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_KDpF" ON public.hmis_csv_2022_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022incomebenefits_Myd9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_Myd9" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmiscsv2022incomebenefits_OVW3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_OVW3" ON public.hmis_csv_2022_income_benefits USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022incomebenefits_QURQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_QURQ" ON public.hmis_csv_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2022incomebenefits_RlAP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_RlAP" ON public.hmis_csv_2022_income_benefits USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022incomebenefits_SyN5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_SyN5" ON public.hmis_csv_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2022incomebenefits_VKKY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_VKKY" ON public.hmis_csv_2022_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022incomebenefits_W8mA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_W8mA" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmiscsv2022incomebenefits_WpiB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_WpiB" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2022incomebenefits_Yjz6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_Yjz6" ON public.hmis_csv_2022_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022incomebenefits_ZRt9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_ZRt9" ON public.hmis_csv_2022_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022incomebenefits_ZW68; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_ZW68" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmiscsv2022incomebenefits_ae8d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022incomebenefits_ae8d ON public.hmis_csv_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2022incomebenefits_cE9a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_cE9a" ON public.hmis_csv_2022_income_benefits USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022incomebenefits_irza; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022incomebenefits_irza ON public.hmis_csv_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2022incomebenefits_jnNE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_jnNE" ON public.hmis_csv_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2022incomebenefits_mM7W; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_mM7W" ON public.hmis_csv_2022_income_benefits USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022incomebenefits_nLIb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_nLIb" ON public.hmis_csv_2022_income_benefits USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022incomebenefits_pgB6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_pgB6" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmiscsv2022incomebenefits_rV97; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_rV97" ON public.hmis_csv_2022_income_benefits USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022incomebenefits_t2OW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_t2OW" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2022incomebenefits_vuok; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022incomebenefits_vuok ON public.hmis_csv_2022_income_benefits USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022incomebenefits_w5M0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022incomebenefits_w5M0" ON public.hmis_csv_2022_income_benefits USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022incomebenefits_z5mn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022incomebenefits_z5mn ON public.hmis_csv_2022_income_benefits USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022inventories_0hc8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022inventories_0hc8 ON public.hmis_csv_2022_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmiscsv2022inventories_2JYH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_2JYH" ON public.hmis_csv_2022_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022inventories_5blG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_5blG" ON public.hmis_csv_2022_inventories USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022inventories_7XPQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_7XPQ" ON public.hmis_csv_2022_inventories USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022inventories_9529; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022inventories_9529 ON public.hmis_csv_2022_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmiscsv2022inventories_FcjB; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_FcjB" ON public.hmis_csv_2022_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmiscsv2022inventories_HoVQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_HoVQ" ON public.hmis_csv_2022_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022inventories_MaX0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_MaX0" ON public.hmis_csv_2022_inventories USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmiscsv2022inventories_Mam6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_Mam6" ON public.hmis_csv_2022_inventories USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022inventories_O4mI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_O4mI" ON public.hmis_csv_2022_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022inventories_TTYE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_TTYE" ON public.hmis_csv_2022_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022inventories_UVsK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_UVsK" ON public.hmis_csv_2022_inventories USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022inventories_Xkhg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_Xkhg" ON public.hmis_csv_2022_inventories USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022inventories_bqiF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_bqiF" ON public.hmis_csv_2022_inventories USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmiscsv2022inventories_ctyg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022inventories_ctyg ON public.hmis_csv_2022_inventories USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmiscsv2022inventories_f8rb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022inventories_f8rb ON public.hmis_csv_2022_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmiscsv2022inventories_h8H6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_h8H6" ON public.hmis_csv_2022_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022inventories_hcBa; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_hcBa" ON public.hmis_csv_2022_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022inventories_hpp8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022inventories_hpp8 ON public.hmis_csv_2022_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022inventories_hu1F; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_hu1F" ON public.hmis_csv_2022_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmiscsv2022inventories_nYsR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_nYsR" ON public.hmis_csv_2022_inventories USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmiscsv2022inventories_pqsZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_pqsZ" ON public.hmis_csv_2022_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmiscsv2022inventories_vHpP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_vHpP" ON public.hmis_csv_2022_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022inventories_wNmp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_wNmp" ON public.hmis_csv_2022_inventories USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmiscsv2022inventories_yEox; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_yEox" ON public.hmis_csv_2022_inventories USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022inventories_yqNs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022inventories_yqNs" ON public.hmis_csv_2022_inventories USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022organizations_FjV6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022organizations_FjV6" ON public.hmis_csv_2022_organizations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022organizations_LnYR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022organizations_LnYR" ON public.hmis_csv_2022_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmiscsv2022organizations_P9WD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022organizations_P9WD" ON public.hmis_csv_2022_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmiscsv2022organizations_PW7F; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022organizations_PW7F" ON public.hmis_csv_2022_organizations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022organizations_Q2CY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022organizations_Q2CY" ON public.hmis_csv_2022_organizations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022organizations_SBB6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022organizations_SBB6" ON public.hmis_csv_2022_organizations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022organizations_eKN2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022organizations_eKN2" ON public.hmis_csv_2022_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmiscsv2022organizations_gmSL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022organizations_gmSL" ON public.hmis_csv_2022_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmiscsv2022organizations_qR0a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022organizations_qR0a" ON public.hmis_csv_2022_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmiscsv2022organizations_uD5T; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022organizations_uD5T" ON public.hmis_csv_2022_organizations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022projectcocs_0mWW; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_0mWW" ON public.hmis_csv_2022_project_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022projectcocs_7QwC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_7QwC" ON public.hmis_csv_2022_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022projectcocs_7coH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_7coH" ON public.hmis_csv_2022_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022projectcocs_F3r0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_F3r0" ON public.hmis_csv_2022_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022projectcocs_Jfub; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_Jfub" ON public.hmis_csv_2022_project_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022projectcocs_KMu5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_KMu5" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmiscsv2022projectcocs_KccU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_KccU" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmiscsv2022projectcocs_QHMr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_QHMr" ON public.hmis_csv_2022_project_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022projectcocs_R2Yn; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_R2Yn" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmiscsv2022projectcocs_XKYG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_XKYG" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmiscsv2022projectcocs_ZaMC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_ZaMC" ON public.hmis_csv_2022_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022projectcocs_Zv8Z; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_Zv8Z" ON public.hmis_csv_2022_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022projectcocs_ZwP7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_ZwP7" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmiscsv2022projectcocs_fHPb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_fHPb" ON public.hmis_csv_2022_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022projectcocs_gMun; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_gMun" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmiscsv2022projectcocs_haHj; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_haHj" ON public.hmis_csv_2022_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022projectcocs_hhqc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022projectcocs_hhqc ON public.hmis_csv_2022_project_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022projectcocs_jWiU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_jWiU" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmiscsv2022projectcocs_lfWt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_lfWt" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmiscsv2022projectcocs_mLOc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_mLOc" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectID", "CoCCode"); + + +-- +-- Name: hmiscsv2022projectcocs_rI43; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_rI43" ON public.hmis_csv_2022_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022projectcocs_snwr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022projectcocs_snwr ON public.hmis_csv_2022_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022projectcocs_toVK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_toVK" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmiscsv2022projectcocs_uGEA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_uGEA" ON public.hmis_csv_2022_project_cocs USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022projectcocs_xNgm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projectcocs_xNgm" ON public.hmis_csv_2022_project_cocs USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022projects_6pjf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022projects_6pjf ON public.hmis_csv_2022_projects USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022projects_AZRv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_AZRv" ON public.hmis_csv_2022_projects USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2022projects_BNpw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_BNpw" ON public.hmis_csv_2022_projects USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022projects_BcGz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_BcGz" ON public.hmis_csv_2022_projects USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022projects_CR7E; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_CR7E" ON public.hmis_csv_2022_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022projects_CrgU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_CrgU" ON public.hmis_csv_2022_projects USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022projects_EFMI; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_EFMI" ON public.hmis_csv_2022_projects USING btree ("ProjectType"); + + +-- +-- Name: hmiscsv2022projects_EHcK; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_EHcK" ON public.hmis_csv_2022_projects USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022projects_FH4m; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_FH4m" ON public.hmis_csv_2022_projects USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2022projects_K1UM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_K1UM" ON public.hmis_csv_2022_projects USING btree ("ProjectType"); + + +-- +-- Name: hmiscsv2022projects_K1g9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_K1g9" ON public.hmis_csv_2022_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022projects_LGTq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_LGTq" ON public.hmis_csv_2022_projects USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2022projects_Oc0U; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_Oc0U" ON public.hmis_csv_2022_projects USING btree ("ProjectType"); + + +-- +-- Name: hmiscsv2022projects_Oj9G; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_Oj9G" ON public.hmis_csv_2022_projects USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022projects_OtF6; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_OtF6" ON public.hmis_csv_2022_projects USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2022projects_QkSr; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_QkSr" ON public.hmis_csv_2022_projects USING btree ("ProjectType"); + + +-- +-- Name: hmiscsv2022projects_VzMf; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_VzMf" ON public.hmis_csv_2022_projects USING btree ("ProjectType"); + + +-- +-- Name: hmiscsv2022projects_fGby; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_fGby" ON public.hmis_csv_2022_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022projects_ftTe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_ftTe" ON public.hmis_csv_2022_projects USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022projects_jgtt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022projects_jgtt ON public.hmis_csv_2022_projects USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022projects_oatJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_oatJ" ON public.hmis_csv_2022_projects USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2022projects_ouoy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022projects_ouoy ON public.hmis_csv_2022_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022projects_qPVR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_qPVR" ON public.hmis_csv_2022_projects USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022projects_uN6c; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_uN6c" ON public.hmis_csv_2022_projects USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022projects_yGw1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022projects_yGw1" ON public.hmis_csv_2022_projects USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022services_1kzC; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_1kzC" ON public.hmis_csv_2022_services USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022services_3gBa; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_3gBa" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_3wwH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_3wwH" ON public.hmis_csv_2022_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022services_4qG7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_4qG7" ON public.hmis_csv_2022_services USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022services_53sL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_53sL" ON public.hmis_csv_2022_services USING btree ("ServicesID"); + + +-- +-- Name: hmiscsv2022services_68n9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022services_68n9 ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_732S; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_732S" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_78KE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_78KE" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmiscsv2022services_9Ain; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_9Ain" ON public.hmis_csv_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_AGvJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_AGvJ" ON public.hmis_csv_2022_services USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022services_AMYt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_AMYt" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_BZI2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_BZI2" ON public.hmis_csv_2022_services USING btree ("DateProvided"); + + +-- +-- Name: hmiscsv2022services_BbIE; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_BbIE" ON public.hmis_csv_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_Bo1g; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_Bo1g" ON public.hmis_csv_2022_services USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022services_D39O; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_D39O" ON public.hmis_csv_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_E4Js; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_E4Js" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_EtU3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_EtU3" ON public.hmis_csv_2022_services USING btree ("DateProvided"); + + +-- +-- Name: hmiscsv2022services_FnGv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_FnGv" ON public.hmis_csv_2022_services USING btree ("RecordType"); + + +-- +-- Name: hmiscsv2022services_G0rQ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_G0rQ" ON public.hmis_csv_2022_services USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022services_HfxJ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_HfxJ" ON public.hmis_csv_2022_services USING btree ("RecordType"); + + +-- +-- Name: hmiscsv2022services_IyZM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_IyZM" ON public.hmis_csv_2022_services USING btree ("ServicesID"); + + +-- +-- Name: hmiscsv2022services_JOKs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_JOKs" ON public.hmis_csv_2022_services USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022services_JiC3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_JiC3" ON public.hmis_csv_2022_services USING btree ("ServicesID"); + + +-- +-- Name: hmiscsv2022services_K7Zt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_K7Zt" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_Ke4l; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_Ke4l" ON public.hmis_csv_2022_services USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022services_LD3i; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_LD3i" ON public.hmis_csv_2022_services USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022services_LJSD; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_LJSD" ON public.hmis_csv_2022_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022services_Lk4w; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_Lk4w" ON public.hmis_csv_2022_services USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022services_MBfF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_MBfF" ON public.hmis_csv_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_NI7r; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_NI7r" ON public.hmis_csv_2022_services USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022services_OCo1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_OCo1" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmiscsv2022services_Owsi; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_Owsi" ON public.hmis_csv_2022_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022services_PZaU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_PZaU" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_QQPx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_QQPx" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmiscsv2022services_RLdg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_RLdg" ON public.hmis_csv_2022_services USING btree ("RecordType"); + + +-- +-- Name: hmiscsv2022services_U2RZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_U2RZ" ON public.hmis_csv_2022_services USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022services_WkLH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_WkLH" ON public.hmis_csv_2022_services USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022services_WxH1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_WxH1" ON public.hmis_csv_2022_services USING btree ("DateProvided"); + + +-- +-- Name: hmiscsv2022services_Xjc3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_Xjc3" ON public.hmis_csv_2022_services USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2022services_Xt15; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_Xt15" ON public.hmis_csv_2022_services USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022services_Zeox; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_Zeox" ON public.hmis_csv_2022_services USING btree ("RecordType"); + + +-- +-- Name: hmiscsv2022services_ZsCG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_ZsCG" ON public.hmis_csv_2022_services USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022services_aK50; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_aK50" ON public.hmis_csv_2022_services USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022services_cK9O; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_cK9O" ON public.hmis_csv_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_cOsh; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_cOsh" ON public.hmis_csv_2022_services USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022services_dQSt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_dQSt" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_enQH; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_enQH" ON public.hmis_csv_2022_services USING btree ("DateProvided"); + + +-- +-- Name: hmiscsv2022services_f0qq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022services_f0qq ON public.hmis_csv_2022_services USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2022services_f8LM; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_f8LM" ON public.hmis_csv_2022_services USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022services_fGnF; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_fGnF" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_gUHS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_gUHS" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmiscsv2022services_iILP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_iILP" ON public.hmis_csv_2022_services USING btree ("ServicesID"); + + +-- +-- Name: hmiscsv2022services_ipWR; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_ipWR" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmiscsv2022services_kUi3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_kUi3" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmiscsv2022services_lCd2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_lCd2" ON public.hmis_csv_2022_services USING btree ("DateProvided"); + + +-- +-- Name: hmiscsv2022services_lbEG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_lbEG" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmiscsv2022services_mIWt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_mIWt" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateDeleted"); + + +-- +-- Name: hmiscsv2022services_mSwA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_mSwA" ON public.hmis_csv_2022_services USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022services_n0Bz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_n0Bz" ON public.hmis_csv_2022_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022services_qYm3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_qYm3" ON public.hmis_csv_2022_services USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022services_s7W3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_s7W3" ON public.hmis_csv_2022_services USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022services_t2qL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_t2qL" ON public.hmis_csv_2022_services USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022services_tUIX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_tUIX" ON public.hmis_csv_2022_services USING btree ("RecordType"); + + +-- +-- Name: hmiscsv2022services_thj9; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022services_thj9 ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmiscsv2022services_ut9w; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022services_ut9w ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "PersonalID"); + + +-- +-- Name: hmiscsv2022services_wl51; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022services_wl51 ON public.hmis_csv_2022_services USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022services_x0QA; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_x0QA" ON public.hmis_csv_2022_services USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022services_x32D; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_x32D" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateProvided"); + + +-- +-- Name: hmiscsv2022services_ytLZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_ytLZ" ON public.hmis_csv_2022_services USING btree ("DateCreated"); + + +-- +-- Name: hmiscsv2022services_zkJ3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022services_zkJ3" ON public.hmis_csv_2022_services USING btree ("ServicesID"); + + +-- +-- Name: hmiscsv2022users_57c7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022users_57c7 ON public.hmis_csv_2022_users USING btree ("UserID"); + + +-- +-- Name: hmiscsv2022users_7hAX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022users_7hAX" ON public.hmis_csv_2022_users USING btree ("UserID"); + + +-- +-- Name: hmiscsv2022users_8RTX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022users_8RTX" ON public.hmis_csv_2022_users USING btree ("UserID"); + + +-- +-- Name: hmiscsv2022users_9lCp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022users_9lCp" ON public.hmis_csv_2022_users USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022users_FSU8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022users_FSU8" ON public.hmis_csv_2022_users USING btree ("UserID"); + + +-- +-- Name: hmiscsv2022users_MWOa; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022users_MWOa" ON public.hmis_csv_2022_users USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022users_T7HY; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022users_T7HY" ON public.hmis_csv_2022_users USING btree ("UserID"); + + +-- +-- Name: hmiscsv2022users_ZsWm; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022users_ZsWm" ON public.hmis_csv_2022_users USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022users_ut6h; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022users_ut6h ON public.hmis_csv_2022_users USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022users_wBZo; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022users_wBZo" ON public.hmis_csv_2022_users USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022users_xDzZ; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022users_xDzZ" ON public.hmis_csv_2022_users USING btree ("UserID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_22GP; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_22GP" ON public.hmis_csv_2022_youth_education_statuses USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_27QU; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_27QU" ON public.hmis_csv_2022_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_3wUp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_3wUp" ON public.hmis_csv_2022_youth_education_statuses USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_6Gvz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_6Gvz" ON public.hmis_csv_2022_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_9UF7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_9UF7" ON public.hmis_csv_2022_youth_education_statuses USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_9dk3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022youtheducationstatuses_9dk3 ON public.hmis_csv_2022_youth_education_statuses USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_IQMw; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_IQMw" ON public.hmis_csv_2022_youth_education_statuses USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_LLFz; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_LLFz" ON public.hmis_csv_2022_youth_education_statuses USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_LsJX; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_LsJX" ON public.hmis_csv_2022_youth_education_statuses USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_Msvb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_Msvb" ON public.hmis_csv_2022_youth_education_statuses USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_O5XN; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_O5XN" ON public.hmis_csv_2022_youth_education_statuses USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_P7pk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_P7pk" ON public.hmis_csv_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_PBWg; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_PBWg" ON public.hmis_csv_2022_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_PMHG; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_PMHG" ON public.hmis_csv_2022_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_Tv5M; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_Tv5M" ON public.hmis_csv_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_WARO; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_WARO" ON public.hmis_csv_2022_youth_education_statuses USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_eWaV; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_eWaV" ON public.hmis_csv_2022_youth_education_statuses USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_fsBL; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_fsBL" ON public.hmis_csv_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_g8wl; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022youtheducationstatuses_g8wl ON public.hmis_csv_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_hkeS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_hkeS" ON public.hmis_csv_2022_youth_education_statuses USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_nb9y; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2022youtheducationstatuses_nb9y ON public.hmis_csv_2022_youth_education_statuses USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_u98C; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_u98C" ON public.hmis_csv_2022_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_uegS; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_uegS" ON public.hmis_csv_2022_youth_education_statuses USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_vPI4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_vPI4" ON public.hmis_csv_2022_youth_education_statuses USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2022youtheducationstatuses_xGU1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "hmiscsv2022youtheducationstatuses_xGU1" ON public.hmis_csv_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); + + +-- +-- Name: hmiscsv2024assessmentquestions_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024assessmentquestions_634d ON public.hmis_csv_2024_assessment_questions USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024assessmentquestions_da04; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024assessmentquestions_da04 ON public.hmis_csv_2024_assessment_questions USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2024assessmentresults_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024assessmentresults_634d ON public.hmis_csv_2024_assessment_results USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024assessments_4fa0; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024assessments_4fa0 ON public.hmis_csv_2024_assessments USING btree ("AssessmentDate"); + + +-- +-- Name: hmiscsv2024assessments_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024assessments_634d ON public.hmis_csv_2024_assessments USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024assessments_da04; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024assessments_da04 ON public.hmis_csv_2024_assessments USING btree ("AssessmentID"); + + +-- +-- Name: hmiscsv2024ceparticipations_42af; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024ceparticipations_42af ON public.hmis_csv_2024_ce_participations USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2024ceparticipations_5a29; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024ceparticipations_5a29 ON public.hmis_csv_2024_ce_participations USING btree ("CEParticipationID"); + + +-- +-- Name: hmiscsv2024ceparticipations_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024ceparticipations_634d ON public.hmis_csv_2024_ce_participations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024clients_20a8; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024clients_20a8 ON public.hmis_csv_2024_clients USING btree ("VeteranStatus"); + + +-- +-- Name: hmiscsv2024clients_603f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024clients_603f ON public.hmis_csv_2024_clients USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2024clients_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024clients_634d ON public.hmis_csv_2024_clients USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024currentlivingsituations_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024currentlivingsituations_634d ON public.hmis_csv_2024_current_living_situations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024currentlivingsituations_c1ef; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024currentlivingsituations_c1ef ON public.hmis_csv_2024_current_living_situations USING btree ("CurrentLivingSitID"); + + +-- +-- Name: hmiscsv2024currentlivingsituations_d718; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024currentlivingsituations_d718 ON public.hmis_csv_2024_current_living_situations USING btree ("CurrentLivingSituation"); + + +-- +-- Name: hmiscsv2024disabilities_1873; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024disabilities_1873 ON public.hmis_csv_2024_disabilities USING btree ("DisabilitiesID"); + + +-- +-- Name: hmiscsv2024disabilities_4337; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024disabilities_4337 ON public.hmis_csv_2024_disabilities USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2024disabilities_603f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024disabilities_603f ON public.hmis_csv_2024_disabilities USING btree ("PersonalID"); + + +-- +-- Name: hmiscsv2024disabilities_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024disabilities_634d ON public.hmis_csv_2024_disabilities USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024employmenteducations_350e; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024employmenteducations_350e ON public.hmis_csv_2024_employment_educations USING btree ("EmploymentEducationID"); + + +-- +-- Name: hmiscsv2024employmenteducations_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024employmenteducations_634d ON public.hmis_csv_2024_employment_educations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024enrollments_3085; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_3085 ON public.hmis_csv_2024_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); + + +-- +-- Name: hmiscsv2024enrollments_34e3; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_34e3 ON public.hmis_csv_2024_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); + + +-- +-- Name: hmiscsv2024enrollments_42af; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_42af ON public.hmis_csv_2024_enrollments USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2024enrollments_4337; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_4337 ON public.hmis_csv_2024_enrollments USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2024enrollments_44c4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_44c4 ON public.hmis_csv_2024_enrollments USING btree ("MonthsHomelessPastThreeYears") INCLUDE ("EnrollmentID", "LivingSituation", "PreviousStreetESSH"); + + +-- +-- Name: hmiscsv2024enrollments_4685; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_4685 ON public.hmis_csv_2024_enrollments USING btree ("LengthOfStay") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmiscsv2024enrollments_5d40; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_5d40 ON public.hmis_csv_2024_enrollments USING btree ("HouseholdID", "DateDeleted", "EntryDate", "RelationshipToHoH") INCLUDE ("EnrollmentID", "PersonalID", "DisablingCondition"); + + +-- +-- Name: hmiscsv2024enrollments_6191; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_6191 ON public.hmis_csv_2024_enrollments USING btree ("EntryDate") INCLUDE ("EnrollmentID", "ProjectID", "HouseholdID", "RelationshipToHoH", "DateDeleted"); + + +-- +-- Name: hmiscsv2024enrollments_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_634d ON public.hmis_csv_2024_enrollments USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024enrollments_821a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_821a ON public.hmis_csv_2024_enrollments USING btree ("LivingSituation") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmiscsv2024enrollments_89e7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_89e7 ON public.hmis_csv_2024_enrollments USING btree ("HouseholdID", "DateDeleted", "RelationshipToHoH") INCLUDE ("EnrollmentID", "PersonalID", "EntryDate", "DisablingCondition"); + + +-- +-- Name: hmiscsv2024enrollments_8d5c; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_8d5c ON public.hmis_csv_2024_enrollments USING btree ("DateDeleted", "RelationshipToHoH") INCLUDE ("EnrollmentID", "PersonalID", "EntryDate", "HouseholdID", "DisablingCondition"); + + +-- +-- Name: hmiscsv2024enrollments_9005; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_9005 ON public.hmis_csv_2024_enrollments USING btree ("ProjectID", "RelationshipToHoH", "DateDeleted") INCLUDE ("EnrollmentID", "PersonalID", "EntryDate", "HouseholdID", "MoveInDate"); + + +-- +-- Name: hmiscsv2024enrollments_c321; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_c321 ON public.hmis_csv_2024_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmiscsv2024enrollments_c3b4; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_c3b4 ON public.hmis_csv_2024_enrollments USING btree ("RelationshipToHoH", "DateDeleted") INCLUDE ("EnrollmentID", "PersonalID", "ProjectID", "EntryDate", "HouseholdID", "MoveInDate", "DisablingCondition"); + + +-- +-- Name: hmiscsv2024enrollments_c830; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_c830 ON public.hmis_csv_2024_enrollments USING btree ("DateDeleted", "EntryDate") INCLUDE ("EnrollmentID", "HouseholdID", "ProjectID", "RelationshipToHoH"); + + +-- +-- Name: hmiscsv2024enrollments_ea7f; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_ea7f ON public.hmis_csv_2024_enrollments USING btree ("HouseholdID", "RelationshipToHoH", "DateDeleted") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmiscsv2024enrollments_f3a2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_f3a2 ON public.hmis_csv_2024_enrollments USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2024enrollments_fbbd; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024enrollments_fbbd ON public.hmis_csv_2024_enrollments USING btree ("MoveInDate") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmiscsv2024events_4337; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024events_4337 ON public.hmis_csv_2024_events USING btree ("EnrollmentID"); + + +-- +-- Name: hmiscsv2024events_5251; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024events_5251 ON public.hmis_csv_2024_events USING btree ("EventID"); + + +-- +-- Name: hmiscsv2024events_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024events_634d ON public.hmis_csv_2024_events USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024events_ab19; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024events_ab19 ON public.hmis_csv_2024_events USING btree ("EventDate"); + + +-- +-- Name: hmiscsv2024exits_13dc; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024exits_13dc ON public.hmis_csv_2024_exits USING btree ("ExitDate", "Destination") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmiscsv2024exits_42d5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024exits_42d5 ON public.hmis_csv_2024_exits USING btree ("DateUpdated"); + + +-- +-- Name: hmiscsv2024exits_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024exits_634d ON public.hmis_csv_2024_exits USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024exits_6f2b; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024exits_6f2b ON public.hmis_csv_2024_exits USING btree ("ExitID"); + + +-- +-- Name: hmiscsv2024exits_f3a2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024exits_f3a2 ON public.hmis_csv_2024_exits USING btree ("DateDeleted") INCLUDE ("EnrollmentID", "ExitDate"); + + +-- +-- Name: hmiscsv2024exits_fa9a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024exits_fa9a ON public.hmis_csv_2024_exits USING btree ("ExitDate"); + + +-- +-- Name: hmiscsv2024funders_4657; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024funders_4657 ON public.hmis_csv_2024_funders USING btree ("FunderID"); + + +-- +-- Name: hmiscsv2024funders_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024funders_634d ON public.hmis_csv_2024_funders USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024healthanddvs_1329; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024healthanddvs_1329 ON public.hmis_csv_2024_health_and_dvs USING btree ("HealthAndDVID"); + + +-- +-- Name: hmiscsv2024healthanddvs_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024healthanddvs_634d ON public.hmis_csv_2024_health_and_dvs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024hmisparticipations_42af; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024hmisparticipations_42af ON public.hmis_csv_2024_hmis_participations USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2024hmisparticipations_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024hmisparticipations_634d ON public.hmis_csv_2024_hmis_participations USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024incomebenefits_16c2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024incomebenefits_16c2 ON public.hmis_csv_2024_income_benefits USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2024incomebenefits_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024incomebenefits_634d ON public.hmis_csv_2024_income_benefits USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024incomebenefits_ae8d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024incomebenefits_ae8d ON public.hmis_csv_2024_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: hmiscsv2024incomebenefits_f5f5; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024incomebenefits_f5f5 ON public.hmis_csv_2024_income_benefits USING btree ("IncomeBenefitsID"); + + +-- +-- Name: hmiscsv2024inventories_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024inventories_634d ON public.hmis_csv_2024_inventories USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024inventories_9529; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024inventories_9529 ON public.hmis_csv_2024_inventories USING btree ("InventoryID"); + + +-- +-- Name: hmiscsv2024organizations_b19d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024organizations_b19d ON public.hmis_csv_2024_organizations USING btree ("OrganizationID"); + + +-- +-- Name: hmiscsv2024projectcocs_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024projectcocs_634d ON public.hmis_csv_2024_project_cocs USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024projectcocs_787b; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024projectcocs_787b ON public.hmis_csv_2024_project_cocs USING btree ("ProjectCoCID"); + + +-- +-- Name: hmiscsv2024projects_42af; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024projects_42af ON public.hmis_csv_2024_projects USING btree ("ProjectID"); + + +-- +-- Name: hmiscsv2024services_237b; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024services_237b ON public.hmis_csv_2024_services USING btree ("RecordType"); + + +-- +-- Name: hmiscsv2024services_3444; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024services_3444 ON public.hmis_csv_2024_services USING btree ("DateProvided"); + + +-- +-- Name: hmiscsv2024services_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024services_634d ON public.hmis_csv_2024_services USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024services_6415; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024services_6415 ON public.hmis_csv_2024_services USING btree ("ServicesID"); + + +-- +-- Name: hmiscsv2024services_8dbb; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024services_8dbb ON public.hmis_csv_2024_services USING btree ("RecordType", "DateDeleted", "DateProvided") INCLUDE ("EnrollmentID"); + + +-- +-- Name: hmiscsv2024services_9c1a; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024services_9c1a ON public.hmis_csv_2024_services USING btree ("EnrollmentID", "RecordType", "DateDeleted") INCLUDE ("DateProvided"); + + +-- +-- Name: hmiscsv2024services_f3a2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024services_f3a2 ON public.hmis_csv_2024_services USING btree ("DateDeleted"); + + +-- +-- Name: hmiscsv2024users_57c7; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024users_57c7 ON public.hmis_csv_2024_users USING btree ("UserID"); + + +-- +-- Name: hmiscsv2024users_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024users_634d ON public.hmis_csv_2024_users USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024youtheducationstatuses_6049; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024youtheducationstatuses_6049 ON public.hmis_csv_2024_youth_education_statuses USING btree ("YouthEducationStatusID"); + + +-- +-- Name: hmiscsv2024youtheducationstatuses_634d; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024youtheducationstatuses_634d ON public.hmis_csv_2024_youth_education_statuses USING btree ("ExportID"); + + +-- +-- Name: hmiscsv2024youtheducationstatuses_fabe; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX hmiscsv2024youtheducationstatuses_fabe ON public.hmis_csv_2024_youth_education_statuses USING btree ("InformationDate"); + + +-- +-- Name: household_id_rsh_index; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX household_id_rsh_index ON public.recent_service_history USING btree (household_id); + + +-- +-- Name: hud_path_client_conflict_columns; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX hud_path_client_conflict_columns ON public.hud_report_path_clients USING btree (report_instance_id, data_source_id, client_id); + + +-- +-- Name: hud_pit_client_conflict_columns; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX hud_pit_client_conflict_columns ON public.hud_report_pit_clients USING btree (report_instance_id, data_source_id, client_id); + + +-- +-- Name: hud_report_hic_funders_uniqueness_constraint; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX hud_report_hic_funders_uniqueness_constraint ON public.hud_report_hic_funders USING btree ("FunderID", data_source_id, report_instance_id); + + +-- +-- Name: hud_report_hic_inventories_uniqueness_constraint; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX hud_report_hic_inventories_uniqueness_constraint ON public.hud_report_hic_inventories USING btree ("InventoryID", data_source_id, report_instance_id); + + +-- +-- Name: hud_report_hic_organizations_uniqueness_constraint; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX hud_report_hic_organizations_uniqueness_constraint ON public.hud_report_hic_organizations USING btree ("OrganizationID", data_source_id, report_instance_id); + + +-- +-- Name: hud_report_hic_project_cocs_uniqueness_constraint; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX hud_report_hic_project_cocs_uniqueness_constraint ON public.hud_report_hic_project_cocs USING btree ("ProjectCoCID", data_source_id, report_instance_id); + + +-- +-- Name: hud_report_hic_projects_uniqueness_constraint; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX hud_report_hic_projects_uniqueness_constraint ON public.hud_report_hic_projects USING btree ("ProjectID", data_source_id, report_instance_id); + + +-- +-- Name: id_ret_index; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX id_ret_index ON public.recent_report_enrollments USING btree (id); + + +-- +-- Name: id_rsh_index; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX id_rsh_index ON public.recent_service_history USING btree (id); + + +-- +-- Name: idxCustomCaseNoteOnID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "idxCustomCaseNoteOnID" ON public."CustomCaseNote" USING btree (data_source_id, "CustomCaseNoteID"); + + +-- +-- Name: idx_CustomDataElementDefinitions_1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "idx_CustomDataElementDefinitions_1" ON public."CustomDataElementDefinitions" USING btree (form_definition_identifier); + + +-- +-- Name: idx_any_stage; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_any_stage ON public."IncomeBenefits" USING btree ("IncomeFromAnySource", "DataCollectionStage"); + + +-- +-- Name: idx_cibs_p_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_cibs_p_id_ds_id ON public.custom_imports_b_services_rows USING btree (personal_id, data_source_id); + + +-- +-- Name: idx_client_custom_names_full_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_client_custom_names_full_idx ON public."CustomClientName" USING gin (search_name_full public.gin_trgm_ops); + + +-- +-- Name: idx_client_custom_names_last_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_client_custom_names_last_idx ON public."CustomClientName" USING gin (search_name_last public.gin_trgm_ops); + + +-- +-- Name: idx_client_name_full_gin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_client_name_full_gin ON public."Client" USING gin (search_name_full public.gin_trgm_ops); + + +-- +-- Name: idx_client_name_last_gin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_client_name_last_gin ON public."Client" USING gin (search_name_last public.gin_trgm_ops); + + +-- +-- Name: idx_ds_id_p_id_e_id_del; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_ds_id_p_id_e_id_del ON public."Disabilities" USING btree ("EnrollmentID", "PersonalID", "DateDeleted", data_source_id) WHERE ("IndefiniteAndImpairs" = 1); + + +-- +-- Name: idx_earned_stage; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_earned_stage ON public."IncomeBenefits" USING btree ("Earned", "DataCollectionStage"); + + +-- +-- Name: idx_enrollment_ds_id_hh_id_p_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_enrollment_ds_id_hh_id_p_id ON public."Enrollment" USING btree (data_source_id, "HouseholdID", "ProjectID"); + + +-- +-- Name: idx_fed_census_acc_on_geo_measure; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_fed_census_acc_on_geo_measure ON public.federal_census_breakdowns USING btree (accurate_on, geography, geography_level, measure); + + +-- +-- Name: idx_hmis_2020_affiliations_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_affiliations_imid_du ON public.hmis_2020_affiliations USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_assessment_results_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_assessment_results_imid_du ON public.hmis_2020_assessment_results USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_assessments_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_assessments_imid_du ON public.hmis_2020_assessments USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_clients_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_clients_imid_du ON public.hmis_2020_clients USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_current_living_situations_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_current_living_situations_imid_du ON public.hmis_2020_current_living_situations USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_disabilities_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_disabilities_imid_du ON public.hmis_2020_disabilities USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_employment_educations_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_employment_educations_imid_du ON public.hmis_2020_employment_educations USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_enrollment_cocs_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_enrollment_cocs_imid_du ON public.hmis_2020_enrollment_cocs USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_enrollments_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_enrollments_imid_du ON public.hmis_2020_enrollments USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_exits_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_exits_imid_du ON public.hmis_2020_exits USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_funders_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_funders_imid_du ON public.hmis_2020_funders USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_health_and_dvs_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_health_and_dvs_imid_du ON public.hmis_2020_health_and_dvs USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_income_benefits_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_income_benefits_imid_du ON public.hmis_2020_income_benefits USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_inventories_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_inventories_imid_du ON public.hmis_2020_inventories USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_organizations_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_organizations_imid_du ON public.hmis_2020_organizations USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_project_cocs_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_project_cocs_imid_du ON public.hmis_2020_project_cocs USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_projects_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_projects_imid_du ON public.hmis_2020_projects USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_services_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_services_imid_du ON public.hmis_2020_services USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_2020_users_imid_du; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_2020_users_imid_du ON public.hmis_2020_users USING btree (importer_log_id, "DateUpdated"); + + +-- +-- Name: idx_hmis_external_referral_hms_on_referral_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_external_referral_hms_on_referral_id ON public.hmis_external_referral_household_members USING btree (referral_id); + + +-- +-- Name: idx_hmis_external_referral_postings_on_request_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_external_referral_postings_on_request_id ON public.hmis_external_referral_postings USING btree (referral_request_id); + + +-- +-- Name: idx_hmis_external_referral_postings_user_1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_external_referral_postings_user_1 ON public.hmis_external_referral_postings USING btree (status_updated_by_id); + + +-- +-- Name: idx_hmis_external_referral_postings_user_2; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_hmis_external_referral_postings_user_2 ON public.hmis_external_referral_postings USING btree (status_note_updated_by_id); + + +-- +-- Name: idx_inbound_api_configurations_uniq; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX idx_inbound_api_configurations_uniq ON public.inbound_api_configurations USING btree (internal_system_id, external_system_name, version); + + +-- +-- Name: idx_services_hud_types; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_services_hud_types ON public."Services" USING btree ("RecordType", "TypeProvided"); + + +-- +-- Name: idx_tpc_uniqueness; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX idx_tpc_uniqueness ON public.enrollment_extras USING btree (hud_enrollment_id, entry_date, vispdat_ended_at, project_name, agency_name, community, data_source_id); + + +-- +-- Name: income_benefits_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX income_benefits_date_created ON public."IncomeBenefits" USING btree ("DateCreated"); + + +-- +-- Name: income_benefits_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX income_benefits_date_updated ON public."IncomeBenefits" USING btree ("DateUpdated"); + + +-- +-- Name: income_benefits_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX income_benefits_export_id ON public."IncomeBenefits" USING btree ("ExportID"); + + +-- +-- Name: index_Affiliation_on_AffiliationID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_Affiliation_on_AffiliationID_and_data_source_id" ON public."Affiliation" USING btree ("AffiliationID", data_source_id); + + +-- +-- Name: index_Affiliation_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Affiliation_on_DateDeleted_and_data_source_id" ON public."Affiliation" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_Affiliation_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Affiliation_on_data_source_id" ON public."Affiliation" USING btree (data_source_id); + + +-- +-- Name: index_Affiliation_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Affiliation_on_pending_date_deleted" ON public."Affiliation" USING btree (pending_date_deleted); + + +-- +-- Name: index_AssessmentQuestions_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_AssessmentQuestions_on_pending_date_deleted" ON public."AssessmentQuestions" USING btree (pending_date_deleted); + + +-- +-- Name: index_AssessmentResults_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_AssessmentResults_on_pending_date_deleted" ON public."AssessmentResults" USING btree (pending_date_deleted); + + +-- +-- Name: index_Assessment_on_AssessmentID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_Assessment_on_AssessmentID_and_data_source_id" ON public."Assessment" USING btree ("AssessmentID", data_source_id); + + +-- +-- Name: index_Assessment_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Assessment_on_pending_date_deleted" ON public."Assessment" USING btree (pending_date_deleted); + + +-- +-- Name: index_CEParticipation_on_CEParticipationID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CEParticipation_on_CEParticipationID" ON public."CEParticipation" USING btree ("CEParticipationID"); + + +-- +-- Name: index_CEParticipation_on_ProjectID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CEParticipation_on_ProjectID" ON public."CEParticipation" USING btree ("ProjectID"); + + +-- +-- Name: index_Client_on_AmIndAKNative; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_AmIndAKNative" ON public."Client" USING btree ("AmIndAKNative"); + + +-- +-- Name: index_Client_on_Asian; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_Asian" ON public."Client" USING btree ("Asian"); + + +-- +-- Name: index_Client_on_BlackAfAmerican; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_BlackAfAmerican" ON public."Client" USING btree ("BlackAfAmerican"); + + +-- +-- Name: index_Client_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_DateDeleted_and_data_source_id" ON public."Client" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_Client_on_Female; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_Female" ON public."Client" USING btree ("Female"); + + +-- +-- Name: index_Client_on_GenderNone; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_GenderNone" ON public."Client" USING btree ("GenderNone"); + + +-- +-- Name: index_Client_on_Male; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_Male" ON public."Client" USING btree ("Male"); + + +-- +-- Name: index_Client_on_NativeHIOtherPacific; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_NativeHIOtherPacific" ON public."Client" USING btree ("NativeHIOtherPacific"); + + +-- +-- Name: index_Client_on_NativeHIPacific; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_NativeHIPacific" ON public."Client" USING btree ("NativeHIPacific"); + + +-- +-- Name: index_Client_on_NoSingleGender; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_NoSingleGender" ON public."Client" USING btree ("NoSingleGender"); + + +-- +-- Name: index_Client_on_Questioning; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_Questioning" ON public."Client" USING btree ("Questioning"); + + +-- +-- Name: index_Client_on_RaceNone; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_RaceNone" ON public."Client" USING btree ("RaceNone"); + + +-- +-- Name: index_Client_on_Transgender; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_Transgender" ON public."Client" USING btree ("Transgender"); + + +-- +-- Name: index_Client_on_White; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_White" ON public."Client" USING btree ("White"); + + +-- +-- Name: index_Client_on_creator_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_creator_id" ON public."Client" USING btree (creator_id); + + +-- +-- Name: index_Client_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_data_source_id" ON public."Client" USING btree (data_source_id); + + +-- +-- Name: index_Client_on_health_housing_navigator_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_health_housing_navigator_id" ON public."Client" USING btree (health_housing_navigator_id); + + +-- +-- Name: index_Client_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Client_on_pending_date_deleted" ON public."Client" USING btree (pending_date_deleted); + + +-- +-- Name: index_CurrentLivingSituation_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CurrentLivingSituation_on_pending_date_deleted" ON public."CurrentLivingSituation" USING btree (pending_date_deleted); + + +-- +-- Name: index_CurrentLivingSituation_on_verified_by_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CurrentLivingSituation_on_verified_by_project_id" ON public."CurrentLivingSituation" USING btree (verified_by_project_id); + + +-- +-- Name: index_CustomAssessments_on_created_by_hud_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomAssessments_on_created_by_hud_user_id" ON public."CustomAssessments" USING btree (created_by_hud_user_id); + + +-- +-- Name: index_CustomAssessments_on_updated_by_hud_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomAssessments_on_updated_by_hud_user_id" ON public."CustomAssessments" USING btree (updated_by_hud_user_id); + + +-- +-- Name: index_CustomCaseNote_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomCaseNote_on_EnrollmentID" ON public."CustomCaseNote" USING btree ("EnrollmentID"); + + +-- +-- Name: index_CustomCaseNote_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomCaseNote_on_PersonalID" ON public."CustomCaseNote" USING btree ("PersonalID"); + + +-- +-- Name: index_CustomCaseNote_on_UserID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomCaseNote_on_UserID" ON public."CustomCaseNote" USING btree ("UserID"); + + +-- +-- Name: index_CustomClientAddress_on_data_source_id_and_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_CustomClientAddress_on_data_source_id_and_EnrollmentID" ON public."CustomClientAddress" USING btree (data_source_id, "EnrollmentID") WHERE (((enrollment_address_type)::text = 'move_in'::text) AND ("DateDeleted" IS NULL)); + + +-- +-- Name: index_CustomDataElementDefinitions_on_custom_service_type_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomDataElementDefinitions_on_custom_service_type_id" ON public."CustomDataElementDefinitions" USING btree (custom_service_type_id); + + +-- +-- Name: index_CustomDataElementDefinitions_on_key; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomDataElementDefinitions_on_key" ON public."CustomDataElementDefinitions" USING btree (key); + + +-- +-- Name: index_CustomDataElementDefinitions_on_owner_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomDataElementDefinitions_on_owner_type" ON public."CustomDataElementDefinitions" USING btree (owner_type); + + +-- +-- Name: index_CustomDataElements_on_data_element_definition_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomDataElements_on_data_element_definition_id" ON public."CustomDataElements" USING btree (data_element_definition_id); + + +-- +-- Name: index_CustomDataElements_on_owner; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomDataElements_on_owner" ON public."CustomDataElements" USING btree (owner_type, owner_id); + + +-- +-- Name: index_CustomDataElements_on_value_file_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomDataElements_on_value_file_id" ON public."CustomDataElements" USING btree (value_file_id); + + +-- +-- Name: index_CustomServiceTypes_on_custom_service_category_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomServiceTypes_on_custom_service_category_id" ON public."CustomServiceTypes" USING btree (custom_service_category_id); + + +-- +-- Name: index_CustomServices_on_DateProvided; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomServices_on_DateProvided" ON public."CustomServices" USING btree ("DateProvided"); + + +-- +-- Name: index_CustomServices_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomServices_on_EnrollmentID" ON public."CustomServices" USING btree ("EnrollmentID"); + + +-- +-- Name: index_CustomServices_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomServices_on_PersonalID" ON public."CustomServices" USING btree ("PersonalID"); + + +-- +-- Name: index_CustomServices_on_custom_service_type_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomServices_on_custom_service_type_id" ON public."CustomServices" USING btree (custom_service_type_id); + + +-- +-- Name: index_CustomServices_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_CustomServices_on_data_source_id" ON public."CustomServices" USING btree (data_source_id); + + +-- +-- Name: index_Disabilities_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Disabilities_on_DateDeleted_and_data_source_id" ON public."Disabilities" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_Disabilities_on_DisabilitiesID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_Disabilities_on_DisabilitiesID_and_data_source_id" ON public."Disabilities" USING btree ("DisabilitiesID", data_source_id); + + +-- +-- Name: index_Disabilities_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Disabilities_on_EnrollmentID" ON public."Disabilities" USING btree ("EnrollmentID"); + + +-- +-- Name: index_Disabilities_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Disabilities_on_PersonalID" ON public."Disabilities" USING btree ("PersonalID"); + + +-- +-- Name: index_Disabilities_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Disabilities_on_data_source_id" ON public."Disabilities" USING btree (data_source_id); + + +-- +-- Name: index_Disabilities_on_data_source_id_and_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Disabilities_on_data_source_id_and_PersonalID" ON public."Disabilities" USING btree (data_source_id, "PersonalID"); + + +-- +-- Name: index_Disabilities_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Disabilities_on_pending_date_deleted" ON public."Disabilities" USING btree (pending_date_deleted); + + +-- +-- Name: index_EmploymentEducation_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_EmploymentEducation_on_DateDeleted_and_data_source_id" ON public."EmploymentEducation" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_EmploymentEducation_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_EmploymentEducation_on_EnrollmentID" ON public."EmploymentEducation" USING btree ("EnrollmentID"); + + +-- +-- Name: index_EmploymentEducation_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_EmploymentEducation_on_PersonalID" ON public."EmploymentEducation" USING btree ("PersonalID"); + + +-- +-- Name: index_EmploymentEducation_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_EmploymentEducation_on_data_source_id" ON public."EmploymentEducation" USING btree (data_source_id); + + +-- +-- Name: index_EmploymentEducation_on_data_source_id_and_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_EmploymentEducation_on_data_source_id_and_PersonalID" ON public."EmploymentEducation" USING btree (data_source_id, "PersonalID"); + + +-- +-- Name: index_EmploymentEducation_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_EmploymentEducation_on_pending_date_deleted" ON public."EmploymentEducation" USING btree (pending_date_deleted); + + +-- +-- Name: index_EnrollmentCoC_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_EnrollmentCoC_on_DateDeleted_and_data_source_id" ON public."EnrollmentCoC" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_EnrollmentCoC_on_EnrollmentCoCID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_EnrollmentCoC_on_EnrollmentCoCID" ON public."EnrollmentCoC" USING btree ("EnrollmentCoCID"); + + +-- +-- Name: index_EnrollmentCoC_on_EnrollmentCoCID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_EnrollmentCoC_on_EnrollmentCoCID_and_data_source_id" ON public."EnrollmentCoC" USING btree ("EnrollmentCoCID", data_source_id); + + +-- +-- Name: index_EnrollmentCoC_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_EnrollmentCoC_on_data_source_id" ON public."EnrollmentCoC" USING btree (data_source_id); + + +-- +-- Name: index_EnrollmentCoC_on_data_source_id_and_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_EnrollmentCoC_on_data_source_id_and_PersonalID" ON public."EnrollmentCoC" USING btree (data_source_id, "PersonalID"); + + +-- +-- Name: index_EnrollmentCoC_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_EnrollmentCoC_on_pending_date_deleted" ON public."EnrollmentCoC" USING btree (pending_date_deleted); + + +-- +-- Name: index_Enrollment_on_DateDeleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_DateDeleted" ON public."Enrollment" USING btree ("DateDeleted"); + + +-- +-- Name: index_Enrollment_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_DateDeleted_and_data_source_id" ON public."Enrollment" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_Enrollment_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_EnrollmentID" ON public."Enrollment" USING btree ("EnrollmentID"); + + +-- +-- Name: index_Enrollment_on_EntryDate; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_EntryDate" ON public."Enrollment" USING btree ("EntryDate"); + + +-- +-- Name: index_Enrollment_on_MoveInDate; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_MoveInDate" ON public."Enrollment" USING btree ("MoveInDate"); + + +-- +-- Name: index_Enrollment_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_PersonalID" ON public."Enrollment" USING btree ("PersonalID"); + + +-- +-- Name: index_Enrollment_on_ProjectID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_ProjectID" ON public."Enrollment" USING btree ("ProjectID"); + + +-- +-- Name: index_Enrollment_on_ProjectID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_ProjectID_and_data_source_id" ON public."Enrollment" USING btree ("ProjectID", data_source_id) WHERE ("DateDeleted" IS NULL); + + +-- +-- Name: index_Enrollment_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_data_source_id" ON public."Enrollment" USING btree (data_source_id); + + +-- +-- Name: index_Enrollment_on_data_source_id_and_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_data_source_id_and_PersonalID" ON public."Enrollment" USING btree (data_source_id, "PersonalID"); + + +-- +-- Name: index_Enrollment_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_pending_date_deleted" ON public."Enrollment" USING btree (pending_date_deleted); + + +-- +-- Name: index_Enrollment_on_project_pk; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_project_pk" ON public."Enrollment" USING btree (project_pk); + + +-- +-- Name: index_Enrollment_on_service_history_processing_job_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Enrollment_on_service_history_processing_job_id" ON public."Enrollment" USING btree (service_history_processing_job_id); + + +-- +-- Name: index_Event_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Event_on_pending_date_deleted" ON public."Event" USING btree (pending_date_deleted); + + +-- +-- Name: index_Exit_on_DateDeleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Exit_on_DateDeleted" ON public."Exit" USING btree ("DateDeleted"); + + +-- +-- Name: index_Exit_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Exit_on_DateDeleted_and_data_source_id" ON public."Exit" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_Exit_on_ExitDate; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Exit_on_ExitDate" ON public."Exit" USING btree ("ExitDate"); + + +-- +-- Name: index_Exit_on_ExitID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_Exit_on_ExitID_and_data_source_id" ON public."Exit" USING btree ("ExitID", data_source_id); + + +-- +-- Name: index_Exit_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Exit_on_pending_date_deleted" ON public."Exit" USING btree (pending_date_deleted); + + +-- +-- Name: index_Export_on_ExportID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_Export_on_ExportID_and_data_source_id" ON public."Export" USING btree ("ExportID", data_source_id); + + +-- +-- Name: index_Export_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Export_on_data_source_id" ON public."Export" USING btree (data_source_id); + + +-- +-- Name: index_Funder_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Funder_on_DateDeleted_and_data_source_id" ON public."Funder" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_Funder_on_FunderID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_Funder_on_FunderID_and_data_source_id" ON public."Funder" USING btree ("FunderID", data_source_id); + + +-- +-- Name: index_Funder_on_ProjectID_and_Funder; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Funder_on_ProjectID_and_Funder" ON public."Funder" USING btree ("ProjectID", "Funder"); + + +-- +-- Name: index_Funder_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Funder_on_data_source_id" ON public."Funder" USING btree (data_source_id); + + +-- +-- Name: index_Funder_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Funder_on_pending_date_deleted" ON public."Funder" USING btree (pending_date_deleted); + + +-- +-- Name: index_Geography_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Geography_on_DateDeleted_and_data_source_id" ON public."Geography" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_Geography_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Geography_on_data_source_id" ON public."Geography" USING btree (data_source_id); + + +-- +-- Name: index_Geography_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Geography_on_pending_date_deleted" ON public."Geography" USING btree (pending_date_deleted); + + +-- +-- Name: index_HMISParticipation_on_HMISParticipationID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_HMISParticipation_on_HMISParticipationID" ON public."HMISParticipation" USING btree ("HMISParticipationID"); + + +-- +-- Name: index_HMISParticipation_on_ProjectID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_HMISParticipation_on_ProjectID" ON public."HMISParticipation" USING btree ("ProjectID"); + + +-- +-- Name: index_HealthAndDV_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_HealthAndDV_on_DateDeleted_and_data_source_id" ON public."HealthAndDV" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_HealthAndDV_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_HealthAndDV_on_EnrollmentID" ON public."HealthAndDV" USING btree ("EnrollmentID"); + + +-- +-- Name: index_HealthAndDV_on_HealthAndDVID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_HealthAndDV_on_HealthAndDVID_and_data_source_id" ON public."HealthAndDV" USING btree ("HealthAndDVID", data_source_id); + + +-- +-- Name: index_HealthAndDV_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_HealthAndDV_on_PersonalID" ON public."HealthAndDV" USING btree ("PersonalID"); + + +-- +-- Name: index_HealthAndDV_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_HealthAndDV_on_data_source_id" ON public."HealthAndDV" USING btree (data_source_id); + + +-- +-- Name: index_HealthAndDV_on_data_source_id_and_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_HealthAndDV_on_data_source_id_and_PersonalID" ON public."HealthAndDV" USING btree (data_source_id, "PersonalID"); + + +-- +-- Name: index_HealthAndDV_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_HealthAndDV_on_pending_date_deleted" ON public."HealthAndDV" USING btree (pending_date_deleted); + + +-- +-- Name: index_IncomeBenefits_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_IncomeBenefits_on_DateDeleted_and_data_source_id" ON public."IncomeBenefits" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_IncomeBenefits_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_IncomeBenefits_on_EnrollmentID" ON public."IncomeBenefits" USING btree ("EnrollmentID"); + + +-- +-- Name: index_IncomeBenefits_on_IncomeBenefitsID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_IncomeBenefits_on_IncomeBenefitsID_and_data_source_id" ON public."IncomeBenefits" USING btree ("IncomeBenefitsID", data_source_id); + + +-- +-- Name: index_IncomeBenefits_on_InformationDate; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_IncomeBenefits_on_InformationDate" ON public."IncomeBenefits" USING btree ("InformationDate"); + + +-- +-- Name: index_IncomeBenefits_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_IncomeBenefits_on_PersonalID" ON public."IncomeBenefits" USING btree ("PersonalID"); + + +-- +-- Name: index_IncomeBenefits_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_IncomeBenefits_on_data_source_id" ON public."IncomeBenefits" USING btree (data_source_id); + + +-- +-- Name: index_IncomeBenefits_on_data_source_id_and_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_IncomeBenefits_on_data_source_id_and_PersonalID" ON public."IncomeBenefits" USING btree (data_source_id, "PersonalID"); + + +-- +-- Name: index_IncomeBenefits_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_IncomeBenefits_on_pending_date_deleted" ON public."IncomeBenefits" USING btree (pending_date_deleted); + + +-- +-- Name: index_Inventory_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Inventory_on_DateDeleted_and_data_source_id" ON public."Inventory" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_Inventory_on_InventoryID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_Inventory_on_InventoryID_and_data_source_id" ON public."Inventory" USING btree ("InventoryID", data_source_id); + + +-- +-- Name: index_Inventory_on_ProjectID_and_CoCCode_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Inventory_on_ProjectID_and_CoCCode_and_data_source_id" ON public."Inventory" USING btree ("ProjectID", "CoCCode", data_source_id); + + +-- +-- Name: index_Inventory_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Inventory_on_data_source_id" ON public."Inventory" USING btree (data_source_id); + + +-- +-- Name: index_Inventory_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Inventory_on_pending_date_deleted" ON public."Inventory" USING btree (pending_date_deleted); + + +-- +-- Name: index_Organization_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Organization_on_DateDeleted_and_data_source_id" ON public."Organization" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_Organization_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Organization_on_data_source_id" ON public."Organization" USING btree (data_source_id); + + +-- +-- Name: index_Organization_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Organization_on_pending_date_deleted" ON public."Organization" USING btree (pending_date_deleted); + + +-- +-- Name: index_ProjectCoC_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_ProjectCoC_on_DateDeleted_and_data_source_id" ON public."ProjectCoC" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_ProjectCoC_on_ProjectCoCID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_ProjectCoC_on_ProjectCoCID_and_data_source_id" ON public."ProjectCoC" USING btree ("ProjectCoCID", data_source_id); + + +-- +-- Name: index_ProjectCoC_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_ProjectCoC_on_data_source_id" ON public."ProjectCoC" USING btree (data_source_id); + + +-- +-- Name: index_ProjectCoC_on_data_source_id_and_ProjectID_and_CoCCode; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_ProjectCoC_on_data_source_id_and_ProjectID_and_CoCCode" ON public."ProjectCoC" USING btree (data_source_id, "ProjectID", "CoCCode"); + + +-- +-- Name: index_ProjectCoC_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_ProjectCoC_on_pending_date_deleted" ON public."ProjectCoC" USING btree (pending_date_deleted); + + +-- +-- Name: index_Project_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Project_on_DateDeleted_and_data_source_id" ON public."Project" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_Project_on_ProjectType; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Project_on_ProjectType" ON public."Project" USING btree ("ProjectType"); + + +-- +-- Name: index_Project_on_computed_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Project_on_computed_project_type" ON public."Project" USING btree (computed_project_type); + + +-- +-- Name: index_Project_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Project_on_data_source_id" ON public."Project" USING btree (data_source_id); + + +-- +-- Name: index_Project_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Project_on_pending_date_deleted" ON public."Project" USING btree (pending_date_deleted); + + +-- +-- Name: index_Services_on_DateDeleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Services_on_DateDeleted" ON public."Services" USING btree ("DateDeleted"); + + +-- +-- Name: index_Services_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Services_on_DateDeleted_and_data_source_id" ON public."Services" USING btree ("DateDeleted", data_source_id); + + +-- +-- Name: index_Services_on_DateProvided; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Services_on_DateProvided" ON public."Services" USING btree ("DateProvided"); + + +-- +-- Name: index_Services_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Services_on_PersonalID" ON public."Services" USING btree ("PersonalID"); + + +-- +-- Name: index_Services_on_ServicesID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_Services_on_ServicesID_and_data_source_id" ON public."Services" USING btree ("ServicesID", data_source_id); + + +-- +-- Name: index_Services_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Services_on_data_source_id" ON public."Services" USING btree (data_source_id); + + +-- +-- Name: index_Services_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_Services_on_pending_date_deleted" ON public."Services" USING btree (pending_date_deleted); + + +-- +-- Name: index_User_on_UserID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "index_User_on_UserID_and_data_source_id" ON public."User" USING btree ("UserID", data_source_id); + + +-- +-- Name: index_User_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_User_on_pending_date_deleted" ON public."User" USING btree (pending_date_deleted); + + +-- +-- Name: index_ac_hmis_projects_import_attempts_on_etag; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ac_hmis_projects_import_attempts_on_etag ON public.ac_hmis_projects_import_attempts USING btree (etag); + + +-- +-- Name: index_ac_hmis_projects_import_attempts_on_key_and_etag; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_ac_hmis_projects_import_attempts_on_key_and_etag ON public.ac_hmis_projects_import_attempts USING btree (key, etag); + + +-- +-- Name: index_ad_hoc_batches_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ad_hoc_batches_on_created_at ON public.ad_hoc_batches USING btree (created_at); + + +-- +-- Name: index_ad_hoc_batches_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ad_hoc_batches_on_deleted_at ON public.ad_hoc_batches USING btree (deleted_at); + + +-- +-- Name: index_ad_hoc_batches_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ad_hoc_batches_on_updated_at ON public.ad_hoc_batches USING btree (updated_at); + + +-- +-- Name: index_ad_hoc_clients_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ad_hoc_clients_on_created_at ON public.ad_hoc_clients USING btree (created_at); + + +-- +-- Name: index_ad_hoc_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ad_hoc_clients_on_deleted_at ON public.ad_hoc_clients USING btree (deleted_at); + + +-- +-- Name: index_ad_hoc_clients_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ad_hoc_clients_on_updated_at ON public.ad_hoc_clients USING btree (updated_at); + + +-- +-- Name: index_ad_hoc_data_sources_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ad_hoc_data_sources_on_created_at ON public.ad_hoc_data_sources USING btree (created_at); + + +-- +-- Name: index_ad_hoc_data_sources_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ad_hoc_data_sources_on_deleted_at ON public.ad_hoc_data_sources USING btree (deleted_at); + + +-- +-- Name: index_ad_hoc_data_sources_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ad_hoc_data_sources_on_updated_at ON public.ad_hoc_data_sources USING btree (updated_at); + + +-- +-- Name: index_ad_hoc_data_sources_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ad_hoc_data_sources_on_user_id ON public.ad_hoc_data_sources USING btree (user_id); + + +-- +-- Name: index_administrative_events_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_administrative_events_on_deleted_at ON public.administrative_events USING btree (deleted_at); + + +-- +-- Name: index_anomalies_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_anomalies_on_client_id ON public.anomalies USING btree (client_id); + + +-- +-- Name: index_anomalies_on_status; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_anomalies_on_status ON public.anomalies USING btree (status); + + +-- +-- Name: index_ansd_enrollments_on_ce_entry_date; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ansd_enrollments_on_ce_entry_date ON public.ansd_enrollments USING btree (ce_entry_date); + + +-- +-- Name: index_ansd_enrollments_on_ce_referral_date; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ansd_enrollments_on_ce_referral_date ON public.ansd_enrollments USING btree (ce_referral_date); + + +-- +-- Name: index_ansd_enrollments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ansd_enrollments_on_enrollment_id ON public.ansd_enrollments USING btree (enrollment_id); + + +-- +-- Name: index_ansd_enrollments_on_entry_date; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ansd_enrollments_on_entry_date ON public.ansd_enrollments USING btree (entry_date); + + +-- +-- Name: index_ansd_enrollments_on_move_in_date; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ansd_enrollments_on_move_in_date ON public.ansd_enrollments USING btree (move_in_date); + + +-- +-- Name: index_ansd_enrollments_on_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ansd_enrollments_on_project_type ON public.ansd_enrollments USING btree (project_type); + + +-- +-- Name: index_ansd_enrollments_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ansd_enrollments_on_report_id ON public.ansd_enrollments USING btree (report_id); + + +-- +-- Name: index_ansd_events_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ansd_events_on_enrollment_id ON public.ansd_events USING btree (enrollment_id); + + +-- +-- Name: index_api_client_data_source_ids_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_api_client_data_source_ids_on_client_id ON public.api_client_data_source_ids USING btree (client_id); + + +-- +-- Name: index_api_client_data_source_ids_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_api_client_data_source_ids_on_data_source_id ON public.api_client_data_source_ids USING btree (data_source_id); + + +-- +-- Name: index_api_client_data_source_ids_on_warehouse_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_api_client_data_source_ids_on_warehouse_id ON public.api_client_data_source_ids USING btree (warehouse_id); + + +-- +-- Name: index_assessment_answer_lookups_on_response_code; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_assessment_answer_lookups_on_response_code ON public.assessment_answer_lookups USING btree (response_code); + + +-- +-- Name: index_boston_project_scorecard_reports_on_apr_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_boston_project_scorecard_reports_on_apr_id ON public.boston_project_scorecard_reports USING btree (apr_id); + + +-- +-- Name: index_boston_project_scorecard_reports_on_comparison_apr_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_boston_project_scorecard_reports_on_comparison_apr_id ON public.boston_project_scorecard_reports USING btree (comparison_apr_id); + + +-- +-- Name: index_boston_project_scorecard_reports_on_project_group_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_boston_project_scorecard_reports_on_project_group_id ON public.boston_project_scorecard_reports USING btree (project_group_id); + + +-- +-- Name: index_boston_project_scorecard_reports_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_boston_project_scorecard_reports_on_project_id ON public.boston_project_scorecard_reports USING btree (project_id); + + +-- +-- Name: index_boston_project_scorecard_reports_on_secondary_reviewer_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_boston_project_scorecard_reports_on_secondary_reviewer_id ON public.boston_project_scorecard_reports USING btree (secondary_reviewer_id); + + +-- +-- Name: index_boston_project_scorecard_reports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_boston_project_scorecard_reports_on_user_id ON public.boston_project_scorecard_reports USING btree (user_id); + + +-- +-- Name: index_cas_availabilities_on_available_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_availabilities_on_available_at ON public.cas_availabilities USING btree (available_at); + + +-- +-- Name: index_cas_availabilities_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_availabilities_on_client_id ON public.cas_availabilities USING btree (client_id); + + +-- +-- Name: index_cas_availabilities_on_unavailable_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_availabilities_on_unavailable_at ON public.cas_availabilities USING btree (unavailable_at); + + +-- +-- Name: index_cas_ce_assessments_on_cas_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_ce_assessments_on_cas_client_id ON public.cas_ce_assessments USING btree (cas_client_id); + + +-- +-- Name: index_cas_ce_assessments_on_cas_non_hmis_assessment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_cas_ce_assessments_on_cas_non_hmis_assessment_id ON public.cas_ce_assessments USING btree (cas_non_hmis_assessment_id); + + +-- +-- Name: index_cas_ce_assessments_on_hmis_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_ce_assessments_on_hmis_client_id ON public.cas_ce_assessments USING btree (hmis_client_id); + + +-- +-- Name: index_cas_ce_assessments_on_program_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_ce_assessments_on_program_id ON public.cas_ce_assessments USING btree (program_id); + + +-- +-- Name: index_cas_enrollments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_enrollments_on_client_id ON public.cas_enrollments USING btree (client_id); + + +-- +-- Name: index_cas_enrollments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_enrollments_on_enrollment_id ON public.cas_enrollments USING btree (enrollment_id); + + +-- +-- Name: index_cas_houseds_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_houseds_on_client_id ON public.cas_houseds USING btree (client_id); + + +-- +-- Name: index_cas_non_hmis_client_histories_on_cas_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_non_hmis_client_histories_on_cas_client_id ON public.cas_non_hmis_client_histories USING btree (cas_client_id); + + +-- +-- Name: index_cas_programs_to_projects_on_program_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_programs_to_projects_on_program_id ON public.cas_programs_to_projects USING btree (program_id); + + +-- +-- Name: index_cas_programs_to_projects_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_programs_to_projects_on_project_id ON public.cas_programs_to_projects USING btree (project_id); + + +-- +-- Name: index_cas_referral_events_on_cas_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_referral_events_on_cas_client_id ON public.cas_referral_events USING btree (cas_client_id); + + +-- +-- Name: index_cas_referral_events_on_client_opportunity_match_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_referral_events_on_client_opportunity_match_id ON public.cas_referral_events USING btree (client_opportunity_match_id); + + +-- +-- Name: index_cas_referral_events_on_hmis_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_referral_events_on_hmis_client_id ON public.cas_referral_events USING btree (hmis_client_id); + + +-- +-- Name: index_cas_referral_events_on_program_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_referral_events_on_program_id ON public.cas_referral_events USING btree (program_id); + + +-- +-- Name: index_cas_reports_on_client_id_and_match_id_and_decision_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_cas_reports_on_client_id_and_match_id_and_decision_id ON public.cas_reports USING btree (client_id, match_id, decision_id); + + +-- +-- Name: index_cas_vacancies_on_program_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_vacancies_on_program_id ON public.cas_vacancies USING btree (program_id); + + +-- +-- Name: index_cas_vacancies_on_sub_program_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cas_vacancies_on_sub_program_id ON public.cas_vacancies USING btree (sub_program_id); + + +-- +-- Name: index_ce_assessments_on_assessor_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ce_assessments_on_assessor_id ON public.ce_assessments USING btree (assessor_id); + + +-- +-- Name: index_ce_assessments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ce_assessments_on_client_id ON public.ce_assessments USING btree (client_id); + + +-- +-- Name: index_ce_assessments_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ce_assessments_on_deleted_at ON public.ce_assessments USING btree (deleted_at); + + +-- +-- Name: index_ce_assessments_on_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ce_assessments_on_type ON public.ce_assessments USING btree (type); + + +-- +-- Name: index_ce_assessments_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ce_assessments_on_user_id ON public.ce_assessments USING btree (user_id); + + +-- +-- Name: index_ce_performance_ce_aprs_on_ce_apr_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ce_performance_ce_aprs_on_ce_apr_id ON public.ce_performance_ce_aprs USING btree (ce_apr_id); + + +-- +-- Name: index_ce_performance_ce_aprs_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ce_performance_ce_aprs_on_report_id ON public.ce_performance_ce_aprs USING btree (report_id); + + +-- +-- Name: index_ce_performance_clients_on_ce_apr_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ce_performance_clients_on_ce_apr_id ON public.ce_performance_clients USING btree (ce_apr_id); + + +-- +-- Name: index_ce_performance_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ce_performance_clients_on_client_id ON public.ce_performance_clients USING btree (client_id); + + +-- +-- Name: index_ce_performance_clients_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ce_performance_clients_on_report_id ON public.ce_performance_clients USING btree (report_id); + + +-- +-- Name: index_ce_performance_results_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ce_performance_results_on_report_id ON public.ce_performance_results USING btree (report_id); + + +-- +-- Name: index_census_groups_on_year_and_dataset_and_name; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_census_groups_on_year_and_dataset_and_name ON public.census_groups USING btree (year, dataset, name); + + +-- +-- Name: index_census_values_on_census_level; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_census_values_on_census_level ON public.census_values USING btree (census_level); + + +-- +-- Name: index_census_values_on_census_variable_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_census_values_on_census_variable_id ON public.census_values USING btree (census_variable_id); + + +-- +-- Name: index_census_values_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_census_values_on_full_geoid ON public.census_values USING btree (full_geoid); + + +-- +-- Name: index_census_values_on_full_geoid_and_census_variable_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_census_values_on_full_geoid_and_census_variable_id ON public.census_values USING btree (full_geoid, census_variable_id); + + +-- +-- Name: index_census_variables_on_dataset; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_census_variables_on_dataset ON public.census_variables USING btree (dataset); + + +-- +-- Name: index_census_variables_on_internal_name_and_year_and_dataset; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_census_variables_on_internal_name_and_year_and_dataset ON public.census_variables USING btree (internal_name, year, dataset) WHERE (internal_name IS NOT NULL); + + +-- +-- Name: index_census_variables_on_year_and_dataset_and_name; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_census_variables_on_year_and_dataset_and_name ON public.census_variables USING btree (year, dataset, name); + + +-- +-- Name: index_censuses_ds_id_proj_type_org_id_proj_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_censuses_ds_id_proj_type_org_id_proj_id ON public.censuses USING btree (data_source_id, "ProjectType", "OrganizationID", "ProjectID"); + + +-- +-- Name: index_censuses_on_date; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_censuses_on_date ON public.censuses USING btree (date); + + +-- +-- Name: index_censuses_on_date_and_ProjectType; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_censuses_on_date_and_ProjectType" ON public.censuses USING btree (date, "ProjectType"); + + +-- +-- Name: index_children_on_family_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_children_on_family_id ON public.children USING btree (family_id); + + +-- +-- Name: index_chronics_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_chronics_on_client_id ON public.chronics USING btree (client_id); + + +-- +-- Name: index_chronics_on_date; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_chronics_on_date ON public.chronics USING btree (date); + + +-- +-- Name: index_clh_locations_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_clh_locations_on_client_id ON public.clh_locations USING btree (client_id); + + +-- +-- Name: index_clh_locations_on_lat_and_lon; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_clh_locations_on_lat_and_lon ON public.clh_locations USING btree (lat, lon); + + +-- +-- Name: index_clh_locations_on_source_type_and_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_clh_locations_on_source_type_and_source_id ON public.clh_locations USING btree (source_type, source_id); + + +-- +-- Name: index_client_contacts_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_contacts_on_client_id ON public.client_contacts USING btree (client_id); + + +-- +-- Name: index_client_contacts_on_source_type_and_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_contacts_on_source_type_and_source_id ON public.client_contacts USING btree (source_type, source_id); + + +-- +-- Name: index_client_matches_on_destination_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_matches_on_destination_client_id ON public.client_matches USING btree (destination_client_id); + + +-- +-- Name: index_client_matches_on_source_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_matches_on_source_client_id ON public.client_matches USING btree (source_client_id); + + +-- +-- Name: index_client_matches_on_updated_by_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_matches_on_updated_by_id ON public.client_matches USING btree (updated_by_id); + + +-- +-- Name: index_client_merge_histories_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_merge_histories_on_created_at ON public.client_merge_histories USING btree (created_at); + + +-- +-- Name: index_client_merge_histories_on_merged_from; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_merge_histories_on_merged_from ON public.client_merge_histories USING btree (merged_from); + + +-- +-- Name: index_client_merge_histories_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_merge_histories_on_updated_at ON public.client_merge_histories USING btree (updated_at); + + +-- +-- Name: index_client_notes_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_notes_on_client_id ON public.client_notes USING btree (client_id); + + +-- +-- Name: index_client_notes_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_notes_on_project_id ON public.client_notes USING btree (project_id); + + +-- +-- Name: index_client_notes_on_service_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_notes_on_service_id ON public.client_notes USING btree (service_id); + + +-- +-- Name: index_client_notes_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_notes_on_user_id ON public.client_notes USING btree (user_id); + + +-- +-- Name: index_client_roi_authorizations_on_destination_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_client_roi_authorizations_on_destination_client_id ON public.client_roi_authorizations USING btree (destination_client_id); + + +-- +-- Name: index_client_split_histories_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_split_histories_on_created_at ON public.client_split_histories USING btree (created_at); + + +-- +-- Name: index_client_split_histories_on_split_from; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_split_histories_on_split_from ON public.client_split_histories USING btree (split_from); + + +-- +-- Name: index_client_split_histories_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_client_split_histories_on_updated_at ON public.client_split_histories USING btree (updated_at); + + +-- +-- Name: index_coc_codes_on_coc_code; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_coc_codes_on_coc_code ON public.coc_codes USING btree (coc_code); + + +-- +-- Name: index_coc_pit_counts_on_goal_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_coc_pit_counts_on_goal_id ON public.coc_pit_counts USING btree (goal_id); + + +-- +-- Name: index_cohort_client_changes_on_change; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cohort_client_changes_on_change ON public.cohort_client_changes USING btree (change); + + +-- +-- Name: index_cohort_client_changes_on_changed_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cohort_client_changes_on_changed_at ON public.cohort_client_changes USING btree (changed_at); + + +-- +-- Name: index_cohort_client_notes_on_cohort_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cohort_client_notes_on_cohort_client_id ON public.cohort_client_notes USING btree (cohort_client_id); + + +-- +-- Name: index_cohort_client_notes_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cohort_client_notes_on_deleted_at ON public.cohort_client_notes USING btree (deleted_at); + + +-- +-- Name: index_cohort_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cohort_clients_on_client_id ON public.cohort_clients USING btree (client_id); + + +-- +-- Name: index_cohort_clients_on_cohort_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cohort_clients_on_cohort_id ON public.cohort_clients USING btree (cohort_id); + + +-- +-- Name: index_cohort_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cohort_clients_on_deleted_at ON public.cohort_clients USING btree (deleted_at); + + +-- +-- Name: index_cohort_tabs_on_cohort_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cohort_tabs_on_cohort_id ON public.cohort_tabs USING btree (cohort_id); + + +-- +-- Name: index_cohorts_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cohorts_on_deleted_at ON public.cohorts USING btree (deleted_at); + + +-- +-- Name: index_cohorts_on_project_group_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_cohorts_on_project_group_id ON public.cohorts USING btree (project_group_id); + + +-- +-- Name: index_contacts_on_entity_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_contacts_on_entity_id ON public.contacts USING btree (entity_id); + + +-- +-- Name: index_contacts_on_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_contacts_on_type ON public.contacts USING btree (type); + + +-- +-- Name: index_csg_engage_program_mappings_on_program_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_csg_engage_program_mappings_on_program_id ON public.csg_engage_program_mappings USING btree (program_id); + + +-- +-- Name: index_csg_engage_program_mappings_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_csg_engage_program_mappings_on_project_id ON public.csg_engage_program_mappings USING btree (project_id); + + +-- +-- Name: index_csg_engage_program_reports_on_program_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_csg_engage_program_reports_on_program_id ON public.csg_engage_program_reports USING btree (program_id); + + +-- +-- Name: index_csg_engage_program_reports_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_csg_engage_program_reports_on_report_id ON public.csg_engage_program_reports USING btree (report_id); + + +-- +-- Name: index_csg_engage_programs_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_csg_engage_programs_on_agency_id ON public.csg_engage_programs USING btree (agency_id); + + +-- +-- Name: index_csg_engage_reports_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_csg_engage_reports_on_agency_id ON public.csg_engage_reports USING btree (agency_id); + + +-- +-- Name: index_custom_imports_b_al_rows_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_al_rows_on_created_at ON public.custom_imports_b_al_rows USING btree (created_at); + + +-- +-- Name: index_custom_imports_b_al_rows_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_al_rows_on_data_source_id ON public.custom_imports_b_al_rows USING btree (data_source_id); + + +-- +-- Name: index_custom_imports_b_al_rows_on_import_file_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_al_rows_on_import_file_id ON public.custom_imports_b_al_rows USING btree (import_file_id); + + +-- +-- Name: index_custom_imports_b_al_rows_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_al_rows_on_updated_at ON public.custom_imports_b_al_rows USING btree (updated_at); + + +-- +-- Name: index_custom_imports_b_contacts_rows_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_contacts_rows_on_created_at ON public.custom_imports_b_contacts_rows USING btree (created_at); + + +-- +-- Name: index_custom_imports_b_contacts_rows_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_contacts_rows_on_data_source_id ON public.custom_imports_b_contacts_rows USING btree (data_source_id); + + +-- +-- Name: index_custom_imports_b_contacts_rows_on_import_file_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_contacts_rows_on_import_file_id ON public.custom_imports_b_contacts_rows USING btree (import_file_id); + + +-- +-- Name: index_custom_imports_b_contacts_rows_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_contacts_rows_on_updated_at ON public.custom_imports_b_contacts_rows USING btree (updated_at); + + +-- +-- Name: index_custom_imports_b_coo_rows_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_coo_rows_on_data_source_id ON public.custom_imports_b_coo_rows USING btree (data_source_id); + + +-- +-- Name: index_custom_imports_b_coo_rows_on_import_file_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_coo_rows_on_import_file_id ON public.custom_imports_b_coo_rows USING btree (import_file_id); + + +-- +-- Name: index_custom_imports_b_coo_rows_on_unique_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_custom_imports_b_coo_rows_on_unique_id ON public.custom_imports_b_coo_rows USING btree (unique_id); + + +-- +-- Name: index_custom_imports_b_services_rows_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_services_rows_on_created_at ON public.custom_imports_b_services_rows USING btree (created_at); + + +-- +-- Name: index_custom_imports_b_services_rows_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_services_rows_on_data_source_id ON public.custom_imports_b_services_rows USING btree (data_source_id); + + +-- +-- Name: index_custom_imports_b_services_rows_on_import_file_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_services_rows_on_import_file_id ON public.custom_imports_b_services_rows USING btree (import_file_id); + + +-- +-- Name: index_custom_imports_b_services_rows_on_service_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_custom_imports_b_services_rows_on_service_id ON public.custom_imports_b_services_rows USING btree (service_id); + + +-- +-- Name: index_custom_imports_b_services_rows_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_b_services_rows_on_updated_at ON public.custom_imports_b_services_rows USING btree (updated_at); + + +-- +-- Name: index_custom_imports_config_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_config_on_created_at ON public.custom_imports_config USING btree (created_at); + + +-- +-- Name: index_custom_imports_config_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_config_on_data_source_id ON public.custom_imports_config USING btree (data_source_id); + + +-- +-- Name: index_custom_imports_config_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_config_on_updated_at ON public.custom_imports_config USING btree (updated_at); + + +-- +-- Name: index_custom_imports_config_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_config_on_user_id ON public.custom_imports_config USING btree (user_id); + + +-- +-- Name: index_custom_imports_files_on_config_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_files_on_config_id ON public.custom_imports_files USING btree (config_id); + + +-- +-- Name: index_custom_imports_files_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_files_on_created_at ON public.custom_imports_files USING btree (created_at); + + +-- +-- Name: index_custom_imports_files_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_files_on_data_source_id ON public.custom_imports_files USING btree (data_source_id); + + +-- +-- Name: index_custom_imports_files_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_custom_imports_files_on_updated_at ON public.custom_imports_files USING btree (updated_at); + + +-- +-- Name: index_data_monitorings_on_calculated_on; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_data_monitorings_on_calculated_on ON public.data_monitorings USING btree (calculated_on); + + +-- +-- Name: index_data_monitorings_on_census; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_data_monitorings_on_census ON public.data_monitorings USING btree (census); + + +-- +-- Name: index_data_monitorings_on_resource_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_data_monitorings_on_resource_id ON public.data_monitorings USING btree (resource_id); + + +-- +-- Name: index_data_monitorings_on_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_data_monitorings_on_type ON public.data_monitorings USING btree (type); + + +-- +-- Name: index_datasets_on_source; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_datasets_on_source ON public.datasets USING btree (source_type, source_id); + + +-- +-- Name: index_direct_financial_assistances_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_direct_financial_assistances_on_deleted_at ON public.direct_financial_assistances USING btree (deleted_at); + + +-- +-- Name: index_document_exports_on_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_document_exports_on_type ON public.document_exports USING btree (type); + + +-- +-- Name: index_document_exports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_document_exports_on_user_id ON public.document_exports USING btree (user_id); + + +-- +-- Name: index_eccovia_assessments_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_eccovia_assessments_on_data_source_id ON public.eccovia_assessments USING btree (data_source_id); + + +-- +-- Name: index_eccovia_case_managers_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_eccovia_case_managers_on_data_source_id ON public.eccovia_case_managers USING btree (data_source_id); + + +-- +-- Name: index_eccovia_client_contacts_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_eccovia_client_contacts_on_data_source_id ON public.eccovia_client_contacts USING btree (data_source_id); + + +-- +-- Name: index_eccovia_fetches_on_credentials_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_eccovia_fetches_on_credentials_id ON public.eccovia_fetches USING btree (credentials_id); + + +-- +-- Name: index_eccovia_fetches_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_eccovia_fetches_on_data_source_id ON public.eccovia_fetches USING btree (data_source_id); + + +-- +-- Name: index_enrollment_change_histories_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_enrollment_change_histories_on_client_id ON public.enrollment_change_histories USING btree (client_id); + + +-- +-- Name: index_enrollment_extras_on_client_id_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_enrollment_extras_on_client_id_and_data_source_id ON public.enrollment_extras USING btree (client_id, data_source_id); + + +-- +-- Name: index_enrollment_extras_on_file_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_enrollment_extras_on_file_id ON public.enrollment_extras USING btree (file_id); + + +-- +-- Name: index_enrollment_extras_on_hud_enrollment_id_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_enrollment_extras_on_hud_enrollment_id_and_data_source_id ON public.enrollment_extras USING btree (hud_enrollment_id, data_source_id); + + +-- +-- Name: index_eto_api_configs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_eto_api_configs_on_data_source_id ON public.eto_api_configs USING btree (data_source_id); + + +-- +-- Name: index_eto_client_lookups_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_eto_client_lookups_on_client_id ON public.eto_client_lookups USING btree (client_id); + + +-- +-- Name: index_eto_client_lookups_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_eto_client_lookups_on_data_source_id ON public.eto_client_lookups USING btree (data_source_id); + + +-- +-- Name: index_eto_subject_response_lookups_on_subject_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_eto_subject_response_lookups_on_subject_id ON public.eto_subject_response_lookups USING btree (subject_id); + + +-- +-- Name: index_eto_touch_point_lookups_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_eto_touch_point_lookups_on_client_id ON public.eto_touch_point_lookups USING btree (client_id); + + +-- +-- Name: index_eto_touch_point_lookups_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_eto_touch_point_lookups_on_data_source_id ON public.eto_touch_point_lookups USING btree (data_source_id); + + +-- +-- Name: index_exports_ad_hoc_anons_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_exports_ad_hoc_anons_on_created_at ON public.exports_ad_hoc_anons USING btree (created_at); + + +-- +-- Name: index_exports_ad_hoc_anons_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_exports_ad_hoc_anons_on_updated_at ON public.exports_ad_hoc_anons USING btree (updated_at); + + +-- +-- Name: index_exports_ad_hoc_anons_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_exports_ad_hoc_anons_on_user_id ON public.exports_ad_hoc_anons USING btree (user_id); + + +-- +-- Name: index_exports_ad_hocs_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_exports_ad_hocs_on_created_at ON public.exports_ad_hocs USING btree (created_at); + + +-- +-- Name: index_exports_ad_hocs_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_exports_ad_hocs_on_updated_at ON public.exports_ad_hocs USING btree (updated_at); + + +-- +-- Name: index_exports_ad_hocs_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_exports_ad_hocs_on_user_id ON public.exports_ad_hocs USING btree (user_id); + + +-- +-- Name: index_exports_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_exports_on_deleted_at ON public.exports USING btree (deleted_at); + + +-- +-- Name: index_exports_on_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_exports_on_export_id ON public.exports USING btree (export_id); + + +-- +-- Name: index_external_ids_on_external_request_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_external_ids_on_external_request_log_id ON public.external_ids USING btree (external_request_log_id); + + +-- +-- Name: index_external_ids_on_remote_credential_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_external_ids_on_remote_credential_id ON public.external_ids USING btree (remote_credential_id); + + +-- +-- Name: index_external_ids_on_value; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_external_ids_on_value ON public.external_ids USING btree (value); + + +-- +-- Name: index_external_reporting_cohort_permissions_on_cohort_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_external_reporting_cohort_permissions_on_cohort_id ON public.external_reporting_cohort_permissions USING btree (cohort_id); + + +-- +-- Name: index_external_reporting_cohort_permissions_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_external_reporting_cohort_permissions_on_user_id ON public.external_reporting_cohort_permissions USING btree (user_id); + + +-- +-- Name: index_external_reporting_project_permissions_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_external_reporting_project_permissions_on_project_id ON public.external_reporting_project_permissions USING btree (project_id); + + +-- +-- Name: index_external_reporting_project_permissions_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_external_reporting_project_permissions_on_user_id ON public.external_reporting_project_permissions USING btree (user_id); + + +-- +-- Name: index_external_request_logs_on_initiator; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_external_request_logs_on_initiator ON public.external_request_logs USING btree (initiator_type, initiator_id); + + +-- +-- Name: index_external_request_logs_on_initiator_id_and_initiator_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_external_request_logs_on_initiator_id_and_initiator_type ON public.external_request_logs USING btree (initiator_id, initiator_type); + + +-- +-- Name: index_external_request_logs_on_ip; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_external_request_logs_on_ip ON public.external_request_logs USING btree (ip); + + +-- +-- Name: index_external_request_logs_on_requested_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_external_request_logs_on_requested_at ON public.external_request_logs USING btree (requested_at); + + +-- +-- Name: index_favorites_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_favorites_on_created_at ON public.favorites USING btree (created_at); + + +-- +-- Name: index_favorites_on_entity; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_favorites_on_entity ON public.favorites USING btree (entity_type, entity_id); + + +-- +-- Name: index_favorites_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_favorites_on_updated_at ON public.favorites USING btree (updated_at); + + +-- +-- Name: index_favorites_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_favorites_on_user_id ON public.favorites USING btree (user_id); + + +-- +-- Name: index_files_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_files_on_data_source_id ON public.files USING btree (data_source_id); + + +-- +-- Name: index_files_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_files_on_enrollment_id ON public.files USING btree (enrollment_id); + + +-- +-- Name: index_files_on_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_files_on_type ON public.files USING btree (type); + + +-- +-- Name: index_files_on_updated_by_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_files_on_updated_by_id ON public.files USING btree (updated_by_id); + + +-- +-- Name: index_files_on_vispdat_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_files_on_vispdat_id ON public.files USING btree (vispdat_id); + + +-- +-- Name: index_generic_services_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_generic_services_on_client_id ON public.generic_services USING btree (client_id); + + +-- +-- Name: index_grades_on_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_grades_on_type ON public.grades USING btree (type); + + +-- +-- Name: index_group_viewable_entities_on_collection_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_group_viewable_entities_on_collection_id ON public.group_viewable_entities USING btree (collection_id); + + +-- +-- Name: index_hap_report_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hap_report_clients_on_client_id ON public.hap_report_clients USING btree (client_id); + + +-- +-- Name: index_hap_report_eraps_on_hap_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hap_report_eraps_on_hap_report_id ON public.hap_report_eraps USING btree (hap_report_id); + + +-- +-- Name: index_health_emergency_ama_restrictions_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_ama_restrictions_on_agency_id ON public.health_emergency_ama_restrictions USING btree (agency_id); + + +-- +-- Name: index_health_emergency_ama_restrictions_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_ama_restrictions_on_client_id ON public.health_emergency_ama_restrictions USING btree (client_id); + + +-- +-- Name: index_health_emergency_ama_restrictions_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_ama_restrictions_on_created_at ON public.health_emergency_ama_restrictions USING btree (created_at); + + +-- +-- Name: index_health_emergency_ama_restrictions_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_ama_restrictions_on_updated_at ON public.health_emergency_ama_restrictions USING btree (updated_at); + + +-- +-- Name: index_health_emergency_ama_restrictions_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_ama_restrictions_on_user_id ON public.health_emergency_ama_restrictions USING btree (user_id); + + +-- +-- Name: index_health_emergency_clinical_triages_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_clinical_triages_on_agency_id ON public.health_emergency_clinical_triages USING btree (agency_id); + + +-- +-- Name: index_health_emergency_clinical_triages_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_clinical_triages_on_client_id ON public.health_emergency_clinical_triages USING btree (client_id); + + +-- +-- Name: index_health_emergency_clinical_triages_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_clinical_triages_on_created_at ON public.health_emergency_clinical_triages USING btree (created_at); + + +-- +-- Name: index_health_emergency_clinical_triages_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_clinical_triages_on_updated_at ON public.health_emergency_clinical_triages USING btree (updated_at); + + +-- +-- Name: index_health_emergency_clinical_triages_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_clinical_triages_on_user_id ON public.health_emergency_clinical_triages USING btree (user_id); + + +-- +-- Name: index_health_emergency_isolations_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_isolations_on_agency_id ON public.health_emergency_isolations USING btree (agency_id); + + +-- +-- Name: index_health_emergency_isolations_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_isolations_on_client_id ON public.health_emergency_isolations USING btree (client_id); + + +-- +-- Name: index_health_emergency_isolations_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_isolations_on_created_at ON public.health_emergency_isolations USING btree (created_at); + + +-- +-- Name: index_health_emergency_isolations_on_location; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_isolations_on_location ON public.health_emergency_isolations USING btree (location); + + +-- +-- Name: index_health_emergency_isolations_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_isolations_on_updated_at ON public.health_emergency_isolations USING btree (updated_at); + + +-- +-- Name: index_health_emergency_isolations_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_isolations_on_user_id ON public.health_emergency_isolations USING btree (user_id); + + +-- +-- Name: index_health_emergency_test_batches_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_test_batches_on_created_at ON public.health_emergency_test_batches USING btree (created_at); + + +-- +-- Name: index_health_emergency_test_batches_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_test_batches_on_deleted_at ON public.health_emergency_test_batches USING btree (deleted_at); + + +-- +-- Name: index_health_emergency_test_batches_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_test_batches_on_updated_at ON public.health_emergency_test_batches USING btree (updated_at); + + +-- +-- Name: index_health_emergency_test_batches_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_test_batches_on_user_id ON public.health_emergency_test_batches USING btree (user_id); + + +-- +-- Name: index_health_emergency_tests_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_tests_on_agency_id ON public.health_emergency_tests USING btree (agency_id); + + +-- +-- Name: index_health_emergency_tests_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_tests_on_client_id ON public.health_emergency_tests USING btree (client_id); + + +-- +-- Name: index_health_emergency_tests_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_tests_on_created_at ON public.health_emergency_tests USING btree (created_at); + + +-- +-- Name: index_health_emergency_tests_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_tests_on_updated_at ON public.health_emergency_tests USING btree (updated_at); + + +-- +-- Name: index_health_emergency_tests_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_tests_on_user_id ON public.health_emergency_tests USING btree (user_id); + + +-- +-- Name: index_health_emergency_triages_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_triages_on_agency_id ON public.health_emergency_triages USING btree (agency_id); + + +-- +-- Name: index_health_emergency_triages_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_triages_on_client_id ON public.health_emergency_triages USING btree (client_id); + + +-- +-- Name: index_health_emergency_triages_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_triages_on_created_at ON public.health_emergency_triages USING btree (created_at); + + +-- +-- Name: index_health_emergency_triages_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_triages_on_updated_at ON public.health_emergency_triages USING btree (updated_at); + + +-- +-- Name: index_health_emergency_triages_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_triages_on_user_id ON public.health_emergency_triages USING btree (user_id); + + +-- +-- Name: index_health_emergency_uploaded_tests_on_ama_restriction_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_uploaded_tests_on_ama_restriction_id ON public.health_emergency_uploaded_tests USING btree (ama_restriction_id); + + +-- +-- Name: index_health_emergency_uploaded_tests_on_batch_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_uploaded_tests_on_batch_id ON public.health_emergency_uploaded_tests USING btree (batch_id); + + +-- +-- Name: index_health_emergency_uploaded_tests_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_uploaded_tests_on_created_at ON public.health_emergency_uploaded_tests USING btree (created_at); + + +-- +-- Name: index_health_emergency_uploaded_tests_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_uploaded_tests_on_deleted_at ON public.health_emergency_uploaded_tests USING btree (deleted_at); + + +-- +-- Name: index_health_emergency_uploaded_tests_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_uploaded_tests_on_updated_at ON public.health_emergency_uploaded_tests USING btree (updated_at); + + +-- +-- Name: index_health_emergency_vaccinations_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_vaccinations_on_agency_id ON public.health_emergency_vaccinations USING btree (agency_id); + + +-- +-- Name: index_health_emergency_vaccinations_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_vaccinations_on_client_id ON public.health_emergency_vaccinations USING btree (client_id); + + +-- +-- Name: index_health_emergency_vaccinations_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_vaccinations_on_created_at ON public.health_emergency_vaccinations USING btree (created_at); + + +-- +-- Name: index_health_emergency_vaccinations_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_vaccinations_on_updated_at ON public.health_emergency_vaccinations USING btree (updated_at); + + +-- +-- Name: index_health_emergency_vaccinations_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_health_emergency_vaccinations_on_user_id ON public.health_emergency_vaccinations USING btree (user_id); + + +-- +-- Name: index_helps_on_controller_path_and_action_name; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_helps_on_controller_path_and_action_name ON public.helps USING btree (controller_path, action_name); + + +-- +-- Name: index_helps_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_helps_on_created_at ON public.helps USING btree (created_at); + + +-- +-- Name: index_helps_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_helps_on_updated_at ON public.helps USING btree (updated_at); + + +-- +-- Name: index_hmis_2020_exports_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2020_exports_on_importer_log_id ON public.hmis_2020_exports USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_affiliations_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_affiliations_on_importer_log_id ON public.hmis_2022_affiliations USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_assessment_questions_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_assessment_questions_on_importer_log_id ON public.hmis_2022_assessment_questions USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_assessment_results_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_assessment_results_on_importer_log_id ON public.hmis_2022_assessment_results USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_assessments_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_assessments_on_importer_log_id ON public.hmis_2022_assessments USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_clients_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_clients_on_importer_log_id ON public.hmis_2022_clients_saved USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_current_living_situations_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_current_living_situations_on_importer_log_id ON public.hmis_2022_current_living_situations USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_disabilities_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_disabilities_on_importer_log_id ON public.hmis_2022_disabilities USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_employment_educations_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_employment_educations_on_importer_log_id ON public.hmis_2022_employment_educations USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_enrollment_cocs_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_enrollment_cocs_on_importer_log_id ON public.hmis_2022_enrollment_cocs USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_enrollments_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_enrollments_on_importer_log_id ON public.hmis_2022_enrollments_saved USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_events_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_events_on_importer_log_id ON public.hmis_2022_events USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_exits_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_exits_on_importer_log_id ON public.hmis_2022_exits_saved USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_exports_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_exports_on_importer_log_id ON public.hmis_2022_exports USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_funders_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_funders_on_importer_log_id ON public.hmis_2022_funders USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_health_and_dvs_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_health_and_dvs_on_importer_log_id ON public.hmis_2022_health_and_dvs USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_income_benefits_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_income_benefits_on_importer_log_id ON public.hmis_2022_income_benefits USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_inventories_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_inventories_on_importer_log_id ON public.hmis_2022_inventories USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_organizations_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_organizations_on_importer_log_id ON public.hmis_2022_organizations USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_project_cocs_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_project_cocs_on_importer_log_id ON public.hmis_2022_project_cocs USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_projects_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_projects_on_importer_log_id ON public.hmis_2022_projects USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_services_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_services_on_importer_log_id ON public.hmis_2022_services_saved USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_users_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_users_on_importer_log_id ON public.hmis_2022_users USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2022_youth_education_statuses_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2022_youth_education_statuses_on_importer_log_id ON public.hmis_2022_youth_education_statuses USING btree (importer_log_id); + + +-- +-- Name: index_hmis_2024_exits_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_2024_exits_on_importer_log_id ON public.hmis_2024_exits USING btree (importer_log_id); + + +-- +-- Name: index_hmis_active_ranges_on_entity; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_active_ranges_on_entity ON public.hmis_active_ranges USING btree (entity_type, entity_id); + + +-- +-- Name: index_hmis_assessment_details_on_assessment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_assessment_details_on_assessment_id ON public.hmis_assessment_details USING btree (assessment_id); + + +-- +-- Name: index_hmis_assessment_details_on_assessment_processor_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_assessment_details_on_assessment_processor_id ON public.hmis_assessment_details USING btree (assessment_processor_id); + + +-- +-- Name: index_hmis_assessment_details_on_definition_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_assessment_details_on_definition_id ON public.hmis_assessment_details USING btree (definition_id); + + +-- +-- Name: index_hmis_assessments_on_assessment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_assessments_on_assessment_id ON public.hmis_assessments USING btree (assessment_id); + + +-- +-- Name: index_hmis_assessments_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_assessments_on_data_source_id ON public.hmis_assessments USING btree (data_source_id); + + +-- +-- Name: index_hmis_assessments_on_name; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_assessments_on_name ON public.hmis_assessments USING btree (name); + + +-- +-- Name: index_hmis_assessments_on_site_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_assessments_on_site_id ON public.hmis_assessments USING btree (site_id); + + +-- +-- Name: index_hmis_auto_exit_configs_on_organization_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_auto_exit_configs_on_organization_id ON public.hmis_auto_exit_configs USING btree (organization_id); + + +-- +-- Name: index_hmis_auto_exit_configs_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_auto_exit_configs_on_project_id ON public.hmis_auto_exit_configs USING btree (project_id); + + +-- +-- Name: index_hmis_case_notes_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_case_notes_on_client_id ON public.hmis_case_notes USING btree (client_id); + + +-- +-- Name: index_hmis_case_notes_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_case_notes_on_enrollment_id ON public.hmis_case_notes USING btree (enrollment_id); + + +-- +-- Name: index_hmis_case_notes_on_organization_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_case_notes_on_organization_id ON public.hmis_case_notes USING btree (organization_id); + + +-- +-- Name: index_hmis_case_notes_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_case_notes_on_project_id ON public.hmis_case_notes USING btree (project_id); + + +-- +-- Name: index_hmis_case_notes_on_source; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_case_notes_on_source ON public.hmis_case_notes USING btree (source_type, source_id); + + +-- +-- Name: index_hmis_case_notes_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_case_notes_on_user_id ON public.hmis_case_notes USING btree (user_id); + + +-- +-- Name: index_hmis_client_alerts_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_client_alerts_on_client_id ON public.hmis_client_alerts USING btree (client_id); + + +-- +-- Name: index_hmis_client_alerts_on_created_by_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_client_alerts_on_created_by_id ON public.hmis_client_alerts USING btree (created_by_id); + + +-- +-- Name: index_hmis_client_attributes_defined_text_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_client_attributes_defined_text_on_client_id ON public.hmis_client_attributes_defined_text USING btree (client_id); + + +-- +-- Name: index_hmis_client_attributes_defined_text_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_client_attributes_defined_text_on_data_source_id ON public.hmis_client_attributes_defined_text USING btree (data_source_id); + + +-- +-- Name: index_hmis_client_merge_histories_on_client_merge_audit_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_client_merge_histories_on_client_merge_audit_id ON public.hmis_client_merge_histories USING btree (client_merge_audit_id); + + +-- +-- Name: index_hmis_client_merge_histories_on_deleted_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_client_merge_histories_on_deleted_client_id ON public.hmis_client_merge_histories USING btree (deleted_client_id); + + +-- +-- Name: index_hmis_client_merge_histories_on_retained_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_client_merge_histories_on_retained_client_id ON public.hmis_client_merge_histories USING btree (retained_client_id); + + +-- +-- Name: index_hmis_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_clients_on_client_id ON public.hmis_clients USING btree (client_id); + + +-- +-- Name: index_hmis_csv_2020_assessment_results_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_assessment_results_on_loader_id ON public.hmis_csv_2020_assessment_results USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_clients_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_clients_on_loader_id ON public.hmis_csv_2020_clients USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_current_living_situations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_current_living_situations_on_loader_id ON public.hmis_csv_2020_current_living_situations USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_disabilities_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_disabilities_on_loader_id ON public.hmis_csv_2020_disabilities USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_employment_educations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_employment_educations_on_loader_id ON public.hmis_csv_2020_employment_educations USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_enrollment_cocs_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_enrollment_cocs_on_loader_id ON public.hmis_csv_2020_enrollment_cocs USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_enrollments_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_enrollments_on_loader_id ON public.hmis_csv_2020_enrollments USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_exports_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_exports_on_loader_id ON public.hmis_csv_2020_exports USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_funders_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_funders_on_loader_id ON public.hmis_csv_2020_funders USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_health_and_dvs_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_health_and_dvs_on_loader_id ON public.hmis_csv_2020_health_and_dvs USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_income_benefits_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_income_benefits_on_loader_id ON public.hmis_csv_2020_income_benefits USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_inventories_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_inventories_on_loader_id ON public.hmis_csv_2020_inventories USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_organizations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_organizations_on_loader_id ON public.hmis_csv_2020_organizations USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_project_cocs_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_project_cocs_on_loader_id ON public.hmis_csv_2020_project_cocs USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_projects_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_projects_on_loader_id ON public.hmis_csv_2020_projects USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_services_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_services_on_loader_id ON public.hmis_csv_2020_services USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2020_users_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2020_users_on_loader_id ON public.hmis_csv_2020_users USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_affiliations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_affiliations_on_loader_id ON public.hmis_csv_2022_affiliations USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_assessment_questions_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_assessment_questions_on_loader_id ON public.hmis_csv_2022_assessment_questions USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_assessment_results_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_assessment_results_on_loader_id ON public.hmis_csv_2022_assessment_results USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_assessments_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_assessments_on_loader_id ON public.hmis_csv_2022_assessments USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_clients_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_clients_on_loader_id ON public.hmis_csv_2022_clients USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_current_living_situations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_current_living_situations_on_loader_id ON public.hmis_csv_2022_current_living_situations USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_disabilities_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_disabilities_on_loader_id ON public.hmis_csv_2022_disabilities USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_employment_educations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_employment_educations_on_loader_id ON public.hmis_csv_2022_employment_educations USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_enrollment_cocs_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_enrollment_cocs_on_loader_id ON public.hmis_csv_2022_enrollment_cocs USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_enrollments_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_enrollments_on_loader_id ON public.hmis_csv_2022_enrollments USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_events_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_events_on_loader_id ON public.hmis_csv_2022_events USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_exits_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_exits_on_loader_id ON public.hmis_csv_2022_exits USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_exports_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_exports_on_loader_id ON public.hmis_csv_2022_exports USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_funders_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_funders_on_loader_id ON public.hmis_csv_2022_funders USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_health_and_dvs_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_health_and_dvs_on_loader_id ON public.hmis_csv_2022_health_and_dvs USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_income_benefits_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_income_benefits_on_loader_id ON public.hmis_csv_2022_income_benefits USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_inventories_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_inventories_on_loader_id ON public.hmis_csv_2022_inventories USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_organizations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_organizations_on_loader_id ON public.hmis_csv_2022_organizations USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_project_cocs_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_project_cocs_on_loader_id ON public.hmis_csv_2022_project_cocs USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_projects_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_projects_on_loader_id ON public.hmis_csv_2022_projects USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_services_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_services_on_loader_id ON public.hmis_csv_2022_services USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_users_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_users_on_loader_id ON public.hmis_csv_2022_users USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_2022_youth_education_statuses_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_2022_youth_education_statuses_on_loader_id ON public.hmis_csv_2022_youth_education_statuses USING btree (loader_id); + + +-- +-- Name: index_hmis_csv_import_errors_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_import_errors_on_importer_log_id ON public.hmis_csv_import_errors USING btree (importer_log_id); + + +-- +-- Name: index_hmis_csv_import_validations_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_import_validations_on_importer_log_id ON public.hmis_csv_import_validations USING btree (importer_log_id); + + +-- +-- Name: index_hmis_csv_import_validations_on_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_import_validations_on_type ON public.hmis_csv_import_validations USING btree (type); + + +-- +-- Name: index_hmis_csv_importer_logs_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_importer_logs_on_created_at ON public.hmis_csv_importer_logs USING btree (created_at); + + +-- +-- Name: index_hmis_csv_importer_logs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_importer_logs_on_data_source_id ON public.hmis_csv_importer_logs USING btree (data_source_id); + + +-- +-- Name: index_hmis_csv_importer_logs_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_importer_logs_on_updated_at ON public.hmis_csv_importer_logs USING btree (updated_at); + + +-- +-- Name: index_hmis_csv_load_errors_on_loader_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_load_errors_on_loader_log_id ON public.hmis_csv_load_errors USING btree (loader_log_id); + + +-- +-- Name: index_hmis_csv_loader_logs_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_loader_logs_on_created_at ON public.hmis_csv_loader_logs USING btree (created_at); + + +-- +-- Name: index_hmis_csv_loader_logs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_loader_logs_on_data_source_id ON public.hmis_csv_loader_logs USING btree (data_source_id); + + +-- +-- Name: index_hmis_csv_loader_logs_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_loader_logs_on_importer_log_id ON public.hmis_csv_loader_logs USING btree (importer_log_id); + + +-- +-- Name: index_hmis_csv_loader_logs_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_csv_loader_logs_on_updated_at ON public.hmis_csv_loader_logs USING btree (updated_at); + + +-- +-- Name: index_hmis_dqt_assessments_on_assessment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_assessments_on_assessment_id ON public.hmis_dqt_assessments USING btree (assessment_id); + + +-- +-- Name: index_hmis_dqt_assessments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_assessments_on_client_id ON public.hmis_dqt_assessments USING btree (client_id); + + +-- +-- Name: index_hmis_dqt_assessments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_assessments_on_enrollment_id ON public.hmis_dqt_assessments USING btree (enrollment_id); + + +-- +-- Name: index_hmis_dqt_assessments_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_assessments_on_report_id ON public.hmis_dqt_assessments USING btree (report_id); + + +-- +-- Name: index_hmis_dqt_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_clients_on_client_id ON public.hmis_dqt_clients USING btree (client_id); + + +-- +-- Name: index_hmis_dqt_clients_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_clients_on_report_id ON public.hmis_dqt_clients USING btree (report_id); + + +-- +-- Name: index_hmis_dqt_current_living_situations_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_current_living_situations_on_client_id ON public.hmis_dqt_current_living_situations USING btree (client_id); + + +-- +-- Name: index_hmis_dqt_current_living_situations_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_current_living_situations_on_enrollment_id ON public.hmis_dqt_current_living_situations USING btree (enrollment_id); + + +-- +-- Name: index_hmis_dqt_current_living_situations_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_current_living_situations_on_report_id ON public.hmis_dqt_current_living_situations USING btree (report_id); + + +-- +-- Name: index_hmis_dqt_enrollments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_enrollments_on_client_id ON public.hmis_dqt_enrollments USING btree (client_id); + + +-- +-- Name: index_hmis_dqt_enrollments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_enrollments_on_enrollment_id ON public.hmis_dqt_enrollments USING btree (enrollment_id); + + +-- +-- Name: index_hmis_dqt_enrollments_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_enrollments_on_project_id ON public.hmis_dqt_enrollments USING btree (project_id); + + +-- +-- Name: index_hmis_dqt_enrollments_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_enrollments_on_report_id ON public.hmis_dqt_enrollments USING btree (report_id); + + +-- +-- Name: index_hmis_dqt_events_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_events_on_client_id ON public.hmis_dqt_events USING btree (client_id); + + +-- +-- Name: index_hmis_dqt_events_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_events_on_enrollment_id ON public.hmis_dqt_events USING btree (enrollment_id); + + +-- +-- Name: index_hmis_dqt_events_on_event_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_events_on_event_id ON public.hmis_dqt_events USING btree (event_id); + + +-- +-- Name: index_hmis_dqt_events_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_events_on_report_id ON public.hmis_dqt_events USING btree (report_id); + + +-- +-- Name: index_hmis_dqt_inventories_on_inventory_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_inventories_on_inventory_id ON public.hmis_dqt_inventories USING btree (inventory_id); + + +-- +-- Name: index_hmis_dqt_inventories_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_inventories_on_project_id ON public.hmis_dqt_inventories USING btree (project_id); + + +-- +-- Name: index_hmis_dqt_inventories_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_dqt_inventories_on_report_id ON public.hmis_dqt_inventories USING btree (report_id); + + +-- +-- Name: index_hmis_external_form_publications_on_definition_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_external_form_publications_on_definition_id ON public.hmis_external_form_publications USING btree (definition_id); + + +-- +-- Name: index_hmis_external_form_submissions_on_definition_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_external_form_submissions_on_definition_id ON public.hmis_external_form_submissions USING btree (definition_id); + + +-- +-- Name: index_hmis_external_form_submissions_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_external_form_submissions_on_enrollment_id ON public.hmis_external_form_submissions USING btree (enrollment_id); + + +-- +-- Name: index_hmis_external_referral_postings_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_external_referral_postings_on_project_id ON public.hmis_external_referral_postings USING btree (project_id); + + +-- +-- Name: index_hmis_external_referral_postings_on_unit_type_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_external_referral_postings_on_unit_type_id ON public.hmis_external_referral_postings USING btree (unit_type_id); + + +-- +-- Name: index_hmis_external_referral_requests_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_external_referral_requests_on_project_id ON public.hmis_external_referral_requests USING btree (project_id); + + +-- +-- Name: index_hmis_external_referral_requests_on_requested_by_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_external_referral_requests_on_requested_by_id ON public.hmis_external_referral_requests USING btree (requested_by_id); + + +-- +-- Name: index_hmis_external_referral_requests_on_unit_type_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_external_referral_requests_on_unit_type_id ON public.hmis_external_referral_requests USING btree (unit_type_id); + + +-- +-- Name: index_hmis_external_referral_requests_on_voided_by_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_external_referral_requests_on_voided_by_id ON public.hmis_external_referral_requests USING btree (voided_by_id); + + +-- +-- Name: index_hmis_external_referrals_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_external_referrals_on_enrollment_id ON public.hmis_external_referrals USING btree (enrollment_id); + + +-- +-- Name: index_hmis_external_unit_availability_syncs_on_unit_type_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_external_unit_availability_syncs_on_unit_type_id ON public.hmis_external_unit_availability_syncs USING btree (unit_type_id); + + +-- +-- Name: index_hmis_external_unit_availability_syncs_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_external_unit_availability_syncs_on_user_id ON public.hmis_external_unit_availability_syncs USING btree (user_id); + + +-- +-- Name: index_hmis_form_instances_on_entity; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_instances_on_entity ON public.hmis_form_instances USING btree (entity_type, entity_id); + + +-- +-- Name: index_hmis_form_processors_on_ce_assessment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_ce_assessment_id ON public.hmis_form_processors USING btree (ce_assessment_id); + + +-- +-- Name: index_hmis_form_processors_on_ce_event_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_ce_event_id ON public.hmis_form_processors USING btree (ce_event_id); + + +-- +-- Name: index_hmis_form_processors_on_chronic_health_condition_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_chronic_health_condition_id ON public.hmis_form_processors USING btree (chronic_health_condition_id); + + +-- +-- Name: index_hmis_form_processors_on_clh_location_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_clh_location_id ON public.hmis_form_processors USING btree (clh_location_id); + + +-- +-- Name: index_hmis_form_processors_on_developmental_disability_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_developmental_disability_id ON public.hmis_form_processors USING btree (developmental_disability_id); + + +-- +-- Name: index_hmis_form_processors_on_enrollment_coc_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_enrollment_coc_id ON public.hmis_form_processors USING btree (enrollment_coc_id); + + +-- +-- Name: index_hmis_form_processors_on_exit_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_exit_id ON public.hmis_form_processors USING btree (exit_id); + + +-- +-- Name: index_hmis_form_processors_on_health_and_dv_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_health_and_dv_id ON public.hmis_form_processors USING btree (health_and_dv_id); + + +-- +-- Name: index_hmis_form_processors_on_hiv_aids_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_hiv_aids_id ON public.hmis_form_processors USING btree (hiv_aids_id); + + +-- +-- Name: index_hmis_form_processors_on_income_benefit_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_income_benefit_id ON public.hmis_form_processors USING btree (income_benefit_id); + + +-- +-- Name: index_hmis_form_processors_on_mental_health_disorder_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_mental_health_disorder_id ON public.hmis_form_processors USING btree (mental_health_disorder_id); + + +-- +-- Name: index_hmis_form_processors_on_physical_disability_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_physical_disability_id ON public.hmis_form_processors USING btree (physical_disability_id); + + +-- +-- Name: index_hmis_form_processors_on_substance_use_disorder_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_form_processors_on_substance_use_disorder_id ON public.hmis_form_processors USING btree (substance_use_disorder_id); + + +-- +-- Name: index_hmis_forms_on_assessment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_forms_on_assessment_id ON public.hmis_forms USING btree (assessment_id); + + +-- +-- Name: index_hmis_forms_on_client_id_and_assessment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_forms_on_client_id_and_assessment_id ON public.hmis_forms USING btree (client_id, assessment_id); + + +-- +-- Name: index_hmis_forms_on_collected_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_forms_on_collected_at ON public.hmis_forms USING btree (collected_at); + + +-- +-- Name: index_hmis_forms_on_name; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_forms_on_name ON public.hmis_forms USING btree (name); + + +-- +-- Name: index_hmis_group_viewable_entities_on_collection_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_group_viewable_entities_on_collection_id ON public.hmis_group_viewable_entities USING btree (collection_id); + + +-- +-- Name: index_hmis_group_viewable_entities_on_entity; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_group_viewable_entities_on_entity ON public.hmis_group_viewable_entities USING btree (entity_type, entity_id); + + +-- +-- Name: index_hmis_import_configs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_import_configs_on_data_source_id ON public.hmis_import_configs USING btree (data_source_id); + + +-- +-- Name: index_hmis_project_configs_on_organization_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_project_configs_on_organization_id ON public.hmis_project_configs USING btree (organization_id); + + +-- +-- Name: index_hmis_project_configs_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_project_configs_on_project_id ON public.hmis_project_configs USING btree (project_id); + + +-- +-- Name: index_hmis_project_unit_type_mappings_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_project_unit_type_mappings_on_project_id ON public.hmis_project_unit_type_mappings USING btree (project_id); + + +-- +-- Name: index_hmis_project_unit_type_mappings_on_unit_type_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_project_unit_type_mappings_on_unit_type_id ON public.hmis_project_unit_type_mappings USING btree (unit_type_id); + + +-- +-- Name: index_hmis_scan_card_codes_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_scan_card_codes_on_client_id ON public.hmis_scan_card_codes USING btree (client_id); + + +-- +-- Name: index_hmis_scan_card_codes_on_created_by_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_scan_card_codes_on_created_by_id ON public.hmis_scan_card_codes USING btree (created_by_id); + + +-- +-- Name: index_hmis_scan_card_codes_on_deleted_by_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_scan_card_codes_on_deleted_by_id ON public.hmis_scan_card_codes USING btree (deleted_by_id); + + +-- +-- Name: index_hmis_scan_card_codes_on_value; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_hmis_scan_card_codes_on_value ON public.hmis_scan_card_codes USING btree (value); + + +-- +-- Name: index_hmis_staff_assignment_relationships_on_name; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_hmis_staff_assignment_relationships_on_name ON public.hmis_staff_assignment_relationships USING btree (name); + + +-- +-- Name: index_hmis_staff_assignments_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_staff_assignments_on_data_source_id ON public.hmis_staff_assignments USING btree (data_source_id); + + +-- +-- Name: index_hmis_staff_assignments_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_staff_assignments_on_user_id ON public.hmis_staff_assignments USING btree (user_id); + + +-- +-- Name: index_hmis_supplemental_data_sets_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_supplemental_data_sets_on_data_source_id ON public.hmis_supplemental_data_sets USING btree (data_source_id); + + +-- +-- Name: index_hmis_supplemental_data_sets_on_remote_credential_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_supplemental_data_sets_on_remote_credential_id ON public.hmis_supplemental_data_sets USING btree (remote_credential_id); + + +-- +-- Name: index_hmis_unit_occupancy_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_unit_occupancy_on_enrollment_id ON public.hmis_unit_occupancy USING btree (enrollment_id); + + +-- +-- Name: index_hmis_unit_occupancy_on_hmis_service_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_unit_occupancy_on_hmis_service_id ON public.hmis_unit_occupancy USING btree (hmis_service_id); + + +-- +-- Name: index_hmis_unit_occupancy_on_unit_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hmis_unit_occupancy_on_unit_id ON public.hmis_unit_occupancy USING btree (unit_id); + + +-- +-- Name: index_homeless_summary_report_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_homeless_summary_report_clients_on_client_id ON public.homeless_summary_report_clients USING btree (client_id); + + +-- +-- Name: index_homeless_summary_report_clients_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_homeless_summary_report_clients_on_created_at ON public.homeless_summary_report_clients USING btree (created_at); + + +-- +-- Name: index_homeless_summary_report_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_homeless_summary_report_clients_on_deleted_at ON public.homeless_summary_report_clients USING btree (deleted_at); + + +-- +-- Name: index_homeless_summary_report_clients_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_homeless_summary_report_clients_on_report_id ON public.homeless_summary_report_clients USING btree (report_id); + + +-- +-- Name: index_homeless_summary_report_clients_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_homeless_summary_report_clients_on_updated_at ON public.homeless_summary_report_clients USING btree (updated_at); + + +-- +-- Name: index_homeless_summary_report_results_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_homeless_summary_report_results_on_report_id ON public.homeless_summary_report_results USING btree (report_id); + + +-- +-- Name: index_hopwa_caper_enrollments_on_destination_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hopwa_caper_enrollments_on_destination_client_id ON public.hopwa_caper_enrollments USING btree (destination_client_id); + + +-- +-- Name: index_hopwa_caper_enrollments_on_report_household_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hopwa_caper_enrollments_on_report_household_id ON public.hopwa_caper_enrollments USING btree (report_household_id); + + +-- +-- Name: index_hopwa_caper_enrollments_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hopwa_caper_enrollments_on_report_instance_id ON public.hopwa_caper_enrollments USING btree (report_instance_id); + + +-- +-- Name: index_hopwa_caper_services_on_destination_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hopwa_caper_services_on_destination_client_id ON public.hopwa_caper_services USING btree (destination_client_id); + + +-- +-- Name: index_hopwa_caper_services_on_report_household_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hopwa_caper_services_on_report_household_id ON public.hopwa_caper_services USING btree (report_household_id); + + +-- +-- Name: index_hopwa_caper_services_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hopwa_caper_services_on_report_instance_id ON public.hopwa_caper_services USING btree (report_instance_id); + + +-- +-- Name: index_housing_resolution_plans_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_housing_resolution_plans_on_client_id ON public.housing_resolution_plans USING btree (client_id); + + +-- +-- Name: index_housing_resolution_plans_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_housing_resolution_plans_on_user_id ON public.housing_resolution_plans USING btree (user_id); + + +-- +-- Name: index_hud_apr_client_liv_sit; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_apr_client_liv_sit ON public.hud_report_apr_living_situations USING btree (hud_report_apr_client_id); + + +-- +-- Name: index_hud_chronics_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_chronics_on_client_id ON public.hud_chronics USING btree (client_id); + + +-- +-- Name: index_hud_create_logs_on_effective_date; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_create_logs_on_effective_date ON public.hud_create_logs USING btree (effective_date); + + +-- +-- Name: index_hud_create_logs_on_imported_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_create_logs_on_imported_at ON public.hud_create_logs USING btree (imported_at); + + +-- +-- Name: index_hud_dq_client_liv_sit; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_dq_client_liv_sit ON public.hud_report_dq_living_situations USING btree (hud_report_dq_client_id); + + +-- +-- Name: index_hud_lsa_summary_results_on_hud_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_lsa_summary_results_on_hud_report_instance_id ON public.hud_lsa_summary_results USING btree (hud_report_instance_id); + + +-- +-- Name: index_hud_report_apr_ce_assessments_on_hud_report_apr_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_apr_ce_assessments_on_hud_report_apr_client_id ON public.hud_report_apr_ce_assessments USING btree (hud_report_apr_client_id); + + +-- +-- Name: index_hud_report_apr_ce_assessments_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_apr_ce_assessments_on_project_id ON public.hud_report_apr_ce_assessments USING btree (project_id); + + +-- +-- Name: index_hud_report_apr_ce_events_on_hud_report_apr_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_apr_ce_events_on_hud_report_apr_client_id ON public.hud_report_apr_ce_events USING btree (hud_report_apr_client_id); + + +-- +-- Name: index_hud_report_apr_ce_events_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_apr_ce_events_on_project_id ON public.hud_report_apr_ce_events USING btree (project_id); + + +-- +-- Name: index_hud_report_cells_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_cells_on_report_instance_id ON public.hud_report_cells USING btree (report_instance_id); + + +-- +-- Name: index_hud_report_hic_funders_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_hic_funders_on_data_source_id ON public.hud_report_hic_funders USING btree (data_source_id); + + +-- +-- Name: index_hud_report_hic_funders_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_hic_funders_on_report_instance_id ON public.hud_report_hic_funders USING btree (report_instance_id); + + +-- +-- Name: index_hud_report_hic_inventories_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_hic_inventories_on_data_source_id ON public.hud_report_hic_inventories USING btree (data_source_id); + + +-- +-- Name: index_hud_report_hic_inventories_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_hic_inventories_on_report_instance_id ON public.hud_report_hic_inventories USING btree (report_instance_id); + + +-- +-- Name: index_hud_report_hic_organizations_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_hic_organizations_on_data_source_id ON public.hud_report_hic_organizations USING btree (data_source_id); + + +-- +-- Name: index_hud_report_hic_organizations_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_hic_organizations_on_report_instance_id ON public.hud_report_hic_organizations USING btree (report_instance_id); + + +-- +-- Name: index_hud_report_hic_project_cocs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_hic_project_cocs_on_data_source_id ON public.hud_report_hic_project_cocs USING btree (data_source_id); + + +-- +-- Name: index_hud_report_hic_project_cocs_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_hic_project_cocs_on_report_instance_id ON public.hud_report_hic_project_cocs USING btree (report_instance_id); + + +-- +-- Name: index_hud_report_hic_projects_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_hic_projects_on_data_source_id ON public.hud_report_hic_projects USING btree (data_source_id); + + +-- +-- Name: index_hud_report_hic_projects_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_hic_projects_on_report_instance_id ON public.hud_report_hic_projects USING btree (report_instance_id); + + +-- +-- Name: index_hud_report_instances_on_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_instances_on_export_id ON public.hud_report_instances USING btree (export_id); + + +-- +-- Name: index_hud_report_instances_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_instances_on_user_id ON public.hud_report_instances USING btree (user_id); + + +-- +-- Name: index_hud_report_path_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_path_clients_on_client_id ON public.hud_report_path_clients USING btree (client_id); + + +-- +-- Name: index_hud_report_path_clients_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_path_clients_on_data_source_id ON public.hud_report_path_clients USING btree (data_source_id); + + +-- +-- Name: index_hud_report_path_clients_on_incomes_at_entry; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_path_clients_on_incomes_at_entry ON public.hud_report_path_clients USING gin (incomes_at_entry); + + +-- +-- Name: index_hud_report_path_clients_on_incomes_at_exit; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_path_clients_on_incomes_at_exit ON public.hud_report_path_clients USING gin (incomes_at_exit); + + +-- +-- Name: index_hud_report_path_clients_on_incomes_at_report_end; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_path_clients_on_incomes_at_report_end ON public.hud_report_path_clients USING gin (incomes_at_report_end); + + +-- +-- Name: index_hud_report_path_clients_on_referrals; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_path_clients_on_referrals ON public.hud_report_path_clients USING gin (referrals); + + +-- +-- Name: index_hud_report_path_clients_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_path_clients_on_report_instance_id ON public.hud_report_path_clients USING btree (report_instance_id); + + +-- +-- Name: index_hud_report_path_clients_on_services; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_path_clients_on_services ON public.hud_report_path_clients USING gin (services); + + +-- +-- Name: index_hud_report_pit_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_pit_clients_on_client_id ON public.hud_report_pit_clients USING btree (client_id); + + +-- +-- Name: index_hud_report_pit_clients_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_pit_clients_on_data_source_id ON public.hud_report_pit_clients USING btree (data_source_id); + + +-- +-- Name: index_hud_report_pit_clients_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_pit_clients_on_report_instance_id ON public.hud_report_pit_clients USING btree (report_instance_id); + + +-- +-- Name: index_hud_report_spm_bed_nights_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_bed_nights_on_client_id ON public.hud_report_spm_bed_nights USING btree (client_id); + + +-- +-- Name: index_hud_report_spm_bed_nights_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_bed_nights_on_enrollment_id ON public.hud_report_spm_bed_nights USING btree (enrollment_id); + + +-- +-- Name: index_hud_report_spm_bed_nights_on_episode_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_bed_nights_on_episode_id ON public.hud_report_spm_bed_nights USING btree (episode_id); + + +-- +-- Name: index_hud_report_spm_bed_nights_on_service_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_bed_nights_on_service_id ON public.hud_report_spm_bed_nights USING btree (service_id); + + +-- +-- Name: index_hud_report_spm_enrollment_links_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_enrollment_links_on_enrollment_id ON public.hud_report_spm_enrollment_links USING btree (enrollment_id); + + +-- +-- Name: index_hud_report_spm_enrollment_links_on_episode_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_enrollment_links_on_episode_id ON public.hud_report_spm_enrollment_links USING btree (episode_id); + + +-- +-- Name: index_hud_report_spm_enrollments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_enrollments_on_client_id ON public.hud_report_spm_enrollments USING btree (client_id); + + +-- +-- Name: index_hud_report_spm_enrollments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_enrollments_on_enrollment_id ON public.hud_report_spm_enrollments USING btree (enrollment_id); + + +-- +-- Name: index_hud_report_spm_enrollments_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_enrollments_on_report_instance_id ON public.hud_report_spm_enrollments USING btree (report_instance_id); + + +-- +-- Name: index_hud_report_spm_episodes_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_episodes_on_client_id ON public.hud_report_spm_episodes USING btree (client_id); + + +-- +-- Name: index_hud_report_spm_returns_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_returns_on_client_id ON public.hud_report_spm_returns USING btree (client_id); + + +-- +-- Name: index_hud_report_spm_returns_on_exit_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_returns_on_exit_enrollment_id ON public.hud_report_spm_returns USING btree (exit_enrollment_id); + + +-- +-- Name: index_hud_report_spm_returns_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_returns_on_report_instance_id ON public.hud_report_spm_returns USING btree (report_instance_id); + + +-- +-- Name: index_hud_report_spm_returns_on_return_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_spm_returns_on_return_enrollment_id ON public.hud_report_spm_returns USING btree (return_enrollment_id); + + +-- +-- Name: index_hud_report_universe_members_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_universe_members_on_client_id ON public.hud_report_universe_members USING btree (client_id); + + +-- +-- Name: index_hud_report_universe_members_on_report_cell_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_hud_report_universe_members_on_report_cell_id ON public.hud_report_universe_members USING btree (report_cell_id) WHERE (deleted_at IS NULL); + + +-- +-- Name: index_import_logs_on_completed_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_import_logs_on_completed_at ON public.import_logs USING btree (completed_at); + + +-- +-- Name: index_import_logs_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_import_logs_on_created_at ON public.import_logs USING btree (created_at); + + +-- +-- Name: index_import_logs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_import_logs_on_data_source_id ON public.import_logs USING btree (data_source_id); + + +-- +-- Name: index_import_logs_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_import_logs_on_importer_log_id ON public.import_logs USING btree (importer_log_id); + + +-- +-- Name: index_import_logs_on_loader_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_import_logs_on_loader_log_id ON public.import_logs USING btree (loader_log_id); + + +-- +-- Name: index_import_logs_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_import_logs_on_updated_at ON public.import_logs USING btree (updated_at); + + +-- +-- Name: index_import_overrides_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_import_overrides_on_data_source_id ON public.import_overrides USING btree (data_source_id); + + +-- +-- Name: index_inbound_api_configurations_on_hashed_api_key; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_inbound_api_configurations_on_hashed_api_key ON public.inbound_api_configurations USING btree (hashed_api_key); + + +-- +-- Name: index_inbound_api_configurations_on_internal_system_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_inbound_api_configurations_on_internal_system_id ON public.inbound_api_configurations USING btree (internal_system_id); + + +-- +-- Name: index_inbound_api_configurations_on_plain_text_reminder; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_inbound_api_configurations_on_plain_text_reminder ON public.inbound_api_configurations USING btree (plain_text_reminder); + + +-- +-- Name: index_income_benefits_report_clients_earlier; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_report_clients_earlier ON public.income_benefits_report_clients USING btree (earlier_income_record_id); + + +-- +-- Name: index_income_benefits_report_clients_later; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_report_clients_later ON public.income_benefits_report_clients USING btree (later_income_record_id); + + +-- +-- Name: index_income_benefits_report_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_report_clients_on_client_id ON public.income_benefits_report_clients USING btree (client_id); + + +-- +-- Name: index_income_benefits_report_clients_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_report_clients_on_created_at ON public.income_benefits_report_clients USING btree (created_at); + + +-- +-- Name: index_income_benefits_report_clients_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_report_clients_on_enrollment_id ON public.income_benefits_report_clients USING btree (enrollment_id); + + +-- +-- Name: index_income_benefits_report_clients_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_report_clients_on_project_id ON public.income_benefits_report_clients USING btree (project_id); + + +-- +-- Name: index_income_benefits_report_clients_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_report_clients_on_report_id ON public.income_benefits_report_clients USING btree (report_id); + + +-- +-- Name: index_income_benefits_report_clients_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_report_clients_on_updated_at ON public.income_benefits_report_clients USING btree (updated_at); + + +-- +-- Name: index_income_benefits_report_incomes_on_Earned; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_income_benefits_report_incomes_on_Earned" ON public.income_benefits_report_incomes USING btree ("Earned"); + + +-- +-- Name: index_income_benefits_report_incomes_on_IncomeFromAnySource; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX "index_income_benefits_report_incomes_on_IncomeFromAnySource" ON public.income_benefits_report_incomes USING btree ("IncomeFromAnySource"); + + +-- +-- Name: index_income_benefits_report_incomes_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_report_incomes_on_client_id ON public.income_benefits_report_incomes USING btree (client_id); + + +-- +-- Name: index_income_benefits_report_incomes_on_income_benefits_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_report_incomes_on_income_benefits_id ON public.income_benefits_report_incomes USING btree (income_benefits_id); + + +-- +-- Name: index_income_benefits_report_incomes_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_report_incomes_on_report_id ON public.income_benefits_report_incomes USING btree (report_id); + + +-- +-- Name: index_income_benefits_reports_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_reports_on_created_at ON public.income_benefits_reports USING btree (created_at); + + +-- +-- Name: index_income_benefits_reports_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_reports_on_deleted_at ON public.income_benefits_reports USING btree (deleted_at); + + +-- +-- Name: index_income_benefits_reports_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_reports_on_updated_at ON public.income_benefits_reports USING btree (updated_at); + + +-- +-- Name: index_income_benefits_reports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_income_benefits_reports_on_user_id ON public.income_benefits_reports USING btree (user_id); + + +-- +-- Name: index_internal_systems_on_name; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_internal_systems_on_name ON public.internal_systems USING btree (name); + + +-- +-- Name: index_involved_in_imports_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_involved_in_imports_on_importer_log_id ON public.involved_in_imports USING btree (importer_log_id); + + +-- +-- Name: index_lftp_s3_syncs_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_lftp_s3_syncs_on_created_at ON public.lftp_s3_syncs USING btree (created_at); + + +-- +-- Name: index_lftp_s3_syncs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_lftp_s3_syncs_on_data_source_id ON public.lftp_s3_syncs USING btree (data_source_id); + + +-- +-- Name: index_lftp_s3_syncs_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_lftp_s3_syncs_on_updated_at ON public.lftp_s3_syncs USING btree (updated_at); + + +-- +-- Name: index_longitudinal_spm_results_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_longitudinal_spm_results_on_report_id ON public.longitudinal_spm_results USING btree (report_id); + + +-- +-- Name: index_longitudinal_spm_results_on_spm_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_longitudinal_spm_results_on_spm_id ON public.longitudinal_spm_results USING btree (spm_id); + + +-- +-- Name: index_longitudinal_spm_spms_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_longitudinal_spm_spms_on_report_id ON public.longitudinal_spm_spms USING btree (report_id); + + +-- +-- Name: index_longitudinal_spm_spms_on_spm_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_longitudinal_spm_spms_on_spm_id ON public.longitudinal_spm_spms USING btree (spm_id); + + +-- +-- Name: index_longitudinal_spms_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_longitudinal_spms_on_user_id ON public.longitudinal_spms USING btree (user_id); + + +-- +-- Name: index_lookups_ethnicities_on_value; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_lookups_ethnicities_on_value ON public.lookups_ethnicities USING btree (value); + + +-- +-- Name: index_lookups_funding_sources_on_value; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_lookups_funding_sources_on_value ON public.lookups_funding_sources USING btree (value); + + +-- +-- Name: index_lookups_genders_on_value; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_lookups_genders_on_value ON public.lookups_genders USING btree (value); + + +-- +-- Name: index_lookups_living_situations_on_value; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_lookups_living_situations_on_value ON public.lookups_living_situations USING btree (value); + + +-- +-- Name: index_lookups_project_types_on_value; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_lookups_project_types_on_value ON public.lookups_project_types USING btree (value); + + +-- +-- Name: index_lookups_relationships_on_value; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_lookups_relationships_on_value ON public.lookups_relationships USING btree (value); + + +-- +-- Name: index_lookups_tracking_methods_on_value; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_lookups_tracking_methods_on_value ON public.lookups_tracking_methods USING btree (value); + + +-- +-- Name: index_lookups_yes_no_etcs_on_value; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_lookups_yes_no_etcs_on_value ON public.lookups_yes_no_etcs USING btree (value); + + +-- +-- Name: index_ma_monthly_performance_enrollments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ma_monthly_performance_enrollments_on_client_id ON public.ma_monthly_performance_enrollments USING btree (client_id); + + +-- +-- Name: index_ma_monthly_performance_enrollments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ma_monthly_performance_enrollments_on_enrollment_id ON public.ma_monthly_performance_enrollments USING btree (enrollment_id); + + +-- +-- Name: index_ma_monthly_performance_enrollments_on_project_coc_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ma_monthly_performance_enrollments_on_project_coc_id ON public.ma_monthly_performance_enrollments USING btree (project_coc_id); + + +-- +-- Name: index_ma_monthly_performance_enrollments_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ma_monthly_performance_enrollments_on_project_id ON public.ma_monthly_performance_enrollments USING btree (project_id); + + +-- +-- Name: index_ma_monthly_performance_enrollments_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ma_monthly_performance_enrollments_on_report_id ON public.ma_monthly_performance_enrollments USING btree (report_id); + + +-- +-- Name: index_ma_monthly_performance_projects_on_project_coc_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ma_monthly_performance_projects_on_project_coc_id ON public.ma_monthly_performance_projects USING btree (project_coc_id); + + +-- +-- Name: index_ma_monthly_performance_projects_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ma_monthly_performance_projects_on_project_id ON public.ma_monthly_performance_projects USING btree (project_id); + + +-- +-- Name: index_ma_monthly_performance_projects_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ma_monthly_performance_projects_on_report_id ON public.ma_monthly_performance_projects USING btree (report_id); + + +-- +-- Name: index_ma_yya_report_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ma_yya_report_clients_on_client_id ON public.ma_yya_report_clients USING btree (client_id); + + +-- +-- Name: index_ma_yya_report_clients_on_service_history_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_ma_yya_report_clients_on_service_history_enrollment_id ON public.ma_yya_report_clients USING btree (service_history_enrollment_id); + + +-- +-- Name: index_new_service_history_on_first_date_in_program; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_new_service_history_on_first_date_in_program ON public.new_service_history USING brin (first_date_in_program); + + +-- +-- Name: index_nightly_census_by_projects_on_date; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_nightly_census_by_projects_on_date ON public.nightly_census_by_projects USING btree (date); + + +-- +-- Name: index_nightly_census_by_projects_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_nightly_census_by_projects_on_project_id ON public.nightly_census_by_projects USING btree (project_id); + + +-- +-- Name: index_non_hmis_uploads_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_non_hmis_uploads_on_deleted_at ON public.non_hmis_uploads USING btree (deleted_at); + + +-- +-- Name: index_performance_metrics_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_performance_metrics_clients_on_client_id ON public.performance_metrics_clients USING btree (client_id); + + +-- +-- Name: index_performance_metrics_clients_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_performance_metrics_clients_on_created_at ON public.performance_metrics_clients USING btree (created_at); + + +-- +-- Name: index_performance_metrics_clients_on_current_period_caper_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_performance_metrics_clients_on_current_period_caper_id ON public.performance_metrics_clients USING btree (current_period_caper_id); + + +-- +-- Name: index_performance_metrics_clients_on_current_period_spm_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_performance_metrics_clients_on_current_period_spm_id ON public.performance_metrics_clients USING btree (current_period_spm_id); + + +-- +-- Name: index_performance_metrics_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_performance_metrics_clients_on_deleted_at ON public.performance_metrics_clients USING btree (deleted_at); + + +-- +-- Name: index_performance_metrics_clients_on_prior_period_caper_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_performance_metrics_clients_on_prior_period_caper_id ON public.performance_metrics_clients USING btree (prior_period_caper_id); + + +-- +-- Name: index_performance_metrics_clients_on_prior_period_spm_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_performance_metrics_clients_on_prior_period_spm_id ON public.performance_metrics_clients USING btree (prior_period_spm_id); + + +-- +-- Name: index_performance_metrics_clients_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_performance_metrics_clients_on_report_id ON public.performance_metrics_clients USING btree (report_id); + + +-- +-- Name: index_performance_metrics_clients_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_performance_metrics_clients_on_updated_at ON public.performance_metrics_clients USING btree (updated_at); + + +-- +-- Name: index_places_on_lat_and_lon; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_places_on_lat_and_lon ON public.places USING btree (lat, lon); + + +-- +-- Name: index_places_on_location; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_places_on_location ON public.places USING btree (location); + + +-- +-- Name: index_pm_client_projects_on_client_id_and_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_pm_client_projects_on_client_id_and_report_id ON public.pm_client_projects USING btree (client_id, report_id); + + +-- +-- Name: index_pm_client_projects_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_pm_client_projects_on_deleted_at ON public.pm_client_projects USING btree (deleted_at); + + +-- +-- Name: index_pm_client_projects_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_pm_client_projects_on_project_id ON public.pm_client_projects USING btree (project_id); + + +-- +-- Name: index_pm_client_projects_on_project_id_and_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_pm_client_projects_on_project_id_and_report_id ON public.pm_client_projects USING btree (project_id, report_id); + + +-- +-- Name: index_pm_clients_on_client_id_and_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_pm_clients_on_client_id_and_report_id ON public.pm_clients USING btree (client_id, report_id); + + +-- +-- Name: index_pm_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_pm_clients_on_deleted_at ON public.pm_clients USING btree (deleted_at); + + +-- +-- Name: index_pm_coc_static_spms_on_goal_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_pm_coc_static_spms_on_goal_id ON public.pm_coc_static_spms USING btree (goal_id); + + +-- +-- Name: index_pm_projects_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_pm_projects_on_deleted_at ON public.pm_projects USING btree (deleted_at); + + +-- +-- Name: index_pm_projects_on_project_id_and_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_pm_projects_on_project_id_and_report_id ON public.pm_projects USING btree (project_id, report_id); + + +-- +-- Name: index_pm_projects_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_pm_projects_on_report_id ON public.pm_projects USING btree (report_id); + + +-- +-- Name: index_pm_results_on_field; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_pm_results_on_field ON public.pm_results USING btree (field); + + +-- +-- Name: index_pm_results_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_pm_results_on_report_id ON public.pm_results USING btree (report_id); + + +-- +-- Name: index_proj_proj_id_org_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_proj_proj_id_org_id_ds_id ON public."Project" USING btree ("ProjectID", data_source_id, "OrganizationID"); + + +-- +-- Name: index_project_data_quality_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_data_quality_on_project_id ON public.project_data_quality USING btree (project_id); + + +-- +-- Name: index_project_pass_fails_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_clients_on_client_id ON public.project_pass_fails_clients USING btree (client_id); + + +-- +-- Name: index_project_pass_fails_clients_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_clients_on_created_at ON public.project_pass_fails_clients USING btree (created_at); + + +-- +-- Name: index_project_pass_fails_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_clients_on_deleted_at ON public.project_pass_fails_clients USING btree (deleted_at); + + +-- +-- Name: index_project_pass_fails_clients_on_project_pass_fail_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_clients_on_project_pass_fail_id ON public.project_pass_fails_clients USING btree (project_pass_fail_id); + + +-- +-- Name: index_project_pass_fails_clients_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_clients_on_updated_at ON public.project_pass_fails_clients USING btree (updated_at); + + +-- +-- Name: index_project_pass_fails_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_on_created_at ON public.project_pass_fails USING btree (created_at); + + +-- +-- Name: index_project_pass_fails_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_on_deleted_at ON public.project_pass_fails USING btree (deleted_at); + + +-- +-- Name: index_project_pass_fails_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_on_updated_at ON public.project_pass_fails USING btree (updated_at); + + +-- +-- Name: index_project_pass_fails_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_on_user_id ON public.project_pass_fails USING btree (user_id); + + +-- +-- Name: index_project_pass_fails_projects_on_apr_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_projects_on_apr_id ON public.project_pass_fails_projects USING btree (apr_id); + + +-- +-- Name: index_project_pass_fails_projects_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_projects_on_created_at ON public.project_pass_fails_projects USING btree (created_at); + + +-- +-- Name: index_project_pass_fails_projects_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_projects_on_deleted_at ON public.project_pass_fails_projects USING btree (deleted_at); + + +-- +-- Name: index_project_pass_fails_projects_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_projects_on_project_id ON public.project_pass_fails_projects USING btree (project_id); + + +-- +-- Name: index_project_pass_fails_projects_on_project_pass_fail_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_projects_on_project_pass_fail_id ON public.project_pass_fails_projects USING btree (project_pass_fail_id); + + +-- +-- Name: index_project_pass_fails_projects_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_pass_fails_projects_on_updated_at ON public.project_pass_fails_projects USING btree (updated_at); + + +-- +-- Name: index_project_scorecard_reports_on_apr_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_scorecard_reports_on_apr_id ON public.project_scorecard_reports USING btree (apr_id); + + +-- +-- Name: index_project_scorecard_reports_on_project_group_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_scorecard_reports_on_project_group_id ON public.project_scorecard_reports USING btree (project_group_id); + + +-- +-- Name: index_project_scorecard_reports_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_scorecard_reports_on_project_id ON public.project_scorecard_reports USING btree (project_id); + + +-- +-- Name: index_project_scorecard_reports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_project_scorecard_reports_on_user_id ON public.project_scorecard_reports USING btree (user_id); + + +-- +-- Name: index_psc_feedback_surveys_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_psc_feedback_surveys_on_client_id ON public.psc_feedback_surveys USING btree (client_id); + + +-- +-- Name: index_psc_feedback_surveys_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_psc_feedback_surveys_on_user_id ON public.psc_feedback_surveys USING btree (user_id); + + +-- +-- Name: index_public_report_reports_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_public_report_reports_on_created_at ON public.public_report_reports USING btree (created_at); + + +-- +-- Name: index_public_report_reports_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_public_report_reports_on_updated_at ON public.public_report_reports USING btree (updated_at); + + +-- +-- Name: index_public_report_reports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_public_report_reports_on_user_id ON public.public_report_reports USING btree (user_id); + + +-- +-- Name: index_published_reports_on_report; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_published_reports_on_report ON public.published_reports USING btree (report_type, report_id); + + +-- +-- Name: index_published_reports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_published_reports_on_user_id ON public.published_reports USING btree (user_id); + + +-- +-- Name: index_recent_items_on_item; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_recent_items_on_item ON public.recent_items USING btree (item_type, item_id); + + +-- +-- Name: index_recent_items_on_owner; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_recent_items_on_owner ON public.recent_items USING btree (owner_type, owner_id); + + +-- +-- Name: index_recurring_hmis_exports_on_encrypted_s3_access_key_id_iv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_recurring_hmis_exports_on_encrypted_s3_access_key_id_iv ON public.recurring_hmis_exports USING btree (encrypted_s3_access_key_id_iv); + + +-- +-- Name: index_recurring_hmis_exports_on_encrypted_s3_secret_iv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_recurring_hmis_exports_on_encrypted_s3_secret_iv ON public.recurring_hmis_exports USING btree (encrypted_s3_secret_iv); + + +-- +-- Name: index_remote_configs_on_remote_credential_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_remote_configs_on_remote_credential_id ON public.remote_configs USING btree (remote_credential_id); + + +-- +-- Name: index_remote_credentials_on_slug; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_remote_credentials_on_slug ON public.remote_credentials USING btree (slug); + + +-- +-- Name: index_report_tokens_on_contact_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_report_tokens_on_contact_id ON public.report_tokens USING btree (contact_id); + + +-- +-- Name: index_report_tokens_on_report_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_report_tokens_on_report_id ON public.report_tokens USING btree (report_id); + + +-- +-- Name: index_serv_on_proj_entry_per_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_serv_on_proj_entry_per_id_ds_id ON public."Services" USING btree ("EnrollmentID", "PersonalID", data_source_id); + + +-- +-- Name: index_service_history_enrollments_on_age; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_history_enrollments_on_age ON public.service_history_enrollments USING btree (age); + + +-- +-- Name: index_service_history_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_history_on_client_id ON public.warehouse_client_service_history USING btree (client_id); + + +-- +-- Name: index_service_history_services_2000_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2000_on_id ON public.service_history_services_2000 USING btree (id); + + +-- +-- Name: index_service_history_services_2001_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2001_on_id ON public.service_history_services_2001 USING btree (id); + + +-- +-- Name: index_service_history_services_2002_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2002_on_id ON public.service_history_services_2002 USING btree (id); + + +-- +-- Name: index_service_history_services_2003_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2003_on_id ON public.service_history_services_2003 USING btree (id); + + +-- +-- Name: index_service_history_services_2004_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2004_on_id ON public.service_history_services_2004 USING btree (id); + + +-- +-- Name: index_service_history_services_2005_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2005_on_id ON public.service_history_services_2005 USING btree (id); + + +-- +-- Name: index_service_history_services_2006_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2006_on_id ON public.service_history_services_2006 USING btree (id); + + +-- +-- Name: index_service_history_services_2007_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2007_on_id ON public.service_history_services_2007 USING btree (id); + + +-- +-- Name: index_service_history_services_2008_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2008_on_id ON public.service_history_services_2008 USING btree (id); + + +-- +-- Name: index_service_history_services_2009_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2009_on_id ON public.service_history_services_2009 USING btree (id); + + +-- +-- Name: index_service_history_services_2010_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2010_on_id ON public.service_history_services_2010 USING btree (id); + + +-- +-- Name: index_service_history_services_2011_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2011_on_id ON public.service_history_services_2011 USING btree (id); + + +-- +-- Name: index_service_history_services_2012_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2012_on_id ON public.service_history_services_2012 USING btree (id); + + +-- +-- Name: index_service_history_services_2013_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2013_on_id ON public.service_history_services_2013 USING btree (id); + + +-- +-- Name: index_service_history_services_2014_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2014_on_id ON public.service_history_services_2014 USING btree (id); + + +-- +-- Name: index_service_history_services_2015_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2015_on_id ON public.service_history_services_2015 USING btree (id); + + +-- +-- Name: index_service_history_services_2016_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2016_on_id ON public.service_history_services_2016 USING btree (id); + + +-- +-- Name: index_service_history_services_2017_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2017_on_id ON public.service_history_services_2017 USING btree (id); + + +-- +-- Name: index_service_history_services_2018_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2018_on_id ON public.service_history_services_2018 USING btree (id); + + +-- +-- Name: index_service_history_services_2019_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2019_on_id ON public.service_history_services_2019 USING btree (id); + + +-- +-- Name: index_service_history_services_2020_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2020_on_id ON public.service_history_services_2020 USING btree (id); + + +-- +-- Name: index_service_history_services_2021_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2021_on_id ON public.service_history_services_2021 USING btree (id); + + +-- +-- Name: index_service_history_services_2022_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2022_on_id ON public.service_history_services_2022 USING btree (id); + + +-- +-- Name: index_service_history_services_2023_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2023_on_id ON public.service_history_services_2023 USING btree (id); + + +-- +-- Name: index_service_history_services_2024_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2024_on_id ON public.service_history_services_2024 USING btree (id); + + +-- +-- Name: index_service_history_services_2025_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2025_on_id ON public.service_history_services_2025 USING btree (id); + + +-- +-- Name: index_service_history_services_2026_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2026_on_id ON public.service_history_services_2026 USING btree (id); + + +-- +-- Name: index_service_history_services_2027_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2027_on_id ON public.service_history_services_2027 USING btree (id); + + +-- +-- Name: index_service_history_services_2028_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2028_on_id ON public.service_history_services_2028 USING btree (id); + + +-- +-- Name: index_service_history_services_2029_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2029_on_id ON public.service_history_services_2029 USING btree (id); + + +-- +-- Name: index_service_history_services_2030_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2030_on_id ON public.service_history_services_2030 USING btree (id); + + +-- +-- Name: index_service_history_services_2031_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2031_on_id ON public.service_history_services_2031 USING btree (id); + + +-- +-- Name: index_service_history_services_2032_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2032_on_id ON public.service_history_services_2032 USING btree (id); + + +-- +-- Name: index_service_history_services_2033_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2033_on_id ON public.service_history_services_2033 USING btree (id); + + +-- +-- Name: index_service_history_services_2034_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2034_on_id ON public.service_history_services_2034 USING btree (id); + + +-- +-- Name: index_service_history_services_2035_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2035_on_id ON public.service_history_services_2035 USING btree (id); + + +-- +-- Name: index_service_history_services_2036_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2036_on_id ON public.service_history_services_2036 USING btree (id); + + +-- +-- Name: index_service_history_services_2037_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2037_on_id ON public.service_history_services_2037 USING btree (id); + + +-- +-- Name: index_service_history_services_2038_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2038_on_id ON public.service_history_services_2038 USING btree (id); + + +-- +-- Name: index_service_history_services_2039_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2039_on_id ON public.service_history_services_2039 USING btree (id); + + +-- +-- Name: index_service_history_services_2040_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2040_on_id ON public.service_history_services_2040 USING btree (id); + + +-- +-- Name: index_service_history_services_2041_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2041_on_id ON public.service_history_services_2041 USING btree (id); + + +-- +-- Name: index_service_history_services_2042_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2042_on_id ON public.service_history_services_2042 USING btree (id); + + +-- +-- Name: index_service_history_services_2043_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2043_on_id ON public.service_history_services_2043 USING btree (id); + + +-- +-- Name: index_service_history_services_2044_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2044_on_id ON public.service_history_services_2044 USING btree (id); + + +-- +-- Name: index_service_history_services_2045_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2045_on_id ON public.service_history_services_2045 USING btree (id); + + +-- +-- Name: index_service_history_services_2046_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2046_on_id ON public.service_history_services_2046 USING btree (id); + + +-- +-- Name: index_service_history_services_2047_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2047_on_id ON public.service_history_services_2047 USING btree (id); + + +-- +-- Name: index_service_history_services_2048_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2048_on_id ON public.service_history_services_2048 USING btree (id); + + +-- +-- Name: index_service_history_services_2049_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2049_on_id ON public.service_history_services_2049 USING btree (id); + + +-- +-- Name: index_service_history_services_2050_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_2050_on_id ON public.service_history_services_2050 USING btree (id); + + +-- +-- Name: index_service_history_services_materialized_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_materialized_on_id ON public.service_history_services_materialized USING btree (id); + + +-- +-- Name: index_service_history_services_remainder_on_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_service_history_services_remainder_on_id ON public.service_history_services_remainder USING btree (id); + + +-- +-- Name: index_service_scanning_scanner_ids_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_scanning_scanner_ids_on_client_id ON public.service_scanning_scanner_ids USING btree (client_id); + + +-- +-- Name: index_service_scanning_scanner_ids_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_scanning_scanner_ids_on_created_at ON public.service_scanning_scanner_ids USING btree (created_at); + + +-- +-- Name: index_service_scanning_scanner_ids_on_scanned_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_scanning_scanner_ids_on_scanned_id ON public.service_scanning_scanner_ids USING btree (scanned_id); + + +-- +-- Name: index_service_scanning_scanner_ids_on_source_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_scanning_scanner_ids_on_source_type ON public.service_scanning_scanner_ids USING btree (source_type); + + +-- +-- Name: index_service_scanning_scanner_ids_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_scanning_scanner_ids_on_updated_at ON public.service_scanning_scanner_ids USING btree (updated_at); + + +-- +-- Name: index_service_scanning_services_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_scanning_services_on_client_id ON public.service_scanning_services USING btree (client_id); + + +-- +-- Name: index_service_scanning_services_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_scanning_services_on_created_at ON public.service_scanning_services USING btree (created_at); + + +-- +-- Name: index_service_scanning_services_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_scanning_services_on_project_id ON public.service_scanning_services USING btree (project_id); + + +-- +-- Name: index_service_scanning_services_on_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_scanning_services_on_type ON public.service_scanning_services USING btree (type); + + +-- +-- Name: index_service_scanning_services_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_scanning_services_on_updated_at ON public.service_scanning_services USING btree (updated_at); + + +-- +-- Name: index_service_scanning_services_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_service_scanning_services_on_user_id ON public.service_scanning_services USING btree (user_id); + + +-- +-- Name: index_services_ds_id_p_id_type_entry_id_date; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_services_ds_id_p_id_type_entry_id_date ON public."Services" USING btree (data_source_id, "PersonalID", "RecordType", "EnrollmentID", "DateProvided"); + + +-- +-- Name: index_sh__enrollment_id_track_meth; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_sh__enrollment_id_track_meth ON public.new_service_history USING btree (enrollment_group_id, project_tracking_method); + + +-- +-- Name: index_sh_date_ds_org_proj_proj_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_sh_date_ds_org_proj_proj_type ON public.new_service_history USING btree (record_type, date, data_source_id, organization_id, project_id, project_type, project_tracking_method); + + +-- +-- Name: index_sh_date_r_type_indiv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_sh_date_r_type_indiv ON public.warehouse_client_service_history USING btree (date, record_type, presented_as_individual); + + +-- +-- Name: index_sh_ds_id_org_id_proj_id_r_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_sh_ds_id_org_id_proj_id_r_type ON public.warehouse_client_service_history USING btree (data_source_id, organization_id, project_id, record_type); + + +-- +-- Name: index_sh_ds_proj_org_r_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_sh_ds_proj_org_r_type ON public.new_service_history USING btree (data_source_id, project_id, organization_id, record_type); + + +-- +-- Name: index_sh_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_sh_on_client_id ON public.new_service_history USING btree (client_id, record_type); + + +-- +-- Name: index_sh_on_computed_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_sh_on_computed_project_type ON public.new_service_history USING btree (computed_project_type, record_type, client_id); + + +-- +-- Name: index_sh_on_household_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_sh_on_household_id ON public.new_service_history USING btree (date, household_id, record_type); + + +-- +-- Name: index_sh_tracking_method; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_sh_tracking_method ON public.warehouse_client_service_history USING btree (project_tracking_method); + + +-- +-- Name: index_shape_block_groups_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_block_groups_on_full_geoid ON public.shape_block_groups USING btree (full_geoid); + + +-- +-- Name: index_shape_block_groups_on_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shape_block_groups_on_geoid ON public.shape_block_groups USING btree (geoid); + + +-- +-- Name: index_shape_block_groups_on_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_block_groups_on_geom ON public.shape_block_groups USING gist (geom); + + +-- +-- Name: index_shape_block_groups_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_block_groups_on_simplified_geom ON public.shape_block_groups USING gist (simplified_geom); + + +-- +-- Name: index_shape_cocs_on_cocname; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_cocs_on_cocname ON public.shape_cocs USING btree (cocname); + + +-- +-- Name: index_shape_cocs_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shape_cocs_on_full_geoid ON public.shape_cocs USING btree (full_geoid); + + +-- +-- Name: index_shape_cocs_on_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_cocs_on_geom ON public.shape_cocs USING gist (geom); + + +-- +-- Name: index_shape_cocs_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_cocs_on_simplified_geom ON public.shape_cocs USING gist (simplified_geom); + + +-- +-- Name: index_shape_cocs_on_st; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_cocs_on_st ON public.shape_cocs USING btree (st); + + +-- +-- Name: index_shape_counties_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_counties_on_full_geoid ON public.shape_counties USING btree (full_geoid); + + +-- +-- Name: index_shape_counties_on_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shape_counties_on_geoid ON public.shape_counties USING btree (geoid); + + +-- +-- Name: index_shape_counties_on_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_counties_on_geom ON public.shape_counties USING gist (geom); + + +-- +-- Name: index_shape_counties_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_counties_on_simplified_geom ON public.shape_counties USING gist (simplified_geom); + + +-- +-- Name: index_shape_counties_on_statefp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_counties_on_statefp ON public.shape_counties USING btree (statefp); + + +-- +-- Name: index_shape_places_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_places_on_full_geoid ON public.shape_places USING btree (full_geoid); + + +-- +-- Name: index_shape_places_on_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shape_places_on_geoid ON public.shape_places USING btree (geoid); + + +-- +-- Name: index_shape_places_on_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_places_on_geom ON public.shape_places USING gist (geom); + + +-- +-- Name: index_shape_places_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_places_on_simplified_geom ON public.shape_places USING gist (simplified_geom); + + +-- +-- Name: index_shape_states_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_states_on_full_geoid ON public.shape_states USING btree (full_geoid); + + +-- +-- Name: index_shape_states_on_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shape_states_on_geoid ON public.shape_states USING btree (geoid); + + +-- +-- Name: index_shape_states_on_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_states_on_geom ON public.shape_states USING gist (geom); + + +-- +-- Name: index_shape_states_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_states_on_simplified_geom ON public.shape_states USING gist (simplified_geom); + + +-- +-- Name: index_shape_states_on_statefp; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_states_on_statefp ON public.shape_states USING btree (statefp); + + +-- +-- Name: index_shape_states_on_stusps; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_states_on_stusps ON public.shape_states USING btree (stusps); + + +-- +-- Name: index_shape_towns_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_towns_on_full_geoid ON public.shape_towns USING btree (full_geoid); + + +-- +-- Name: index_shape_towns_on_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shape_towns_on_geoid ON public.shape_towns USING btree (geoid); + + +-- +-- Name: index_shape_towns_on_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_towns_on_geom ON public.shape_towns USING gist (geom); + + +-- +-- Name: index_shape_towns_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_towns_on_simplified_geom ON public.shape_towns USING gist (simplified_geom); + + +-- +-- Name: index_shape_zip_codes_on_county_name_lower; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_zip_codes_on_county_name_lower ON public.shape_zip_codes USING btree (county_name_lower); + + +-- +-- Name: index_shape_zip_codes_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_zip_codes_on_full_geoid ON public.shape_zip_codes USING btree (full_geoid); + + +-- +-- Name: index_shape_zip_codes_on_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_zip_codes_on_geom ON public.shape_zip_codes USING gist (geom); + + +-- +-- Name: index_shape_zip_codes_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_zip_codes_on_simplified_geom ON public.shape_zip_codes USING gist (simplified_geom); + + +-- +-- Name: index_shape_zip_codes_on_st_geoid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shape_zip_codes_on_st_geoid ON public.shape_zip_codes USING btree (st_geoid); + + +-- +-- Name: index_shape_zip_codes_on_zcta5ce10; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shape_zip_codes_on_zcta5ce10 ON public.shape_zip_codes USING btree (zcta5ce10); + + +-- +-- Name: index_she__enrollment_id_track_meth; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_she__enrollment_id_track_meth ON public.service_history_enrollments USING btree (enrollment_group_id, project_tracking_method); + + +-- +-- Name: index_she_date_ds_org_proj_proj_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_she_date_ds_org_proj_proj_type ON public.service_history_enrollments USING btree (record_type, date, data_source_id, organization_id, project_id, project_type, project_tracking_method); + + +-- +-- Name: index_she_date_r_type_indiv; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_she_date_r_type_indiv ON public.service_history_enrollments USING btree (date, record_type, presented_as_individual); + + +-- +-- Name: index_she_ds_proj_org_r_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_she_ds_proj_org_r_type ON public.service_history_enrollments USING btree (data_source_id, project_id, organization_id, record_type); + + +-- +-- Name: index_she_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_she_on_client_id ON public.service_history_enrollments USING btree (client_id, record_type); + + +-- +-- Name: index_she_on_computed_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_she_on_computed_project_type ON public.service_history_enrollments USING btree (computed_project_type, record_type, client_id); + + +-- +-- Name: index_she_on_first_date_in_program; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_she_on_first_date_in_program ON public.service_history_enrollments USING brin (first_date_in_program); + + +-- +-- Name: index_she_on_household_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_she_on_household_id ON public.service_history_enrollments USING btree (date, household_id, record_type); + + +-- +-- Name: index_she_on_last_date_in_program; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_she_on_last_date_in_program ON public.service_history_enrollments USING btree (first_date_in_program, last_date_in_program, record_type, date); + + +-- +-- Name: index_shs_1900_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_1900_date_brin ON public.service_history_services_remainder USING brin (date); + + +-- +-- Name: index_shs_1900_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_1900_date_client_id ON public.service_history_services_remainder USING btree (date, client_id); + + +-- +-- Name: service_history_services_part_date_service_history_enrollme_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX service_history_services_part_date_service_history_enrollme_idx ON ONLY public.service_history_services USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_1900_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_1900_date_en_id ON public.service_history_services_remainder USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_1900_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_1900_date_project_type ON public.service_history_services_remainder USING btree (date, project_type); + + +-- +-- Name: index_shs_2000_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2000_c_id_en_id ON public.service_history_services_2000 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2000_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2000_client_id_only ON public.service_history_services_2000 USING btree (client_id); + + +-- +-- Name: index_shs_2000_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2000_date_brin ON public.service_history_services_2000 USING brin (date); + + +-- +-- Name: index_shs_2000_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2000_date_client_id ON public.service_history_services_2000 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2000_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2000_date_en_id ON public.service_history_services_2000 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2000_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2000_date_project_type ON public.service_history_services_2000 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2000_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2000_en_id_only ON public.service_history_services_2000 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2001_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2001_c_id_en_id ON public.service_history_services_2001 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2001_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2001_client_id_only ON public.service_history_services_2001 USING btree (client_id); + + +-- +-- Name: index_shs_2001_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2001_date_brin ON public.service_history_services_2001 USING brin (date); + + +-- +-- Name: index_shs_2001_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2001_date_client_id ON public.service_history_services_2001 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2001_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2001_date_en_id ON public.service_history_services_2001 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2001_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2001_date_project_type ON public.service_history_services_2001 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2001_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2001_en_id_only ON public.service_history_services_2001 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2002_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2002_c_id_en_id ON public.service_history_services_2002 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2002_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2002_client_id_only ON public.service_history_services_2002 USING btree (client_id); + + +-- +-- Name: index_shs_2002_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2002_date_brin ON public.service_history_services_2002 USING brin (date); + + +-- +-- Name: index_shs_2002_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2002_date_client_id ON public.service_history_services_2002 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2002_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2002_date_en_id ON public.service_history_services_2002 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2002_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2002_date_project_type ON public.service_history_services_2002 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2002_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2002_en_id_only ON public.service_history_services_2002 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2003_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2003_c_id_en_id ON public.service_history_services_2003 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2003_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2003_client_id_only ON public.service_history_services_2003 USING btree (client_id); + + +-- +-- Name: index_shs_2003_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2003_date_brin ON public.service_history_services_2003 USING brin (date); + + +-- +-- Name: index_shs_2003_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2003_date_client_id ON public.service_history_services_2003 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2003_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2003_date_en_id ON public.service_history_services_2003 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2003_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2003_date_project_type ON public.service_history_services_2003 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2003_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2003_en_id_only ON public.service_history_services_2003 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2004_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2004_c_id_en_id ON public.service_history_services_2004 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2004_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2004_client_id_only ON public.service_history_services_2004 USING btree (client_id); + + +-- +-- Name: index_shs_2004_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2004_date_brin ON public.service_history_services_2004 USING brin (date); + + +-- +-- Name: index_shs_2004_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2004_date_client_id ON public.service_history_services_2004 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2004_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2004_date_en_id ON public.service_history_services_2004 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2004_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2004_date_project_type ON public.service_history_services_2004 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2004_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2004_en_id_only ON public.service_history_services_2004 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2005_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2005_c_id_en_id ON public.service_history_services_2005 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2005_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2005_client_id_only ON public.service_history_services_2005 USING btree (client_id); + + +-- +-- Name: index_shs_2005_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2005_date_brin ON public.service_history_services_2005 USING brin (date); + + +-- +-- Name: index_shs_2005_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2005_date_client_id ON public.service_history_services_2005 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2005_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2005_date_en_id ON public.service_history_services_2005 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2005_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2005_date_project_type ON public.service_history_services_2005 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2005_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2005_en_id_only ON public.service_history_services_2005 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2006_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2006_c_id_en_id ON public.service_history_services_2006 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2006_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2006_client_id_only ON public.service_history_services_2006 USING btree (client_id); + + +-- +-- Name: index_shs_2006_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2006_date_brin ON public.service_history_services_2006 USING brin (date); + + +-- +-- Name: index_shs_2006_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2006_date_client_id ON public.service_history_services_2006 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2006_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2006_date_en_id ON public.service_history_services_2006 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2006_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2006_date_project_type ON public.service_history_services_2006 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2006_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2006_en_id_only ON public.service_history_services_2006 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2007_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2007_c_id_en_id ON public.service_history_services_2007 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2007_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2007_client_id_only ON public.service_history_services_2007 USING btree (client_id); + + +-- +-- Name: index_shs_2007_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2007_date_brin ON public.service_history_services_2007 USING brin (date); + + +-- +-- Name: index_shs_2007_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2007_date_client_id ON public.service_history_services_2007 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2007_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2007_date_en_id ON public.service_history_services_2007 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2007_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2007_date_project_type ON public.service_history_services_2007 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2007_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2007_en_id_only ON public.service_history_services_2007 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2008_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2008_c_id_en_id ON public.service_history_services_2008 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2008_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2008_client_id_only ON public.service_history_services_2008 USING btree (client_id); + + +-- +-- Name: index_shs_2008_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2008_date_brin ON public.service_history_services_2008 USING brin (date); + + +-- +-- Name: index_shs_2008_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2008_date_client_id ON public.service_history_services_2008 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2008_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2008_date_en_id ON public.service_history_services_2008 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2008_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2008_date_project_type ON public.service_history_services_2008 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2008_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2008_en_id_only ON public.service_history_services_2008 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2009_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2009_c_id_en_id ON public.service_history_services_2009 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2009_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2009_client_id_only ON public.service_history_services_2009 USING btree (client_id); + + +-- +-- Name: index_shs_2009_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2009_date_brin ON public.service_history_services_2009 USING brin (date); + + +-- +-- Name: index_shs_2009_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2009_date_client_id ON public.service_history_services_2009 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2009_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2009_date_en_id ON public.service_history_services_2009 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2009_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2009_date_project_type ON public.service_history_services_2009 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2009_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2009_en_id_only ON public.service_history_services_2009 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2010_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2010_c_id_en_id ON public.service_history_services_2010 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2010_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2010_client_id_only ON public.service_history_services_2010 USING btree (client_id); + + +-- +-- Name: index_shs_2010_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2010_date_brin ON public.service_history_services_2010 USING brin (date); + + +-- +-- Name: index_shs_2010_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2010_date_client_id ON public.service_history_services_2010 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2010_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2010_date_en_id ON public.service_history_services_2010 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2010_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2010_date_project_type ON public.service_history_services_2010 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2010_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2010_en_id_only ON public.service_history_services_2010 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2011_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2011_c_id_en_id ON public.service_history_services_2011 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2011_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2011_client_id_only ON public.service_history_services_2011 USING btree (client_id); + + +-- +-- Name: index_shs_2011_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2011_date_brin ON public.service_history_services_2011 USING brin (date); + + +-- +-- Name: index_shs_2011_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2011_date_client_id ON public.service_history_services_2011 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2011_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2011_date_en_id ON public.service_history_services_2011 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2011_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2011_date_project_type ON public.service_history_services_2011 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2011_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2011_en_id_only ON public.service_history_services_2011 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2012_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2012_c_id_en_id ON public.service_history_services_2012 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2012_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2012_client_id_only ON public.service_history_services_2012 USING btree (client_id); + + +-- +-- Name: index_shs_2012_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2012_date_brin ON public.service_history_services_2012 USING brin (date); + + +-- +-- Name: index_shs_2012_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2012_date_client_id ON public.service_history_services_2012 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2012_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2012_date_en_id ON public.service_history_services_2012 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2012_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2012_date_project_type ON public.service_history_services_2012 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2012_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2012_en_id_only ON public.service_history_services_2012 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2013_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2013_c_id_en_id ON public.service_history_services_2013 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2013_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2013_client_id_only ON public.service_history_services_2013 USING btree (client_id); + + +-- +-- Name: index_shs_2013_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2013_date_brin ON public.service_history_services_2013 USING brin (date); + + +-- +-- Name: index_shs_2013_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2013_date_client_id ON public.service_history_services_2013 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2013_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2013_date_en_id ON public.service_history_services_2013 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2013_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2013_date_project_type ON public.service_history_services_2013 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2013_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2013_en_id_only ON public.service_history_services_2013 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2014_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2014_c_id_en_id ON public.service_history_services_2014 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2014_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2014_client_id_only ON public.service_history_services_2014 USING btree (client_id); + + +-- +-- Name: index_shs_2014_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2014_date_brin ON public.service_history_services_2014 USING brin (date); + + +-- +-- Name: index_shs_2014_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2014_date_client_id ON public.service_history_services_2014 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2014_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2014_date_en_id ON public.service_history_services_2014 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2014_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2014_date_project_type ON public.service_history_services_2014 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2014_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2014_en_id_only ON public.service_history_services_2014 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2015_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2015_c_id_en_id ON public.service_history_services_2015 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2015_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2015_client_id_only ON public.service_history_services_2015 USING btree (client_id); + + +-- +-- Name: index_shs_2015_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2015_date_brin ON public.service_history_services_2015 USING brin (date); + + +-- +-- Name: index_shs_2015_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2015_date_client_id ON public.service_history_services_2015 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2015_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2015_date_en_id ON public.service_history_services_2015 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2015_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2015_date_project_type ON public.service_history_services_2015 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2015_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2015_en_id_only ON public.service_history_services_2015 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2016_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2016_c_id_en_id ON public.service_history_services_2016 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2016_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2016_client_id_only ON public.service_history_services_2016 USING btree (client_id); + + +-- +-- Name: index_shs_2016_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2016_date_brin ON public.service_history_services_2016 USING brin (date); + + +-- +-- Name: index_shs_2016_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2016_date_client_id ON public.service_history_services_2016 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2016_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2016_date_en_id ON public.service_history_services_2016 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2016_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2016_date_project_type ON public.service_history_services_2016 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2016_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2016_en_id_only ON public.service_history_services_2016 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2017_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2017_c_id_en_id ON public.service_history_services_2017 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2017_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2017_client_id_only ON public.service_history_services_2017 USING btree (client_id); + + +-- +-- Name: index_shs_2017_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2017_date_brin ON public.service_history_services_2017 USING brin (date); + + +-- +-- Name: index_shs_2017_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2017_date_client_id ON public.service_history_services_2017 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2017_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2017_date_en_id ON public.service_history_services_2017 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2017_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2017_date_project_type ON public.service_history_services_2017 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2017_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2017_en_id_only ON public.service_history_services_2017 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2018_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2018_c_id_en_id ON public.service_history_services_2018 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2018_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2018_client_id_only ON public.service_history_services_2018 USING btree (client_id); + + +-- +-- Name: index_shs_2018_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2018_date_brin ON public.service_history_services_2018 USING brin (date); + + +-- +-- Name: index_shs_2018_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2018_date_client_id ON public.service_history_services_2018 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2018_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2018_date_en_id ON public.service_history_services_2018 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2018_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2018_date_project_type ON public.service_history_services_2018 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2018_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2018_en_id_only ON public.service_history_services_2018 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2019_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2019_c_id_en_id ON public.service_history_services_2019 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2019_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2019_client_id_only ON public.service_history_services_2019 USING btree (client_id); + + +-- +-- Name: index_shs_2019_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2019_date_brin ON public.service_history_services_2019 USING brin (date); + + +-- +-- Name: index_shs_2019_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2019_date_client_id ON public.service_history_services_2019 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2019_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2019_date_en_id ON public.service_history_services_2019 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2019_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2019_date_project_type ON public.service_history_services_2019 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2019_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2019_en_id_only ON public.service_history_services_2019 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2020_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2020_c_id_en_id ON public.service_history_services_2020 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2020_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2020_client_id_only ON public.service_history_services_2020 USING btree (client_id); + + +-- +-- Name: index_shs_2020_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2020_date_brin ON public.service_history_services_2020 USING brin (date); + + +-- +-- Name: index_shs_2020_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2020_date_client_id ON public.service_history_services_2020 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2020_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2020_date_en_id ON public.service_history_services_2020 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2020_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2020_date_project_type ON public.service_history_services_2020 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2020_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2020_en_id_only ON public.service_history_services_2020 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2021_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2021_c_id_en_id ON public.service_history_services_2021 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2021_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2021_client_id_only ON public.service_history_services_2021 USING btree (client_id); + + +-- +-- Name: index_shs_2021_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2021_date_brin ON public.service_history_services_2021 USING brin (date); + + +-- +-- Name: index_shs_2021_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2021_date_client_id ON public.service_history_services_2021 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2021_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2021_date_en_id ON public.service_history_services_2021 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2021_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2021_date_project_type ON public.service_history_services_2021 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2021_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2021_en_id_only ON public.service_history_services_2021 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2022_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2022_c_id_en_id ON public.service_history_services_2022 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2022_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2022_client_id_only ON public.service_history_services_2022 USING btree (client_id); + + +-- +-- Name: index_shs_2022_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2022_date_brin ON public.service_history_services_2022 USING brin (date); + + +-- +-- Name: index_shs_2022_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2022_date_client_id ON public.service_history_services_2022 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2022_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2022_date_en_id ON public.service_history_services_2022 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2022_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2022_date_project_type ON public.service_history_services_2022 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2022_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2022_en_id_only ON public.service_history_services_2022 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2023_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2023_c_id_en_id ON public.service_history_services_2023 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2023_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2023_client_id_only ON public.service_history_services_2023 USING btree (client_id); + + +-- +-- Name: index_shs_2023_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2023_date_brin ON public.service_history_services_2023 USING brin (date); + + +-- +-- Name: index_shs_2023_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2023_date_client_id ON public.service_history_services_2023 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2023_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2023_date_en_id ON public.service_history_services_2023 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2023_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2023_date_project_type ON public.service_history_services_2023 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2023_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2023_en_id_only ON public.service_history_services_2023 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2024_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2024_c_id_en_id ON public.service_history_services_2024 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2024_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2024_client_id_only ON public.service_history_services_2024 USING btree (client_id); + + +-- +-- Name: index_shs_2024_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2024_date_brin ON public.service_history_services_2024 USING brin (date); + + +-- +-- Name: index_shs_2024_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2024_date_client_id ON public.service_history_services_2024 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2024_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2024_date_en_id ON public.service_history_services_2024 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2024_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2024_date_project_type ON public.service_history_services_2024 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2024_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2024_en_id_only ON public.service_history_services_2024 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2025_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2025_c_id_en_id ON public.service_history_services_2025 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2025_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2025_client_id_only ON public.service_history_services_2025 USING btree (client_id); + + +-- +-- Name: index_shs_2025_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2025_date_brin ON public.service_history_services_2025 USING brin (date); + + +-- +-- Name: index_shs_2025_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2025_date_client_id ON public.service_history_services_2025 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2025_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2025_date_en_id ON public.service_history_services_2025 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2025_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2025_date_project_type ON public.service_history_services_2025 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2025_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2025_en_id_only ON public.service_history_services_2025 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2026_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2026_c_id_en_id ON public.service_history_services_2026 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2026_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2026_client_id_only ON public.service_history_services_2026 USING btree (client_id); + + +-- +-- Name: index_shs_2026_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2026_date_brin ON public.service_history_services_2026 USING brin (date); + + +-- +-- Name: index_shs_2026_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2026_date_client_id ON public.service_history_services_2026 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2026_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2026_date_en_id ON public.service_history_services_2026 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2026_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2026_date_project_type ON public.service_history_services_2026 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2026_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2026_en_id_only ON public.service_history_services_2026 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2027_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2027_c_id_en_id ON public.service_history_services_2027 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2027_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2027_client_id_only ON public.service_history_services_2027 USING btree (client_id); + + +-- +-- Name: index_shs_2027_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2027_date_brin ON public.service_history_services_2027 USING brin (date); + + +-- +-- Name: index_shs_2027_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2027_date_client_id ON public.service_history_services_2027 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2027_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2027_date_en_id ON public.service_history_services_2027 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2027_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2027_date_project_type ON public.service_history_services_2027 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2027_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2027_en_id_only ON public.service_history_services_2027 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2028_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2028_c_id_en_id ON public.service_history_services_2028 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2028_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2028_client_id_only ON public.service_history_services_2028 USING btree (client_id); + + +-- +-- Name: index_shs_2028_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2028_date_brin ON public.service_history_services_2028 USING brin (date); + + +-- +-- Name: index_shs_2028_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2028_date_client_id ON public.service_history_services_2028 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2028_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2028_date_en_id ON public.service_history_services_2028 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2028_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2028_date_project_type ON public.service_history_services_2028 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2028_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2028_en_id_only ON public.service_history_services_2028 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2029_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2029_c_id_en_id ON public.service_history_services_2029 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2029_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2029_client_id_only ON public.service_history_services_2029 USING btree (client_id); + + +-- +-- Name: index_shs_2029_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2029_date_brin ON public.service_history_services_2029 USING brin (date); + + +-- +-- Name: index_shs_2029_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2029_date_client_id ON public.service_history_services_2029 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2029_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2029_date_en_id ON public.service_history_services_2029 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2029_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2029_date_project_type ON public.service_history_services_2029 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2029_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2029_en_id_only ON public.service_history_services_2029 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2030_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2030_c_id_en_id ON public.service_history_services_2030 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2030_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2030_client_id_only ON public.service_history_services_2030 USING btree (client_id); + + +-- +-- Name: index_shs_2030_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2030_date_brin ON public.service_history_services_2030 USING brin (date); + + +-- +-- Name: index_shs_2030_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2030_date_client_id ON public.service_history_services_2030 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2030_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2030_date_en_id ON public.service_history_services_2030 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2030_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2030_date_project_type ON public.service_history_services_2030 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2030_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2030_en_id_only ON public.service_history_services_2030 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2031_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2031_c_id_en_id ON public.service_history_services_2031 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2031_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2031_client_id_only ON public.service_history_services_2031 USING btree (client_id); + + +-- +-- Name: index_shs_2031_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2031_date_brin ON public.service_history_services_2031 USING brin (date); + + +-- +-- Name: index_shs_2031_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2031_date_client_id ON public.service_history_services_2031 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2031_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2031_date_en_id ON public.service_history_services_2031 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2031_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2031_date_project_type ON public.service_history_services_2031 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2031_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2031_en_id_only ON public.service_history_services_2031 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2032_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2032_c_id_en_id ON public.service_history_services_2032 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2032_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2032_client_id_only ON public.service_history_services_2032 USING btree (client_id); + + +-- +-- Name: index_shs_2032_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2032_date_brin ON public.service_history_services_2032 USING brin (date); + + +-- +-- Name: index_shs_2032_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2032_date_client_id ON public.service_history_services_2032 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2032_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2032_date_en_id ON public.service_history_services_2032 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2032_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2032_date_project_type ON public.service_history_services_2032 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2032_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2032_en_id_only ON public.service_history_services_2032 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2033_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2033_c_id_en_id ON public.service_history_services_2033 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2033_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2033_client_id_only ON public.service_history_services_2033 USING btree (client_id); + + +-- +-- Name: index_shs_2033_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2033_date_brin ON public.service_history_services_2033 USING brin (date); + + +-- +-- Name: index_shs_2033_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2033_date_client_id ON public.service_history_services_2033 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2033_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2033_date_en_id ON public.service_history_services_2033 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2033_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2033_date_project_type ON public.service_history_services_2033 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2033_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2033_en_id_only ON public.service_history_services_2033 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2034_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2034_c_id_en_id ON public.service_history_services_2034 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2034_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2034_client_id_only ON public.service_history_services_2034 USING btree (client_id); + + +-- +-- Name: index_shs_2034_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2034_date_brin ON public.service_history_services_2034 USING brin (date); + + +-- +-- Name: index_shs_2034_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2034_date_client_id ON public.service_history_services_2034 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2034_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2034_date_en_id ON public.service_history_services_2034 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2034_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2034_date_project_type ON public.service_history_services_2034 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2034_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2034_en_id_only ON public.service_history_services_2034 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2035_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2035_c_id_en_id ON public.service_history_services_2035 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2035_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2035_client_id_only ON public.service_history_services_2035 USING btree (client_id); + + +-- +-- Name: index_shs_2035_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2035_date_brin ON public.service_history_services_2035 USING brin (date); + + +-- +-- Name: index_shs_2035_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2035_date_client_id ON public.service_history_services_2035 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2035_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2035_date_en_id ON public.service_history_services_2035 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2035_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2035_date_project_type ON public.service_history_services_2035 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2035_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2035_en_id_only ON public.service_history_services_2035 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2036_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2036_c_id_en_id ON public.service_history_services_2036 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2036_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2036_client_id_only ON public.service_history_services_2036 USING btree (client_id); + + +-- +-- Name: index_shs_2036_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2036_date_brin ON public.service_history_services_2036 USING brin (date); + + +-- +-- Name: index_shs_2036_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2036_date_client_id ON public.service_history_services_2036 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2036_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2036_date_en_id ON public.service_history_services_2036 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2036_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2036_date_project_type ON public.service_history_services_2036 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2036_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2036_en_id_only ON public.service_history_services_2036 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2037_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2037_c_id_en_id ON public.service_history_services_2037 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2037_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2037_client_id_only ON public.service_history_services_2037 USING btree (client_id); + + +-- +-- Name: index_shs_2037_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2037_date_brin ON public.service_history_services_2037 USING brin (date); + + +-- +-- Name: index_shs_2037_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2037_date_client_id ON public.service_history_services_2037 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2037_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2037_date_en_id ON public.service_history_services_2037 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2037_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2037_date_project_type ON public.service_history_services_2037 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2037_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2037_en_id_only ON public.service_history_services_2037 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2038_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2038_c_id_en_id ON public.service_history_services_2038 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2038_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2038_client_id_only ON public.service_history_services_2038 USING btree (client_id); + + +-- +-- Name: index_shs_2038_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2038_date_brin ON public.service_history_services_2038 USING brin (date); + + +-- +-- Name: index_shs_2038_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2038_date_client_id ON public.service_history_services_2038 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2038_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2038_date_en_id ON public.service_history_services_2038 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2038_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2038_date_project_type ON public.service_history_services_2038 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2038_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2038_en_id_only ON public.service_history_services_2038 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2039_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2039_c_id_en_id ON public.service_history_services_2039 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2039_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2039_client_id_only ON public.service_history_services_2039 USING btree (client_id); + + +-- +-- Name: index_shs_2039_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2039_date_brin ON public.service_history_services_2039 USING brin (date); + + +-- +-- Name: index_shs_2039_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2039_date_client_id ON public.service_history_services_2039 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2039_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2039_date_en_id ON public.service_history_services_2039 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2039_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2039_date_project_type ON public.service_history_services_2039 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2039_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2039_en_id_only ON public.service_history_services_2039 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2040_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2040_c_id_en_id ON public.service_history_services_2040 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2040_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2040_client_id_only ON public.service_history_services_2040 USING btree (client_id); + + +-- +-- Name: index_shs_2040_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2040_date_brin ON public.service_history_services_2040 USING brin (date); + + +-- +-- Name: index_shs_2040_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2040_date_client_id ON public.service_history_services_2040 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2040_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2040_date_en_id ON public.service_history_services_2040 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2040_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2040_date_project_type ON public.service_history_services_2040 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2040_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2040_en_id_only ON public.service_history_services_2040 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2041_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2041_c_id_en_id ON public.service_history_services_2041 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2041_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2041_client_id_only ON public.service_history_services_2041 USING btree (client_id); + + +-- +-- Name: index_shs_2041_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2041_date_brin ON public.service_history_services_2041 USING brin (date); + + +-- +-- Name: index_shs_2041_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2041_date_client_id ON public.service_history_services_2041 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2041_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2041_date_en_id ON public.service_history_services_2041 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2041_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2041_date_project_type ON public.service_history_services_2041 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2041_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2041_en_id_only ON public.service_history_services_2041 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2042_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2042_c_id_en_id ON public.service_history_services_2042 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2042_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2042_client_id_only ON public.service_history_services_2042 USING btree (client_id); + + +-- +-- Name: index_shs_2042_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2042_date_brin ON public.service_history_services_2042 USING brin (date); + + +-- +-- Name: index_shs_2042_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2042_date_client_id ON public.service_history_services_2042 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2042_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2042_date_en_id ON public.service_history_services_2042 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2042_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2042_date_project_type ON public.service_history_services_2042 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2042_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2042_en_id_only ON public.service_history_services_2042 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2043_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2043_c_id_en_id ON public.service_history_services_2043 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2043_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2043_client_id_only ON public.service_history_services_2043 USING btree (client_id); + + +-- +-- Name: index_shs_2043_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2043_date_brin ON public.service_history_services_2043 USING brin (date); + + +-- +-- Name: index_shs_2043_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2043_date_client_id ON public.service_history_services_2043 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2043_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2043_date_en_id ON public.service_history_services_2043 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2043_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2043_date_project_type ON public.service_history_services_2043 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2043_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2043_en_id_only ON public.service_history_services_2043 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2044_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2044_c_id_en_id ON public.service_history_services_2044 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2044_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2044_client_id_only ON public.service_history_services_2044 USING btree (client_id); + + +-- +-- Name: index_shs_2044_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2044_date_brin ON public.service_history_services_2044 USING brin (date); + + +-- +-- Name: index_shs_2044_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2044_date_client_id ON public.service_history_services_2044 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2044_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2044_date_en_id ON public.service_history_services_2044 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2044_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2044_date_project_type ON public.service_history_services_2044 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2044_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2044_en_id_only ON public.service_history_services_2044 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2045_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2045_c_id_en_id ON public.service_history_services_2045 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2045_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2045_client_id_only ON public.service_history_services_2045 USING btree (client_id); + + +-- +-- Name: index_shs_2045_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2045_date_brin ON public.service_history_services_2045 USING brin (date); + + +-- +-- Name: index_shs_2045_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2045_date_client_id ON public.service_history_services_2045 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2045_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2045_date_en_id ON public.service_history_services_2045 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2045_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2045_date_project_type ON public.service_history_services_2045 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2045_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2045_en_id_only ON public.service_history_services_2045 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2046_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2046_c_id_en_id ON public.service_history_services_2046 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2046_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2046_client_id_only ON public.service_history_services_2046 USING btree (client_id); + + +-- +-- Name: index_shs_2046_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2046_date_brin ON public.service_history_services_2046 USING brin (date); + + +-- +-- Name: index_shs_2046_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2046_date_client_id ON public.service_history_services_2046 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2046_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2046_date_en_id ON public.service_history_services_2046 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2046_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2046_date_project_type ON public.service_history_services_2046 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2046_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2046_en_id_only ON public.service_history_services_2046 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2047_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2047_c_id_en_id ON public.service_history_services_2047 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2047_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2047_client_id_only ON public.service_history_services_2047 USING btree (client_id); + + +-- +-- Name: index_shs_2047_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2047_date_brin ON public.service_history_services_2047 USING brin (date); + + +-- +-- Name: index_shs_2047_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2047_date_client_id ON public.service_history_services_2047 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2047_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2047_date_en_id ON public.service_history_services_2047 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2047_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2047_date_project_type ON public.service_history_services_2047 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2047_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2047_en_id_only ON public.service_history_services_2047 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2048_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2048_c_id_en_id ON public.service_history_services_2048 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2048_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2048_client_id_only ON public.service_history_services_2048 USING btree (client_id); + + +-- +-- Name: index_shs_2048_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2048_date_brin ON public.service_history_services_2048 USING brin (date); + + +-- +-- Name: index_shs_2048_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2048_date_client_id ON public.service_history_services_2048 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2048_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2048_date_en_id ON public.service_history_services_2048 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2048_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2048_date_project_type ON public.service_history_services_2048 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2048_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2048_en_id_only ON public.service_history_services_2048 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2049_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2049_c_id_en_id ON public.service_history_services_2049 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2049_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2049_client_id_only ON public.service_history_services_2049 USING btree (client_id); + + +-- +-- Name: index_shs_2049_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2049_date_brin ON public.service_history_services_2049 USING brin (date); + + +-- +-- Name: index_shs_2049_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2049_date_client_id ON public.service_history_services_2049 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2049_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2049_date_en_id ON public.service_history_services_2049 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2049_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2049_date_project_type ON public.service_history_services_2049 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2049_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2049_en_id_only ON public.service_history_services_2049 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shs_2050_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2050_c_id_en_id ON public.service_history_services_2050 USING btree (client_id, service_history_enrollment_id); + + +-- +-- Name: index_shs_2050_client_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2050_client_id_only ON public.service_history_services_2050 USING btree (client_id); + + +-- +-- Name: index_shs_2050_date_brin; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2050_date_brin ON public.service_history_services_2050 USING brin (date); + + +-- +-- Name: index_shs_2050_date_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2050_date_client_id ON public.service_history_services_2050 USING btree (client_id, date, record_type); + + +-- +-- Name: index_shs_2050_date_en_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_shs_2050_date_en_id ON public.service_history_services_2050 USING btree (date, service_history_enrollment_id); + + +-- +-- Name: index_shs_2050_date_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2050_date_project_type ON public.service_history_services_2050 USING btree (project_type, date, record_type); + + +-- +-- Name: index_shs_2050_en_id_only; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shs_2050_en_id_only ON public.service_history_services_2050 USING btree (service_history_enrollment_id); + + +-- +-- Name: index_shsm_c_id_date; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shsm_c_id_date ON public.service_history_services_materialized USING btree (client_id, date); + + +-- +-- Name: index_shsm_c_id_p_type_r_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shsm_c_id_p_type_r_type ON public.service_history_services_materialized USING btree (client_id, project_type, record_type); + + +-- +-- Name: index_shsm_homeless_p_type_c_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shsm_homeless_p_type_c_id ON public.service_history_services_materialized USING btree (homeless, project_type, client_id); + + +-- +-- Name: index_shsm_literally_homeless_p_type_c_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shsm_literally_homeless_p_type_c_id ON public.service_history_services_materialized USING btree (literally_homeless, project_type, client_id); + + +-- +-- Name: index_shsm_shse_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_shsm_shse_id ON public.service_history_services_materialized USING btree (service_history_enrollment_id); + + +-- +-- Name: index_simple_report_cells_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_simple_report_cells_on_report_instance_id ON public.simple_report_cells USING btree (report_instance_id); + + +-- +-- Name: index_simple_report_instances_on_goal_configuration_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_simple_report_instances_on_goal_configuration_id ON public.simple_report_instances USING btree (goal_configuration_id); + + +-- +-- Name: index_simple_report_instances_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_simple_report_instances_on_user_id ON public.simple_report_instances USING btree (user_id); + + +-- +-- Name: index_simple_report_universe_members_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_simple_report_universe_members_on_client_id ON public.simple_report_universe_members USING btree (client_id); + + +-- +-- Name: index_simple_report_universe_members_on_report_cell_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_simple_report_universe_members_on_report_cell_id ON public.simple_report_universe_members USING btree (report_cell_id); + + +-- +-- Name: index_staff_x_client_s_id_c_id_r_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_staff_x_client_s_id_c_id_r_id ON public.hmis_staff_x_clients USING btree (staff_id, client_id, relationship_id); + + +-- +-- Name: index_synthetic_assessments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_synthetic_assessments_on_client_id ON public.synthetic_assessments USING btree (client_id); + + +-- +-- Name: index_synthetic_assessments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_synthetic_assessments_on_enrollment_id ON public.synthetic_assessments USING btree (enrollment_id); + + +-- +-- Name: index_synthetic_assessments_on_source_type_and_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_synthetic_assessments_on_source_type_and_source_id ON public.synthetic_assessments USING btree (source_type, source_id); + + +-- +-- Name: index_synthetic_ce_assessment_project_configs_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_synthetic_ce_assessment_project_configs_on_project_id ON public.synthetic_ce_assessment_project_configs USING btree (project_id); + + +-- +-- Name: index_synthetic_events_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_synthetic_events_on_client_id ON public.synthetic_events USING btree (client_id); + + +-- +-- Name: index_synthetic_events_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_synthetic_events_on_enrollment_id ON public.synthetic_events USING btree (enrollment_id); + + +-- +-- Name: index_synthetic_events_on_source_id_and_source_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_synthetic_events_on_source_id_and_source_type ON public.synthetic_events USING btree (source_id, source_type); + + +-- +-- Name: index_synthetic_events_on_source_type_and_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_synthetic_events_on_source_type_and_source_id ON public.synthetic_events USING btree (source_type, source_id); + + +-- +-- Name: index_synthetic_youth_education_statuses_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_synthetic_youth_education_statuses_on_client_id ON public.synthetic_youth_education_statuses USING btree (client_id); + + +-- +-- Name: index_synthetic_youth_education_statuses_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_synthetic_youth_education_statuses_on_enrollment_id ON public.synthetic_youth_education_statuses USING btree (enrollment_id); + + +-- +-- Name: index_synthetic_youth_education_statuses_on_source; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_synthetic_youth_education_statuses_on_source ON public.synthetic_youth_education_statuses USING btree (source_type, source_id); + + +-- +-- Name: index_system_pathways_enrollments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_system_pathways_enrollments_on_enrollment_id ON public.system_pathways_enrollments USING btree (enrollment_id); + + +-- +-- Name: index_system_pathways_enrollments_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_system_pathways_enrollments_on_project_id ON public.system_pathways_enrollments USING btree (project_id); + + +-- +-- Name: index_taggings_on_context; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_taggings_on_context ON public.taggings USING btree (context); + + +-- +-- Name: index_taggings_on_tag_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_taggings_on_tag_id ON public.taggings USING btree (tag_id); + + +-- +-- Name: index_taggings_on_taggable_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_taggings_on_taggable_id ON public.taggings USING btree (taggable_id); + + +-- +-- Name: index_taggings_on_taggable_id_and_taggable_type_and_context; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_taggings_on_taggable_id_and_taggable_type_and_context ON public.taggings USING btree (taggable_id, taggable_type, context); + + +-- +-- Name: index_taggings_on_taggable_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_taggings_on_taggable_type ON public.taggings USING btree (taggable_type); + + +-- +-- Name: index_taggings_on_tagger_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_taggings_on_tagger_id ON public.taggings USING btree (tagger_id); + + +-- +-- Name: index_taggings_on_tagger_id_and_tagger_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_taggings_on_tagger_id_and_tagger_type ON public.taggings USING btree (tagger_id, tagger_type); + + +-- +-- Name: index_tags_on_name; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_tags_on_name ON public.tags USING btree (name); + + +-- +-- Name: index_talentlms_completed_trainings_on_config_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_talentlms_completed_trainings_on_config_id ON public.talentlms_completed_trainings USING btree (config_id); + + +-- +-- Name: index_talentlms_completed_trainings_on_course_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_talentlms_completed_trainings_on_course_id ON public.talentlms_completed_trainings USING btree (course_id); + + +-- +-- Name: index_talentlms_completed_trainings_on_login_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_talentlms_completed_trainings_on_login_id ON public.talentlms_completed_trainings USING btree (login_id); + + +-- +-- Name: index_talentlms_courses_on_config_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_talentlms_courses_on_config_id ON public.talentlms_courses USING btree (config_id); + + +-- +-- Name: index_talentlms_logins_on_config_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_talentlms_logins_on_config_id ON public.talentlms_logins USING btree (config_id); + + +-- +-- Name: index_talentlms_logins_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_talentlms_logins_on_user_id ON public.talentlms_logins USING btree (user_id); + + +-- +-- Name: index_text_message_messages_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_text_message_messages_on_created_at ON public.text_message_messages USING btree (created_at); + + +-- +-- Name: index_text_message_messages_on_subscriber_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_text_message_messages_on_subscriber_id ON public.text_message_messages USING btree (subscriber_id); + + +-- +-- Name: index_text_message_messages_on_topic_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_text_message_messages_on_topic_id ON public.text_message_messages USING btree (topic_id); + + +-- +-- Name: index_text_message_messages_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_text_message_messages_on_updated_at ON public.text_message_messages USING btree (updated_at); + + +-- +-- Name: index_text_message_topic_subscribers_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_text_message_topic_subscribers_on_created_at ON public.text_message_topic_subscribers USING btree (created_at); + + +-- +-- Name: index_text_message_topic_subscribers_on_topic_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_text_message_topic_subscribers_on_topic_id ON public.text_message_topic_subscribers USING btree (topic_id); + + +-- +-- Name: index_text_message_topic_subscribers_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_text_message_topic_subscribers_on_updated_at ON public.text_message_topic_subscribers USING btree (updated_at); + + +-- +-- Name: index_text_message_topics_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_text_message_topics_on_created_at ON public.text_message_topics USING btree (created_at); + + +-- +-- Name: index_text_message_topics_on_title; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_text_message_topics_on_title ON public.text_message_topics USING btree (title); + + +-- +-- Name: index_text_message_topics_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_text_message_topics_on_updated_at ON public.text_message_topics USING btree (updated_at); + + +-- +-- Name: index_themes_on_remote_credential_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_themes_on_remote_credential_id ON public.themes USING btree (remote_credential_id); + + +-- +-- Name: index_tx_research_exports_on_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_tx_research_exports_on_export_id ON public.tx_research_exports USING btree (export_id); + + +-- +-- Name: index_tx_research_exports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_tx_research_exports_on_user_id ON public.tx_research_exports USING btree (user_id); + + +-- +-- Name: index_universe_type_and_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_universe_type_and_id ON public.hud_report_universe_members USING btree (universe_membership_type, universe_membership_id); + + +-- +-- Name: index_uploads_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_uploads_on_deleted_at ON public.uploads USING btree (deleted_at); + + +-- +-- Name: index_user_client_permissions_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_user_client_permissions_on_client_id ON public.user_client_permissions USING btree (client_id); + + +-- +-- Name: index_user_client_permissions_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_user_client_permissions_on_user_id ON public.user_client_permissions USING btree (user_id); + + +-- +-- Name: index_user_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_user_clients_on_client_id ON public.user_clients USING btree (client_id); + + +-- +-- Name: index_user_clients_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_user_clients_on_user_id ON public.user_clients USING btree (user_id); + + +-- +-- Name: index_va_check_histories_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_va_check_histories_on_client_id ON public.va_check_histories USING btree (client_id); + + +-- +-- Name: index_va_check_histories_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_va_check_histories_on_user_id ON public.va_check_histories USING btree (user_id); + + +-- +-- Name: index_versions_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_versions_on_client_id ON public.versions USING btree (client_id); + + +-- +-- Name: index_versions_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_versions_on_enrollment_id ON public.versions USING btree (enrollment_id); + + +-- +-- Name: index_versions_on_item_type_and_item_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_versions_on_item_type_and_item_id ON public.versions USING btree (item_type, item_id); + + +-- +-- Name: index_versions_on_project_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_versions_on_project_id ON public.versions USING btree (project_id); + + +-- +-- Name: index_vispdats_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_vispdats_on_client_id ON public.vispdats USING btree (client_id); + + +-- +-- Name: index_vispdats_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_vispdats_on_user_id ON public.vispdats USING btree (user_id); + + +-- +-- Name: index_warehouse_client_service_history_on_computed_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_client_service_history_on_computed_project_type ON public.warehouse_client_service_history USING btree (computed_project_type); + + +-- +-- Name: index_warehouse_client_service_history_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_client_service_history_on_data_source_id ON public.warehouse_client_service_history USING btree (data_source_id); + + +-- +-- Name: index_warehouse_client_service_history_on_enrollment_group_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_client_service_history_on_enrollment_group_id ON public.warehouse_client_service_history USING btree (enrollment_group_id); + + +-- +-- Name: index_warehouse_client_service_history_on_first_date_in_program; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_client_service_history_on_first_date_in_program ON public.warehouse_client_service_history USING btree (first_date_in_program); + + +-- +-- Name: index_warehouse_client_service_history_on_household_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_client_service_history_on_household_id ON public.warehouse_client_service_history USING btree (household_id); + + +-- +-- Name: index_warehouse_client_service_history_on_last_date_in_program; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_client_service_history_on_last_date_in_program ON public.warehouse_client_service_history USING btree (last_date_in_program); + + +-- +-- Name: index_warehouse_client_service_history_on_project_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_client_service_history_on_project_type ON public.warehouse_client_service_history USING btree (project_type); + + +-- +-- Name: index_warehouse_client_service_history_on_record_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_client_service_history_on_record_type ON public.warehouse_client_service_history USING btree (record_type); + + +-- +-- Name: index_warehouse_clients_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_clients_on_data_source_id ON public.warehouse_clients USING btree (data_source_id); + + +-- +-- Name: index_warehouse_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_clients_on_deleted_at ON public.warehouse_clients USING btree (deleted_at); + + +-- +-- Name: index_warehouse_clients_on_destination_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_clients_on_destination_id ON public.warehouse_clients USING btree (destination_id); + + +-- +-- Name: index_warehouse_clients_on_id_in_source; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_clients_on_id_in_source ON public.warehouse_clients USING btree (id_in_source); + + +-- +-- Name: index_warehouse_clients_on_source_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX index_warehouse_clients_on_source_id ON public.warehouse_clients USING btree (source_id); + + +-- +-- Name: index_warehouse_clients_processed_on_chronic_days; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_clients_processed_on_chronic_days ON public.warehouse_clients_processed USING btree (chronic_days); + + +-- +-- Name: index_warehouse_clients_processed_on_client_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_clients_processed_on_client_id ON public.warehouse_clients_processed USING btree (client_id); + + +-- +-- Name: index_warehouse_clients_processed_on_days_served; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_clients_processed_on_days_served ON public.warehouse_clients_processed USING btree (days_served); + + +-- +-- Name: index_warehouse_clients_processed_on_homeless_days; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_clients_processed_on_homeless_days ON public.warehouse_clients_processed USING btree (homeless_days); + + +-- +-- Name: index_warehouse_clients_processed_on_routine; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_warehouse_clients_processed_on_routine ON public.warehouse_clients_processed USING btree (routine); + + +-- +-- Name: index_weather_on_url; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_weather_on_url ON public.weather USING btree (url); + + +-- +-- Name: index_wsh_on_last_date_in_program; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_wsh_on_last_date_in_program ON public.new_service_history USING btree (first_date_in_program, last_date_in_program, record_type, date); + + +-- +-- Name: index_youth_case_managements_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_youth_case_managements_on_deleted_at ON public.youth_case_managements USING btree (deleted_at); + + +-- +-- Name: index_youth_exports_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_youth_exports_on_created_at ON public.youth_exports USING btree (created_at); + + +-- +-- Name: index_youth_exports_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_youth_exports_on_updated_at ON public.youth_exports USING btree (updated_at); + + +-- +-- Name: index_youth_exports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_youth_exports_on_user_id ON public.youth_exports USING btree (user_id); + + +-- +-- Name: index_youth_follow_ups_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_youth_follow_ups_on_deleted_at ON public.youth_follow_ups USING btree (deleted_at); + + +-- +-- Name: index_youth_intakes_on_created_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_youth_intakes_on_created_at ON public.youth_intakes USING btree (created_at); + + +-- +-- Name: index_youth_intakes_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_youth_intakes_on_deleted_at ON public.youth_intakes USING btree (deleted_at); + + +-- +-- Name: index_youth_intakes_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_youth_intakes_on_updated_at ON public.youth_intakes USING btree (updated_at); + + +-- +-- Name: index_youth_referrals_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_youth_referrals_on_deleted_at ON public.youth_referrals USING btree (deleted_at); + + +-- +-- Name: inventory_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX inventory_date_created ON public."Inventory" USING btree ("DateCreated"); + + +-- +-- Name: inventory_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX inventory_date_updated ON public."Inventory" USING btree ("DateUpdated"); + + +-- +-- Name: inventory_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX inventory_export_id ON public."Inventory" USING btree ("ExportID"); + + +-- +-- Name: involved_in_imports_by_hud_key; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX involved_in_imports_by_hud_key ON public.involved_in_imports USING btree (hud_key, importer_log_id, record_type, record_action); + + +-- +-- Name: involved_in_imports_by_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX involved_in_imports_by_id ON public.involved_in_imports USING btree (record_id, importer_log_id, record_type, record_action); + + +-- +-- Name: involved_in_imports_by_importer_log; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX involved_in_imports_by_importer_log ON public.involved_in_imports USING btree (importer_log_id, record_type, record_action); + + +-- +-- Name: one_entity_per_type_per_collection; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX one_entity_per_type_per_collection ON public.group_viewable_entities USING btree (collection_id, entity_id, entity_type) WHERE (collection_id IS NOT NULL); + + +-- +-- Name: one_entity_per_type_per_group; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX one_entity_per_type_per_group ON public.group_viewable_entities USING btree (access_group_id, entity_id, entity_type) WHERE (access_group_id <> 0); + + +-- +-- Name: one_entity_per_type_per_id_per_user; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX one_entity_per_type_per_id_per_user ON public.favorites USING btree (user_id, entity_id, entity_type); + + +-- +-- Name: one_entity_per_type_per_user_allows_delete; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX one_entity_per_type_per_user_allows_delete ON public.user_viewable_entities USING btree (user_id, entity_id, entity_type, deleted_at); + + +-- +-- Name: one_form_processor_per_owner; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX one_form_processor_per_owner ON public.hmis_form_processors USING btree (owner_id, owner_type); + + +-- +-- Name: organization_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX organization_export_id ON public."Organization" USING btree ("ExportID"); + + +-- +-- Name: p_id_ds_id_fp_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX p_id_ds_id_fp_idx ON public.financial_providers USING btree (provider_id, data_source_id); + + +-- +-- Name: pm_clients_c_id_fq_r_id_p; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX pm_clients_c_id_fq_r_id_p ON public.pm_client_projects USING btree (client_id, for_question, report_id, period); + + +-- +-- Name: pm_clients_c_id_p_id_r_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX pm_clients_c_id_p_id_r_id ON public.pm_client_projects USING btree (client_id, project_id, report_id); + + +-- +-- Name: ppfc_ppfp_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX ppfc_ppfp_idx ON public.project_pass_fails_clients USING btree (project_id); + + +-- +-- Name: project_coc_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX project_coc_date_created ON public."ProjectCoC" USING btree ("DateCreated"); + + +-- +-- Name: project_coc_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX project_coc_date_updated ON public."ProjectCoC" USING btree ("DateUpdated"); + + +-- +-- Name: project_coc_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX project_coc_export_id ON public."ProjectCoC" USING btree ("ExportID"); + + +-- +-- Name: project_cocs_city_lower; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX project_cocs_city_lower ON public."ProjectCoC" USING btree (lower(("City")::text)); + + +-- +-- Name: project_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX project_date_created ON public."Project" USING btree ("DateCreated"); + + +-- +-- Name: project_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX project_date_updated ON public."Project" USING btree ("DateUpdated"); + + +-- +-- Name: project_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX project_export_id ON public."Project" USING btree ("ExportID"); + + +-- +-- Name: project_tracking_method_rsh_index; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX project_tracking_method_rsh_index ON public.recent_service_history USING btree (project_tracking_method); + + +-- +-- Name: project_type_rsh_index; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX project_type_rsh_index ON public.recent_service_history USING btree (project_type); + + +-- +-- Name: services_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX services_date_created ON public."Services" USING btree ("DateCreated"); + + +-- +-- Name: services_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX services_date_updated ON public."Services" USING btree ("DateUpdated"); + + +-- +-- Name: services_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX services_export_id ON public."Services" USING btree ("ExportID"); + + +-- +-- Name: sh_date_ds_id_org_id_proj_id_proj_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX sh_date_ds_id_org_id_proj_id_proj_type ON public.warehouse_client_service_history USING btree (date, data_source_id, organization_id, project_id, project_type); + + +-- +-- Name: shape_counties_namelsad_lower; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX shape_counties_namelsad_lower ON public.shape_counties USING btree (lower((namelsad)::text)); + + +-- +-- Name: shs_unique_date_she_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX shs_unique_date_she_id ON public.service_history_services_was_for_inheritance USING btree (date, service_history_enrollment_id); + + +-- +-- Name: simple_report_univ_type_and_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX simple_report_univ_type_and_id ON public.simple_report_universe_members USING btree (universe_membership_type, universe_membership_id); + + +-- +-- Name: site_date_created; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX site_date_created ON public."Geography" USING btree ("DateCreated"); + + +-- +-- Name: site_date_updated; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX site_date_updated ON public."Geography" USING btree ("DateUpdated"); + + +-- +-- Name: site_export_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX site_export_id ON public."Geography" USING btree ("ExportID"); + + +-- +-- Name: spm_client_conflict_columns; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX spm_client_conflict_columns ON public.hud_report_spm_clients USING btree (report_instance_id, client_id, data_source_id); + + +-- +-- Name: spm_p_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX spm_p_id_ds_id ON public.hud_report_spm_enrollments USING btree (personal_id, data_source_id); + + +-- +-- Name: taggings_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX taggings_idx ON public.taggings USING btree (tag_id, taggable_id, taggable_type, context, tagger_id, tagger_type); + + +-- +-- Name: taggings_idy; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX taggings_idy ON public.taggings USING btree (taggable_id, taggable_type, tagger_id, context); + + +-- +-- Name: test_shs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX test_shs ON public.service_history_services_2000 USING btree (service_history_enrollment_id, date); + + +-- +-- Name: tt; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX tt ON public.hmis_2022_exits_saved USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); + + +-- +-- Name: tt_services_date_provided_composite_key; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX tt_services_date_provided_composite_key ON public."Services" USING btree ("DateProvided", "EnrollmentID", "PersonalID", data_source_id) WHERE ("DateDeleted" IS NOT NULL); + + +-- +-- Name: tx_id_ds_id_ft_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX tx_id_ds_id_ft_idx ON public.financial_transactions USING btree (transaction_id, data_source_id); + + +-- +-- Name: uidx_external_id_ns_value; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_external_id_ns_value ON public.external_ids USING btree (source_type, namespace, value) WHERE ((namespace)::text <> ALL (ARRAY[('ac_hmis_mci'::character varying)::text, ('ac_hmis_mci_unique_id'::character varying)::text])); + + +-- +-- Name: uidx_external_ids_source_value; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_external_ids_source_value ON public.external_ids USING btree (source_id, source_type, remote_credential_id) WHERE (((namespace)::text <> 'ac_hmis_mci'::text) OR (namespace IS NULL)); + + +-- +-- Name: uidx_hmis_external_referral_hms_1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hmis_external_referral_hms_1 ON public.hmis_external_referral_household_members USING btree (client_id, referral_id); + + +-- +-- Name: uidx_hmis_external_referral_posting_identifier; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hmis_external_referral_posting_identifier ON public.hmis_external_referral_postings USING btree (identifier); + + +-- +-- Name: uidx_hmis_external_referral_postings_1; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hmis_external_referral_postings_1 ON public.hmis_external_referral_postings USING btree (referral_id, referral_request_id); + + +-- +-- Name: uidx_hmis_external_referral_requests_identifier; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hmis_external_referral_requests_identifier ON public.hmis_external_referral_requests USING btree (identifier); + + +-- +-- Name: uidx_hmis_external_referrals_identifier; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hmis_external_referrals_identifier ON public.hmis_external_referrals USING btree (identifier); + + +-- +-- Name: uidx_hmis_external_unit_availability_syncs; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hmis_external_unit_availability_syncs ON public.hmis_external_unit_availability_syncs USING btree (project_id, unit_type_id); + + +-- +-- Name: uidx_hmis_form_definitions_identifier; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hmis_form_definitions_identifier ON public.hmis_form_definitions USING btree (identifier, version) WHERE (deleted_at IS NULL); + + +-- +-- Name: uidx_hmis_form_definitions_one_draft_per_identifier; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hmis_form_definitions_one_draft_per_identifier ON public.hmis_form_definitions USING btree (identifier) WHERE (((status)::text = 'draft'::text) AND (deleted_at IS NULL)); + + +-- +-- Name: uidx_hmis_form_definitions_one_published_per_identifier; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hmis_form_definitions_one_published_per_identifier ON public.hmis_form_definitions USING btree (identifier) WHERE (((status)::text = 'published'::text) AND (deleted_at IS NULL)); + + +-- +-- Name: uidx_hmis_project_unit_type_mappings; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hmis_project_unit_type_mappings ON public.hmis_project_unit_type_mappings USING btree (project_id, unit_type_id); + + +-- +-- Name: uidx_hmis_staff_assignments; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hmis_staff_assignments ON public.hmis_staff_assignments USING btree (data_source_id, household_id, user_id, hmis_staff_assignment_relationship_id) WHERE (deleted_at IS NULL); + + +-- +-- Name: uidx_hmis_supplemental_field_values_on_key; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hmis_supplemental_field_values_on_key ON public.hmis_supplemental_field_values USING btree (data_set_id, owner_key, field_key); + + +-- +-- Name: uidx_hopwa_caper_enrollments; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hopwa_caper_enrollments ON public.hopwa_caper_enrollments USING btree (report_instance_id, enrollment_id); + + +-- +-- Name: uidx_hopwa_caper_services; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_hopwa_caper_services ON public.hopwa_caper_services USING btree (report_instance_id, service_id); + + +-- +-- Name: uidx_import_overrides_rules; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uidx_import_overrides_rules ON public.import_overrides USING btree (data_source_id, file_name, replaces_column, COALESCE(matched_hud_key, 'ALL'::character varying), COALESCE(replaces_value, 'ALL'::character varying)) WHERE (deleted_at IS NULL); + + +-- +-- Name: uniq_hud_report_universe_members; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uniq_hud_report_universe_members ON public.hud_report_universe_members USING btree (report_cell_id, universe_membership_id, universe_membership_type) WHERE (deleted_at IS NULL); + + +-- +-- Name: uniq_simple_report_universe_members; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX uniq_simple_report_universe_members ON public.simple_report_universe_members USING btree (report_cell_id, universe_membership_id, universe_membership_type) WHERE (deleted_at IS NULL); + + +-- +-- Name: unique_index_ensuring_one_key_per_record_type; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX unique_index_ensuring_one_key_per_record_type ON public."CustomDataElementDefinitions" USING btree (owner_type, key); + + +-- +-- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX unique_schema_migrations ON public.schema_migrations USING btree (version); + + +-- +-- Name: unk_Geography; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "unk_Geography" ON public."Geography" USING btree (data_source_id, "GeographyID"); + + +-- +-- Name: unk_Organization; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "unk_Organization" ON public."Organization" USING btree (data_source_id, "OrganizationID"); + + +-- +-- Name: unk_Project; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "unk_Project" ON public."Project" USING btree (data_source_id, "ProjectID"); + + +-- +-- Name: unk_Site; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX "unk_Site" ON public."Geography" USING btree (data_source_id, "GeographyID"); + + +-- +-- Name: users_ds_email_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX users_ds_email_idx ON public."User" USING btree ("UserEmail", data_source_id); + + +-- +-- Name: youth_ed_ev_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX youth_ed_ev_id_ds_id ON public."YouthEducationStatus" USING btree ("YouthEducationStatusID", data_source_id); + + +-- +-- Name: youth_eds_id_e_id_p_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX youth_eds_id_e_id_p_id_ds_id ON public."YouthEducationStatus" USING btree ("YouthEducationStatusID", "EnrollmentID", "PersonalID", data_source_id); + + +-- +-- Name: hmis_2022_clients_partitioned_0_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_0_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_0_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_0_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_0_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_0_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_0_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_0_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_10_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_10_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_10_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_10_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_10_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_10_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_10_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_11_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_11_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_11_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_11_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_11_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_11_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_11_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_12_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_12_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_12_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_12_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_12_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_12_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_12_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_13_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_13_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_13_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_13_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_13_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_13_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_13_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_14_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_14_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_14_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_14_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_14_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_14_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_14_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_15_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_15_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_15_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_15_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_15_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_15_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_15_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_16_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_16_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_16_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_16_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_16_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_16_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_16_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_17_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_17_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_17_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_17_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_17_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_17_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_17_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_18_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_18_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_18_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_18_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_18_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_18_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_18_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_19_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_19_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_19_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_19_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_19_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_19_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_19_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_1_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_1_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_1_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_1_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_1_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_1_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_1_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_20_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_20_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_20_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_20_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_20_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_20_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_20_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_21_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_21_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_21_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_21_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_21_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_21_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_21_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_22_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_22_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_22_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_22_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_22_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_22_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_22_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_23_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_23_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_23_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_23_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_23_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_23_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_23_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_24_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_24_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_24_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_24_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_24_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_24_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_24_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_25_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_25_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_25_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_25_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_25_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_25_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_25_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_26_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_26_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_26_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_26_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_26_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_26_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_26_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_27_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_27_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_27_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_27_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_27_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_27_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_27_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_28_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_28_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_28_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_28_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_28_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_28_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_28_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_29_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_29_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_29_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_29_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_29_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_29_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_29_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_2_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_2_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_2_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_2_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_2_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_2_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_2_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_30_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_30_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_30_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_30_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_30_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_30_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_30_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_31_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_31_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_31_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_31_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_31_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_31_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_31_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_32_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_32_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_32_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_32_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_32_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_32_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_32_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_33_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_33_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_33_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_33_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_33_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_33_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_33_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_34_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_34_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_34_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_34_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_34_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_34_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_34_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_35_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_35_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_35_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_35_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_35_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_35_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_35_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_36_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_36_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_36_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_36_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_36_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_36_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_36_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_37_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_37_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_37_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_37_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_37_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_37_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_37_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_38_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_38_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_38_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_38_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_38_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_38_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_38_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_39_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_39_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_39_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_39_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_39_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_39_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_39_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_3_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_3_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_3_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_3_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_3_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_3_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_3_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_40_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_40_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_40_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_40_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_40_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_40_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_40_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_41_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_41_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_41_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_41_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_41_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_41_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_41_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_42_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_42_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_42_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_42_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_42_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_42_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_42_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_43_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_43_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_43_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_43_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_43_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_43_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_43_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_44_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_44_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_44_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_44_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_44_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_44_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_44_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_45_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_45_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_45_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_45_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_45_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_45_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_45_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_46_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_46_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_46_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_46_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_46_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_46_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_46_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_47_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_47_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_47_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_47_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_47_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_47_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_47_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_48_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_48_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_48_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_48_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_48_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_48_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_48_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_49_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_49_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_49_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_49_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_49_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_49_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_49_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_4_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_4_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_4_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_4_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_4_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_4_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_4_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_50_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_50_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_50_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_50_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_50_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_50_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_50_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_51_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_51_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_51_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_51_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_51_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_51_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_51_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_52_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_52_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_52_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_52_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_52_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_52_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_52_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_53_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_53_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_53_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_53_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_53_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_53_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_53_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_54_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_54_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_54_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_54_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_54_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_54_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_54_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_55_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_55_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_55_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_55_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_55_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_55_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_55_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_56_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_56_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_56_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_56_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_56_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_56_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_56_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_57_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_57_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_57_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_57_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_57_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_57_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_57_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_58_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_58_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_58_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_58_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_58_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_58_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_58_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_59_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_59_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_59_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_59_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_59_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_59_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_59_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_5_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_5_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_5_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_5_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_5_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_5_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_5_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_60_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_60_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_60_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_60_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_60_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_60_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_60_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_61_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_61_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_61_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_61_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_61_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_61_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_61_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_62_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_62_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_62_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_62_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_62_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_62_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_62_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_63_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_63_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_63_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_63_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_63_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_63_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_63_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_64_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_64_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_64_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_64_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_64_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_64_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_64_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_65_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_65_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_65_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_65_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_65_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_65_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_65_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_66_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_66_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_66_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_66_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_66_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_66_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_66_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_67_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_67_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_67_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_67_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_67_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_67_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_67_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_68_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_68_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_68_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_68_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_68_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_68_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_68_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_69_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_69_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_69_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_69_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_69_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_69_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_69_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_6_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_6_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_6_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_6_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_6_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_6_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_6_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_70_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_70_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_70_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_70_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_70_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_70_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_70_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_7_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_7_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_7_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_7_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_7_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_7_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_7_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_8_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_8_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_8_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_8_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_8_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_8_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_8_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DOB_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DOB_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DOB_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DOB_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DOB_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DOB_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DOB_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DOB_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DOB_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DOB_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DOB_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DateCreated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_ExportID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_ExportID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_ExportID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_ExportID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_ExportID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_FirstName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_FirstName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_FirstName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_FirstName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_FirstName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_FirstName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_FirstName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_FirstName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_FirstName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_FirstName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_FirstName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_LastName_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_LastName_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_LastName_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_LastName_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_LastName_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_LastName_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_LastName_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_LastName_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_LastName_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_LastName_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_LastName_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_PersonalID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_PersonalID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_PersonalID_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_VeteranStatus_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_VeteranStatus_idx"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_VeteranStatus_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx1" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_VeteranStatus_idx1"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_VeteranStatus_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx2" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_VeteranStatus_idx2"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_VeteranStatus_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx3" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_VeteranStatus_idx3"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_VeteranStatus_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_clients_partitioned_VeteranStatus_idx4" ATTACH PARTITION hmis."hmis_2022_clients_partitioned_9_VeteranStatus_idx4"; + + +-- +-- Name: hmis_2022_clients_partitioned_9_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_9_importer_log_id_idx; + + +-- +-- Name: hmis_2022_clients_partitioned_9_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_clients_partitioned_9_pkey; + + +-- +-- Name: hmis_2022_clients_partitioned_9_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_clients_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_clients_partitioned_9_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx10; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx10"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx11; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx11"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx12; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx12"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx13; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx13"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx14; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx14"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx15; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx15"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx16; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx16"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx17; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx17"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx18; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx18"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx19; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx19"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx20; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx20"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx21; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx21"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx22; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx22"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx23; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx23"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx24; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx24"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx25; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx25"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx26; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx26"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx27; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx27"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx28; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx28"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx29; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx29"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx30; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx30"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx31; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx31"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx32; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx32"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx33; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx33"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx34; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx34"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx35; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx35"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx36; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx36"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx37; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx37"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx38; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx38"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx39; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx39"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx40; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx40"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx41; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx41"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx42; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx42"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx43; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx43"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx44; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx44"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx45; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx45"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx46; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx46"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx47; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx47"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx48; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx48"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx49; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx49"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx50; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx50"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx51; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx51"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx52; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx52"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx53; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx53"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx54; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx54"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx55; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx55"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx56; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx56"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx57; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx57"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx58; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx58"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx59; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx59"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx60; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx60"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx61; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx61"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx62; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx62"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx63; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx63"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx64; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx64"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx65; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx65"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx66; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx66"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx67; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx67"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx68; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx68"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx69; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx69"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx70; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_PersonalID_impo_idx70"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx100; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx100"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx101; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx101"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx102; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx102"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx103; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx103"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx104; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx104"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx105; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx105"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx106; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx106"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx107; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx107"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx108; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx108"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx109; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx109"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx110; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx110"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx111; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx111"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx112; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx112"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx113; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx113"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx114; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx114"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx115; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx115"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx116; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx116"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx117; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx117"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx118; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx118"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx119; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx119"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx120; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx120"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx121; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx121"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx122; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx122"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx123; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx123"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx124; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx124"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx125; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx125"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx126; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx126"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx127; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx127"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx128; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx128"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx129; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx129"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx130; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx130"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx131; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx131"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx132; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx132"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx133; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx133"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx134; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx134"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx135; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx135"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx136; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx136"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx137; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx137"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx138; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx138"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx139; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx139"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx140; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx140"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx141; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx141"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx142; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx142"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx143; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx143"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx144; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx144"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx145; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx145"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx146; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx146"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx147; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx147"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx148; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx148"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx149; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx149"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx150; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx150"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx151; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx151"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx152; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx152"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx153; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx153"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx154; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx154"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx155; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx155"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx156; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx156"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx157; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx157"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx158; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx158"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx159; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx159"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx160; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx160"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx161; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx161"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx162; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx162"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx163; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx163"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx164; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx164"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx165; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx165"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx166; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx166"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx167; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx167"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx168; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx168"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx169; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx169"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx170; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx170"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx171; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx171"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx172; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx172"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx173; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx173"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx174; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx174"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx175; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx175"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx176; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx176"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx177; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx177"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx178; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx178"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx179; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx179"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx180; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx180"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx181; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx181"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx182; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx182"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx183; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx183"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx184; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx184"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx185; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx185"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx186; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx186"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx187; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx187"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx188; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx188"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx189; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx189"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx190; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx190"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx191; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx191"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx192; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx192"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx193; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx193"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx194; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx194"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx195; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx195"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx196; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx196"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx197; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx197"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx198; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx198"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx199; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx199"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx200; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx200"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx201; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx201"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx202; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx202"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx203; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx203"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx204; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx204"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx205; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx205"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx206; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx206"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx207; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx207"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx208; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx208"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx209; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx209"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx210; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx210"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx211; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx211"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx212; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx212"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx213; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx213"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx214; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx214"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx215; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx215"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx216; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx216"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx217; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx217"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx218; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx218"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx219; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx219"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx220; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx220"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx221; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx221"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx222; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx222"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx223; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx223"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx224; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx224"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx225; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx225"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx226; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx226"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx227; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx227"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx228; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx228"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx229; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx229"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx230; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx230"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx231; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx231"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx232; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx232"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx233; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx233"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx234; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx234"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx235; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx235"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx236; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx236"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx237; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx237"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx238; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx238"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx239; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx239"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx240; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx240"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx241; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx241"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx242; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx242"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx243; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx243"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx244; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx244"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx245; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx245"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx246; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx246"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx247; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx247"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx248; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx248"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx249; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx249"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx250; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx250"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx251; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx251"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx252; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx252"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx253; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx253"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx254; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx254"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx255; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx255"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx256; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx256"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx257; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx257"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx258; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx258"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx259; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx259"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx260; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx260"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx261; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx261"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx262; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx262"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx263; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx263"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx264; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx264"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx265; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx265"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx266; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx266"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx267; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx267"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx268; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx268"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx269; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx269"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx270; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx270"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx271; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx271"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx272; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx272"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx273; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx273"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx274; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx274"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx275; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx275"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx276; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx276"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx277; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx277"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx278; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx278"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx279; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx279"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx280; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx280"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx281; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx281"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx282; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx282"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx283; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx283"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx284; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx284"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx285; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx285"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx286; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx286"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx287; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx287"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx288; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx288"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx289; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx289"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx290; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx290"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx291; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx291"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx292; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx292"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx293; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx293"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx294; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx294"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx295; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx295"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx296; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx296"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx297; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx297"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx298; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx298"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx299; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx299"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx300; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx300"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx301; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx301"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx302; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx302"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx303; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx303"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx304; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx304"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx305; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx305"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx306; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx306"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx307; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx307"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx308; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx308"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx309; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx309"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx310; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx310"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx311; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx311"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx312; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx312"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx313; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx313"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx314; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx314"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx315; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx315"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx316; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx316"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx317; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx317"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx318; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx318"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx319; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx319"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx320; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx320"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx321; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx321"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx322; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx322"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx323; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx323"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx324; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx324"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx325; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx325"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx326; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx326"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx327; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx327"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx328; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx328"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx329; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx329"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx330; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx330"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx331; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx331"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx332; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx332"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx333; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx333"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx334; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx334"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx335; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx335"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx336; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx336"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx337; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx337"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx338; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx338"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx339; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx339"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx340; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx340"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx341; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx341"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx342; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx342"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx343; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx343"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx344; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx344"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx345; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx345"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx346; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx346"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx347; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx347"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx348; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx348"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx349; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx349"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx350; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx350"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx351; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx351"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx352; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx352"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx353; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx353"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx354; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entr_idx354"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx10; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx10"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx11; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx11"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx12; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx12"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx13; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx13"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx14; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx14"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx15; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx15"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx16; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx16"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx17; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx17"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx18; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx18"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx19; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx19"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx20; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx20"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx21; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx21"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx22; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx22"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx23; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx23"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx24; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx24"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx25; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx25"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx26; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx26"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx27; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx27"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx28; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx28"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx29; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx29"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx30; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx30"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx31; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx31"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx32; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx32"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx33; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx33"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx34; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx34"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx35; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx35"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx36; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx36"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx37; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx37"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx38; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx38"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx39; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx39"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx40; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx40"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx41; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx41"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx42; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx42"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx43; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx43"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx44; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx44"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx45; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx45"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx46; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx46"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx47; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx47"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx48; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx48"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx49; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx49"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx50; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx50"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx51; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx51"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx52; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx52"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx53; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx53"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx54; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx54"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx55; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx55"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx56; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx56"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx57; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx57"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx58; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx58"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx59; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx59"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx60; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx60"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx61; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx61"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx62; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx62"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx63; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx63"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx64; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx64"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx65; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx65"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx66; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx66"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx67; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx67"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx68; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx68"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx69; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx69"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx70; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx70"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx71; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx71"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx72; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx72"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx73; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx73"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx74; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx74"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx75; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx75"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx76; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx76"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx77; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx77"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx78; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx78"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx79; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx79"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx80; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx80"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx81; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx81"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx82; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx82"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx83; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx83"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx84; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx84"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx85; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx85"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx86; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx86"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx87; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx87"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx88; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx88"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx89; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx89"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx90; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx90"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx91; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx91"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx92; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx92"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx93; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx93"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx94; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx94"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx95; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx95"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx96; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx96"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx97; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx97"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx98; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx98"; + + +-- +-- Name: hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx99; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_EnrollmentID_ProjectID_Entry_idx99"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx10; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx10"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx11; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx11"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx12; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx12"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx13; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx13"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx14; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx14"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx15; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx15"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx16; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx16"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx17; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx17"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx18; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx18"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx19; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx19"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx20; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx20"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx21; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx21"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx22; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx22"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx23; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx23"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx24; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx24"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx25; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx25"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx26; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx26"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx27; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx27"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx28; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx28"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx29; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx29"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx30; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx30"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx31; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx31"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx32; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx32"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx33; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx33"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx34; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx34"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx35; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx35"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx36; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx36"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx37; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx37"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx38; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx38"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx39; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx39"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx40; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx40"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx41; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx41"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx42; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx42"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx43; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx43"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx44; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx44"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx45; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx45"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx46; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx46"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx47; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx47"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx48; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx48"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx49; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx49"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx50; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx50"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx51; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx51"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx52; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx52"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx53; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx53"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx54; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx54"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx55; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx55"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx56; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx56"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx57; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx57"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx58; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx58"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx59; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx59"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx60; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx60"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx61; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx61"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx62; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx62"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx63; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx63"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx64; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx64"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx65; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx65"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx66; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx66"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx67; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx67"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx68; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx68"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx69; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx69"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx70; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx70"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx71; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx71"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx72; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx72"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx73; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx73"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx74; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx74"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx75; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx75"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx76; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx76"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx77; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx77"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx78; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx78"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx79; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx79"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx80; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx80"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx81; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx81"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx82; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx82"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx83; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx83"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx84; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx84"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx85; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx85"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx86; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx86"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx87; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx87"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx88; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx88"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx89; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx89"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx90; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx90"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx91; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx91"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx92; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx92"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx93; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx93"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx94; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx94"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx95; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx95"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx96; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx96"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx97; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx97"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx98; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx98"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx99; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOfS_idx99"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx100; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx100"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx101; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx101"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx102; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx102"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx103; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx103"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx104; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx104"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx105; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx105"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx106; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx106"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx107; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx107"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx108; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx108"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx109; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx109"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx110; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx110"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx111; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx111"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx112; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx112"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx113; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx113"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx114; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx114"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx115; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx115"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx116; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx116"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx117; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx117"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx118; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx118"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx119; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx119"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx120; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx120"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx121; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx121"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx122; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx122"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx123; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx123"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx124; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx124"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx125; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx125"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx126; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx126"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx127; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx127"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx128; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx128"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx129; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx129"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx130; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx130"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx131; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx131"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx132; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx132"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx133; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx133"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx134; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx134"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx135; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx135"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx136; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx136"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx137; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx137"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx138; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx138"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx139; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx139"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx140; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx140"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx141; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx141"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx142; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx142"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx143; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx143"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx144; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx144"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx145; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx145"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx146; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx146"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx147; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx147"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx148; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx148"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx149; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx149"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx150; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx150"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx151; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx151"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx152; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx152"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx153; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx153"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx154; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx154"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx155; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx155"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx156; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx156"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx157; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx157"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx158; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx158"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx159; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx159"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx160; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx160"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx161; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx161"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx162; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx162"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx163; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx163"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx164; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx164"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx165; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx165"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx166; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx166"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx167; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx167"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx168; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx168"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx169; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx169"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx170; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx170"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx171; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx171"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx172; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx172"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx173; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx173"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx174; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx174"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx175; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx175"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx176; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx176"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx177; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx177"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx178; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx178"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx179; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx179"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx180; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx180"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx181; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx181"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx182; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx182"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx183; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx183"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx184; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx184"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx185; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx185"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx186; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx186"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx187; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx187"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx188; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx188"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx189; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx189"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx190; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx190"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx191; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx191"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx192; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx192"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx193; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx193"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx194; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx194"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx195; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx195"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx196; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx196"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx197; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx197"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx198; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx198"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx199; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx199"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx200; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx200"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx201; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx201"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx202; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx202"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx203; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx203"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx204; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx204"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx205; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx205"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx206; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx206"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx207; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx207"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx208; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx208"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx209; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx209"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx210; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx210"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx211; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx211"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx212; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx212"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx213; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx213"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx214; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx214"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx215; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx215"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx216; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx216"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx217; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx217"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx218; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx218"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx219; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx219"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx220; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx220"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx221; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx221"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx222; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx222"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx223; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx223"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx224; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx224"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx225; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx225"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx226; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx226"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx227; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx227"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx228; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx228"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx229; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx229"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx230; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx230"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx231; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx231"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx232; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx232"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx233; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx233"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx234; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx234"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx235; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx235"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx236; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx236"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx237; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx237"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx238; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx238"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx239; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx239"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx240; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx240"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx241; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx241"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx242; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx242"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx243; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx243"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx244; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx244"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx245; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx245"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx246; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx246"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx247; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx247"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx248; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx248"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx249; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx249"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx250; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx250"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx251; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx251"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx252; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx252"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx253; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx253"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx254; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx254"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx255; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx255"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx256; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx256"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx257; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx257"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx258; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx258"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx259; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx259"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx260; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx260"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx261; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx261"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx262; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx262"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx263; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx263"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx264; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx264"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx265; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx265"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx266; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx266"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx267; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx267"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx268; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx268"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx269; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx269"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx270; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx270"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx271; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx271"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx272; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx272"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx273; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx273"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx274; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx274"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx275; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx275"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx276; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx276"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx277; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx277"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx278; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx278"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx279; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx279"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx280; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx280"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx281; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx281"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx282; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx282"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx283; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx283"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx284; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx284"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx285; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx285"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx286; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx286"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx287; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx287"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx288; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx288"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx289; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx289"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx290; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx290"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx291; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx291"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx292; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx292"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx293; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx293"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx294; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx294"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx295; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx295"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx296; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx296"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx297; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx297"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx298; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx298"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx299; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx299"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx300; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx300"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx301; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx301"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx302; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx302"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx303; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx303"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx304; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx304"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx305; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx305"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx306; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx306"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx307; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx307"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx308; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx308"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx309; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx309"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx310; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx310"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx311; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx311"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx312; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx312"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx313; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx313"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx314; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx314"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx315; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx315"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx316; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx316"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx317; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx317"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx318; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx318"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx319; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx319"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx320; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx320"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx321; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx321"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx322; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx322"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx323; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx323"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx324; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx324"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx325; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx325"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx326; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx326"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx327; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx327"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx328; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx328"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx329; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx329"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx330; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx330"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx331; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx331"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx332; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx332"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx333; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx333"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx334; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx334"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx335; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx335"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx336; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx336"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx337; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx337"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx338; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx338"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx339; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx339"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx340; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx340"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx341; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx341"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx342; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx342"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx343; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx343"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx344; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx344"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx345; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx345"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx346; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx346"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx347; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx347"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx348; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx348"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx349; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx349"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx350; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx350"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx351; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx351"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx352; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx352"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx353; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx353"; + + +-- +-- Name: hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx354; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_PreviousStreetESSH_LengthOf_idx354"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx100; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx100"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx101; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx101"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx102; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx102"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx103; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx103"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx104; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx104"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx105; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx105"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx106; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx106"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx107; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx107"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx108; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx108"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx109; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx109"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx110; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx110"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx111; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx111"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx112; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx112"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx113; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx113"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx114; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx114"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx115; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx115"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx116; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx116"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx117; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx117"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx118; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx118"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx119; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx119"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx120; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx120"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx121; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx121"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx122; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx122"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx123; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx123"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx124; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx124"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx125; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx125"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx126; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx126"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx127; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx127"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx128; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx128"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx129; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx129"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx130; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx130"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx131; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx131"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx132; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx132"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx133; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx133"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx134; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx134"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx135; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx135"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx136; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx136"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx137; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx137"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx138; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx138"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx139; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx139"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx140; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx140"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx141; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx141"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx142; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx142"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx143; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx143"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx144; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx144"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx145; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx145"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx146; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx146"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx147; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx147"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx148; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx148"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx149; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx149"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx150; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx150"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx151; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx151"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx152; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx152"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx153; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx153"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx154; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx154"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx155; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx155"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx156; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx156"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx157; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx157"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx158; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx158"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx159; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx159"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx160; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx160"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx161; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx161"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx162; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx162"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx163; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx163"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx164; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx164"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx165; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx165"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx166; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx166"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx167; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx167"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx168; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx168"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx169; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx169"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx170; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx170"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx171; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx171"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx172; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx172"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx173; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx173"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx174; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx174"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx175; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx175"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx176; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx176"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx177; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx177"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx178; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx178"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx179; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx179"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx180; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx180"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx181; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx181"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx182; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx182"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx183; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx183"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx184; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx184"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx185; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx185"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx186; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx186"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx187; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx187"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx188; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx188"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx189; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx189"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx190; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx190"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx191; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx191"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx192; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx192"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx193; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx193"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx194; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx194"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx195; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx195"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx196; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx196"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx197; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx197"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx198; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx198"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx199; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx199"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx200; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx200"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx201; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx201"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx202; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx202"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx203; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx203"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx204; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx204"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx205; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx205"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx206; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx206"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx207; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx207"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx208; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx208"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx209; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx209"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx210; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx210"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx211; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx211"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx212; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx212"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx213; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx213"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx214; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx214"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx215; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx215"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx216; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx216"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx217; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx217"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx218; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx218"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx219; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx219"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx220; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx220"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx221; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx221"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx222; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx222"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx223; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx223"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx224; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx224"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx225; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx225"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx226; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx226"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx227; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx227"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx228; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx228"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx229; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx229"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx230; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx230"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx231; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx231"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx232; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx232"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx233; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx233"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx234; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx234"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx235; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx235"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx236; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx236"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx237; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx237"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx238; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx238"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx239; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx239"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx240; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx240"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx241; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx241"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx242; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx242"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx243; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx243"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx244; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx244"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx245; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx245"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx246; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx246"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx247; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx247"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx248; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx248"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx249; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx249"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx250; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx250"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx251; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx251"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx252; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx252"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx253; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx253"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx254; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx254"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx255; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx255"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx256; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx256"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx257; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx257"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx258; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx258"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx259; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx259"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx260; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx260"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx261; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx261"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx262; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx262"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx263; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx263"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx264; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx264"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx265; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx265"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx266; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx266"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx267; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx267"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx268; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx268"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx269; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx269"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx270; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx270"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx271; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx271"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx272; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx272"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx273; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx273"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx274; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx274"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx275; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx275"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx276; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx276"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx277; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx277"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx278; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx278"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx279; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx279"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx280; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx280"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx281; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx281"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx282; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx282"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx283; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx283"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx284; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx284"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx285; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx285"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx286; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx286"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx287; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx287"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx288; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx288"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx289; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx289"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx290; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx290"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx291; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx291"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx292; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx292"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx293; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx293"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx294; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx294"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx295; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx295"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx296; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx296"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx297; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx297"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx298; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx298"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx299; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx299"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx300; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx300"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx301; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx301"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx302; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx302"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx303; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx303"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx304; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx304"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx305; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx305"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx306; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx306"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx307; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx307"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx308; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx308"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx309; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx309"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx310; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx310"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx311; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx311"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx312; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx312"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx313; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx313"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx314; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx314"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx315; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx315"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx316; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx316"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx317; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx317"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx318; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx318"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx319; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx319"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx320; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx320"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx321; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx321"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx322; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx322"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx323; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx323"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx324; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx324"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx325; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx325"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx326; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx326"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx327; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx327"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx328; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx328"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx329; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx329"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx330; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx330"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx331; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx331"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx332; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx332"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx333; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx333"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx334; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx334"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx335; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx335"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx336; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx336"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx337; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx337"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx338; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx338"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx339; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx339"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx340; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx340"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx341; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx341"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx342; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx342"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx343; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx343"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx344; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx344"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx345; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx345"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx346; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx346"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx347; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx347"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx348; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx348"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx349; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx349"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx350; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx350"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx351; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx351"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx352; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx352"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx353; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx353"; + + +-- +-- Name: hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx354; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_ProjectID_RelationshipToHoH_idx354"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx10; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx10"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx11; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx11"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx12; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx12"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx13; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx13"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx14; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx14"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx15; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx15"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx16; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx16"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx17; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx17"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx18; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx18"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx19; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx19"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx20; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx20"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx21; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx21"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx22; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx22"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx23; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx23"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx24; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx24"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx25; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx25"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx26; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx26"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx27; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx27"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx28; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx28"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx29; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx29"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx30; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx30"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx31; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx31"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx32; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx32"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx33; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx33"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx34; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx34"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx35; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx35"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx36; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx36"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx37; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx37"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx38; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx38"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx39; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx39"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx40; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx40"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx41; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx41"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx42; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx42"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx43; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx43"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx44; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx44"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx45; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx45"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx46; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx46"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx47; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx47"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx48; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx48"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx49; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx49"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx50; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx50"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx51; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx51"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx52; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx52"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx53; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx53"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx54; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx54"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx55; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx55"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx56; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx56"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx57; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx57"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx58; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx58"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx59; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx59"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx60; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx60"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx61; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx61"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx62; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx62"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx63; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx63"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx64; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx64"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx65; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx65"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx66; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx66"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx67; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx67"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx68; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx68"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx69; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx69"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx70; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx70"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx71; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx71"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx72; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx72"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx73; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx73"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx74; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx74"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx75; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx75"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx76; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx76"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx77; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx77"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx78; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx78"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx79; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx79"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx80; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx80"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx81; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx81"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx82; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx82"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx83; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx83"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx84; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx84"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx85; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx85"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx86; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx86"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx87; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx87"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx88; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx88"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx89; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx89"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx90; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx90"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx91; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx91"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx92; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx92"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx93; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx93"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx94; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx94"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx95; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx95"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx96; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx96"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx97; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx97"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx98; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx98"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx99; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears__idx99"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx100; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx100"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx101; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx101"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx102; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx102"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx103; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx103"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx104; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx104"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx105; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx105"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx106; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx106"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx107; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx107"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx108; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx108"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx109; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx109"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx110; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx110"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx111; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx111"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx112; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx112"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx113; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx113"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx114; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx114"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx115; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx115"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx116; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx116"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx117; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx117"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx118; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx118"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx119; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx119"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx120; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx120"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx121; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx121"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx122; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx122"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx123; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx123"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx124; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx124"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx125; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx125"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx126; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx126"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx127; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx127"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx128; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx128"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx129; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx129"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx130; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx130"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx131; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx131"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx132; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx132"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx133; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx133"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx134; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx134"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx135; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx135"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx136; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx136"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx137; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx137"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx138; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx138"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx139; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx139"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx140; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx140"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx141; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx141"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx142; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx142"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx143; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx143"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx144; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx144"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx145; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx145"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx146; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx146"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx147; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx147"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx148; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx148"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx149; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx149"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx150; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx150"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx151; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx151"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx152; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx152"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx153; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx153"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx154; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx154"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx155; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx155"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx156; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx156"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx157; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx157"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx158; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx158"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx159; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx159"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx160; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx160"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx161; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx161"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx162; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx162"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx163; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx163"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx164; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx164"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx165; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx165"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx166; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx166"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx167; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx167"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx168; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx168"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx169; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx169"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx170; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx170"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx171; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx171"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx172; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx172"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx173; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx173"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx174; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx174"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx175; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx175"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx176; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx176"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx177; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx177"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx178; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx178"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx179; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx179"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx180; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx180"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx181; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx181"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx182; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx182"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx183; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx183"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx184; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx184"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx185; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx185"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx186; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx186"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx187; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx187"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx188; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx188"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx189; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx189"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx190; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx190"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx191; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx191"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx192; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx192"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx193; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx193"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx194; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx194"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx195; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx195"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx196; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx196"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx197; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx197"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx198; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx198"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx199; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx199"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx200; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx200"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx201; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx201"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx202; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx202"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx203; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx203"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx204; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx204"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx205; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx205"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx206; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx206"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx207; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx207"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx208; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx208"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx209; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx209"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx210; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx210"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx211; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx211"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx212; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx212"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx213; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx213"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx214; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx214"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx215; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx215"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx216; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx216"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx217; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx217"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx218; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx218"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx219; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx219"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx220; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx220"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx221; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx221"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx222; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx222"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx223; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx223"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx224; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx224"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx225; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx225"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx226; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx226"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx227; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx227"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx228; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx228"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx229; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx229"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx230; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx230"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx231; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx231"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx232; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx232"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx233; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx233"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx234; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx234"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx235; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx235"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx236; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx236"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx237; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx237"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx238; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx238"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx239; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx239"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx240; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx240"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx241; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx241"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx242; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx242"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx243; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx243"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx244; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx244"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx245; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx245"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx246; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx246"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx247; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx247"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx248; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx248"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx249; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx249"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx250; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx250"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx251; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx251"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx252; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx252"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx253; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx253"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx254; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx254"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx255; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx255"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx256; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx256"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx257; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx257"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx258; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx258"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx259; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx259"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx260; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx260"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx261; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx261"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx262; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx262"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx263; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx263"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx264; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx264"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx265; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx265"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx266; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx266"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx267; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx267"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx268; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx268"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx269; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx269"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx270; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx270"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx271; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx271"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx272; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx272"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx273; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx273"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx274; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx274"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx275; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx275"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx276; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx276"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx277; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx277"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx278; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx278"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx279; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx279"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx280; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx280"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx281; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx281"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx282; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx282"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx283; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx283"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx284; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx284"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx285; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx285"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx286; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx286"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx287; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx287"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx288; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx288"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx289; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx289"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx290; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx290"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx291; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx291"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx292; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx292"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx293; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx293"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx294; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx294"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx295; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx295"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx296; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx296"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx297; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx297"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx298; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx298"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx299; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx299"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx300; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx300"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx301; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx301"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx302; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx302"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx303; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx303"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx304; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx304"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx305; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx305"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx306; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx306"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx307; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx307"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx308; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx308"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx309; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx309"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx310; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx310"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx311; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx311"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx312; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx312"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx313; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx313"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx314; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx314"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx315; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx315"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx316; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx316"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx317; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx317"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx318; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx318"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx319; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx319"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx320; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx320"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx321; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx321"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx322; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx322"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx323; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx323"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx324; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx324"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx325; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx325"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx326; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx326"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx327; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx327"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx328; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx328"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx329; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx329"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx330; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx330"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx331; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx331"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx332; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx332"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx333; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx333"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx334; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx334"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx335; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx335"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx336; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx336"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx337; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx337"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx338; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx338"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx339; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx339"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx340; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx340"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx341; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx341"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx342; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx342"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx343; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx343"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx344; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx344"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx345; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx345"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx346; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx346"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx347; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx347"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx348; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx348"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx349; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx349"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx350; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx350"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx351; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx351"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx352; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx352"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx353; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx353"; + + +-- +-- Name: hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx354; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partit_TimesHomelessPastThreeYears_idx354"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx6"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx7"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx8"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx9"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impor_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impo_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_PersonalID_impor_idx"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_EntryD_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_EntryD_idx"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx6"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx7"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx8"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_ProjectID_Entry_idx9"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx10; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx10"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx11; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx11"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx12; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx12"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx13; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx13"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx14; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx14"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx15; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx15"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx16; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx16"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx17; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx17"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx18; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx18"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx19; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx19"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx20; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx20"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx21; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx21"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx22; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx22"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx23; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx23"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx24; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx24"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx25; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx25"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx26; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx26"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx27; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx27"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx28; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx28"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx29; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx29"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx30; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx30"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx31; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx31"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx32; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx32"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx33; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx33"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx34; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx34"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx35; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx35"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx36; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx36"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx37; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx37"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx38; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx38"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx39; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx39"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx40; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx40"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx41; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx41"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx42; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx42"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx43; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx43"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx44; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx44"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx45; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx45"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx46; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx46"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx47; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx47"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx48; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx48"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx49; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx49"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx50; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx50"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx51; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx51"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx52; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx52"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx53; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx53"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx54; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx54"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx55; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx55"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx56; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx56"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx57; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx57"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx58; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx58"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx59; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx59"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx60; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx60"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx61; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx61"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx62; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx62"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx63; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx63"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx64; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx64"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx65; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx65"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx66; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx66"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx67; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx67"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx68; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx68"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx69; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx69"; + + +-- +-- Name: hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx70; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_EnrollmentID_data_source_id_idx70"; + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx6"; + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx7"; + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx8"; + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx9"; + + +-- +-- Name: hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfSt_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfS_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_PreviousStreetESSH_LengthOfSt_idx"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx10; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx10"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx11; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx11"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx12; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx12"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx13; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx13"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx14; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx14"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx15; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx15"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx16; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx16"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx17; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx17"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx18; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx18"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx19; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx19"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx20; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx20"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx21; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx21"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx22; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx22"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx23; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx23"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx24; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx24"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx25; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx25"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx26; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx26"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx27; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx27"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx28; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx28"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx29; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx29"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx30; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx30"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx31; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx31"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx32; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx32"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx33; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx33"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx34; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx34"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx35; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx35"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx36; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx36"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx37; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx37"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx38; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx38"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx39; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx39"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx40; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx40"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx41; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx41"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx42; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx42"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx43; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx43"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx44; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx44"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx45; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx45"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx46; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx46"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx47; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx47"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx48; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx48"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx49; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx49"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx50; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx50"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx51; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx51"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx52; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx52"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx53; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx53"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx54; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx54"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx55; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx55"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx56; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx56"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx57; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx57"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx58; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx58"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx59; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx59"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx60; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx60"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx61; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx61"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx62; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx62"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx63; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx63"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx64; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx64"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx65; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx65"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx66; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx66"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx67; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx67"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx68; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx68"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx69; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx69"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx70; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx70"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx71; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx71"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx72; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx72"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx73; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx73"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx74; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx74"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx75; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx75"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx76; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx76"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx77; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx77"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx78; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx78"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx79; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx79"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx80; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx80"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx81; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx81"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx82; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx82"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx83; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx83"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx84; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx84"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx85; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx85"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx86; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx86"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx87; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx87"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx88; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx88"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx89; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx89"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx90; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx90"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx91; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx91"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx92; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx92"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx93; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx93"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx94; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx94"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx95; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx95"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx96; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx96"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx97; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx97"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx98; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx98"; + + +-- +-- Name: hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx99; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_ProjectID_RelationshipToHoH_idx99"; + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears_M_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears_M_idx"; + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx1"; + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx2"; + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx3"; + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx4"; + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx5"; + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx6"; + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx7"; + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx8"; + + +-- +-- Name: hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partiti_TimesHomelessPastThreeYears__idx9"; + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx6"; + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx7"; + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx8"; + + +-- +-- Name: hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx9"; + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx6"; + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx7"; + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx8"; + + +-- +-- Name: hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9" ATTACH PARTITION hmis."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx9"; + + +-- +-- Name: hmis_2022_enrollments_partition_EnrollmentID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_EnrollmentID_data_source_id_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partition_EnrollmentID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_enrollments_partition_ProjectID_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitio_ProjectID_RelationshipToHoH_idx5" ATTACH PARTITION hmis."hmis_2022_enrollments_partition_ProjectID_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx100; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx100"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx101; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx101"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx102; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx102"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx103; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx103"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx104; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx104"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx105; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx105"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx106; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx106"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx107; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx107"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx108; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx108"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx109; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx109"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx110; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx110"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx111; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx111"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx112; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx112"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx113; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx113"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx114; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx114"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx115; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx115"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx116; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx116"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx117; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx117"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx118; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx118"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx119; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx119"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx120; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx120"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx121; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx121"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx122; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx122"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx123; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx123"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx124; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx124"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx125; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx125"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx126; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx126"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx127; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx127"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx128; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx128"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx129; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx129"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx130; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx130"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx131; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx131"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx132; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx132"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx133; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx133"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx134; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx134"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx135; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx135"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx136; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx136"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx137; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx137"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx138; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx138"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx139; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx139"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx140; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx140"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx141; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx141"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx142; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx142"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx143; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx143"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx144; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx144"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx145; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx145"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx146; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx146"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx147; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx147"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx148; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx148"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx149; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx149"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx150; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx150"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx151; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx151"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx152; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx152"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx153; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx153"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx154; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx154"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx155; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx155"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx156; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx156"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx157; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx157"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx158; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx158"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx159; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx159"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx160; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx160"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx161; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx161"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx162; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx162"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx163; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx163"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx164; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx164"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx165; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx165"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx166; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx166"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx167; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx167"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx168; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx168"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx169; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx169"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx170; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx170"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx171; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx171"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx172; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx172"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx173; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx173"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx174; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx174"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx175; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx175"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx176; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx176"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx177; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx177"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx178; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx178"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx179; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx179"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx180; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx180"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx181; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx181"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx182; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx182"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx183; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx183"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx184; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx184"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx185; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx185"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx186; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx186"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx187; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx187"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx188; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx188"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx189; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx189"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx190; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx190"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx191; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx191"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx192; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx192"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx193; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx193"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx194; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx194"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx195; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx195"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx196; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx196"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx197; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx197"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx198; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx198"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx199; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx199"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx200; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx200"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx201; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx201"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx202; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx202"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx203; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx203"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx204; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx204"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx205; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx205"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx206; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx206"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx207; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx207"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx208; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx208"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx209; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx209"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx210; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx210"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx211; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx211"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx212; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx212"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx213; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx213"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx214; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx214"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx215; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx215"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx216; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx216"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx217; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx217"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx218; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx218"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx219; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx219"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx220; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx220"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx221; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx221"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx222; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx222"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx223; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx223"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx224; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx224"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx225; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx225"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx226; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx226"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx227; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx227"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx228; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx228"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx229; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx229"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx230; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx230"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx231; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx231"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx232; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx232"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx233; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx233"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx234; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx234"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx235; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx235"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx236; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx236"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx237; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx237"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx238; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx238"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx239; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx239"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx240; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx240"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx241; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx241"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx242; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx242"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx243; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx243"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx244; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx244"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx245; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx245"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx246; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx246"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx247; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx247"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx248; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx248"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx249; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx249"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx250; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx250"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx251; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx251"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx252; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx252"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx253; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx253"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx254; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx254"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx255; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx255"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx256; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx256"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx257; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx257"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx258; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx258"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx259; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx259"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx260; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx260"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx261; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx261"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx262; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx262"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx263; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx263"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx264; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx264"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx265; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx265"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx266; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx266"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx267; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx267"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx268; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx268"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx269; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx269"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx270; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx270"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx271; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx271"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx272; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx272"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx273; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx273"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx274; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx274"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx275; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx275"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx276; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx276"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx277; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx277"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx278; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx278"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx279; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx279"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx280; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx280"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx281; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx281"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx282; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx282"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx283; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx283"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx284; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx284"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx285; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx285"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx286; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx286"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx287; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx287"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx288; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx288"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx289; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx289"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx290; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx290"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx291; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx291"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx292; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx292"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx293; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx293"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx294; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx294"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx295; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx295"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx296; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx296"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx297; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx297"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx298; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx298"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx299; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx299"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx300; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx300"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx301; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx301"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx302; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx302"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx303; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx303"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx304; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx304"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx305; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx305"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx306; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx306"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx307; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx307"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx308; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx308"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx309; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx309"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx310; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx310"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx311; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx311"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx312; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx312"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx313; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx313"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx314; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx314"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx315; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx315"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx316; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx316"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx317; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx317"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx318; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx318"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx319; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx319"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx320; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx320"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx321; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx321"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx322; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx322"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx323; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx323"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx324; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx324"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx325; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx325"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx326; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx326"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx327; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx327"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx328; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx328"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx329; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx329"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx330; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx330"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx331; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx331"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx332; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx332"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx333; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx333"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx334; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx334"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx335; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx335"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx336; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx336"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx337; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx337"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx338; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx338"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx339; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx339"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx340; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx340"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx341; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx341"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx342; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx342"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx343; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx343"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx344; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx344"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx345; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx345"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx346; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx346"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx347; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx347"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx348; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx348"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx349; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx349"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx350; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx350"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx351; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx351"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx352; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx352"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx353; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx353"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx354; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx354"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx355; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx355"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx356; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx356"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx357; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx357"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx358; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx358"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx359; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx359"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx360; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx360"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx361; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx361"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx362; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx362"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx363; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx363"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx364; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx364"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx365; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx365"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx366; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx366"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx367; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx367"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx368; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx368"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx369; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx369"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx370; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx370"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx371; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx371"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx372; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx372"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx373; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx373"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx374; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx374"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx375; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx375"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx376; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx376"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx377; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx377"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx378; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx378"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx379; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx379"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx380; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx380"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx381; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx381"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx382; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx382"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx383; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx383"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx384; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx384"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx385; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx385"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx386; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx386"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx387; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx387"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx388; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx388"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx389; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx389"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx390; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx390"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx391; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx391"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx392; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx392"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx393; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx393"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx394; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx394"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx395; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx395"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx396; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx396"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx397; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx397"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx398; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx398"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx399; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx399"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx400; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx400"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx401; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx401"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx402; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx402"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx403; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx403"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx404; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx404"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx405; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx405"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx406; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx406"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx407; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx407"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx408; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx408"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx409; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx409"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx410; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx410"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx411; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx411"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx412; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx412"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx413; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx413"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx414; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx414"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx415; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx415"; + + +-- +-- Name: hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx416; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_c548 ATTACH PARTITION hmis."hmis_2022_enrollments_partitione_EnrollmentID_PersonalID_idx416"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_EnrollmentID_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_0_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_0_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_0_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_0_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_0_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_10_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_10_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_10_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_10_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_10_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_11_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_11_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_11_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_11_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_11_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_12_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_12_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_12_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_12_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_12_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_13_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_13_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_13_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_13_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_13_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_14_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_14_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_14_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_14_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_14_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_15_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_15_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_15_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_15_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_15_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_16_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_16_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_16_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_16_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_16_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_17_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_17_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_17_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_17_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_17_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_18_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_18_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_18_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_18_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_18_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_19_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_19_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_19_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_19_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_19_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_EnrollmentID_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_1_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_1_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_1_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_1_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_1_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_20_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_20_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_20_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_20_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_20_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_21_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_21_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_21_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_21_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_21_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_22_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_22_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_22_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_22_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_22_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_23_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_23_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_23_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_23_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_23_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_24_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_24_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_24_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_24_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_24_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_25_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_25_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_25_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_25_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_25_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_26_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_26_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_26_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_26_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_26_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_27_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_27_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_27_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_27_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_27_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_28_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_28_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_28_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_28_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_28_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_29_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_29_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_29_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_29_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_29_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_EnrollmentID_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_2_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_2_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_2_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_2_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_2_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_30_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_30_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_30_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_30_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_30_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_31_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_31_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_31_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_31_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_31_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_32_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_32_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_32_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_32_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_32_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_33_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_33_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_33_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_33_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_33_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_34_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_34_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_34_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_34_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_34_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_35_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_35_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_35_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_35_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_35_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_36_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_36_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_36_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_36_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_36_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_37_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_37_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_37_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_37_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_37_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_38_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_38_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_38_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_38_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_38_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_39_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_39_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_39_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_39_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_39_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_EnrollmentID_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_3_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_3_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_3_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_3_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_3_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_40_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_40_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_40_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_40_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_40_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_41_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_41_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_41_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_41_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_41_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_42_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_42_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_42_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_42_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_42_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_43_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_43_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_43_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_43_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_43_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_44_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_44_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_44_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_44_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_44_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_45_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_45_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_45_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_45_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_45_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_46_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_46_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_46_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_46_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_46_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_47_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_47_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_47_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_47_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_47_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_48_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_48_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_48_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_48_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_48_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_49_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_49_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_49_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_49_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_49_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_EnrollmentID_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_4_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_4_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_4_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_4_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_4_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_50_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_50_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_50_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_50_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_50_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_51_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_51_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_51_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_51_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_51_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_52_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_52_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_52_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_52_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_52_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_53_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_53_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_53_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_53_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_53_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_54_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_54_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_54_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_54_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_54_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_55_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_55_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_55_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_55_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_55_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_56_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_56_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_56_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_56_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_56_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_57_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_57_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_57_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_57_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_57_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_58_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_58_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_58_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_58_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_58_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_59_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_59_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_59_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_59_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_59_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_EnrollmentID_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_5_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_5_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_5_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_5_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_5_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_60_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_60_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_60_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_60_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_60_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_61_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_61_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_61_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_61_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_61_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_62_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_62_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_62_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_62_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_62_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_63_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_63_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_63_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_63_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_63_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_64_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_64_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_64_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_64_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_64_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_65_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_65_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_65_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_65_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_65_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_66_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_66_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_66_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_66_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_66_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_67_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_67_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_67_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_67_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_67_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_68_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_68_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_68_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_68_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_68_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_69_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_69_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_69_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_69_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_69_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_EnrollmentID_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_6_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_6_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_6_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_6_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_6_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_70_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_70_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_70_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_70_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_70_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_EnrollmentID_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_7_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_7_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_7_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_7_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_7_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_EnrollmentID_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_8_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_8_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_8_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_8_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_8_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateCreated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_EnrollmentID_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EntryDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_EntryDate_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EntryDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_EntryDate_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EntryDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_EntryDate_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EntryDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_EntryDate_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_EntryDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EntryDate_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_EntryDate_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ExportID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ExportID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ExportID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ExportID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ExportID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_LivingSituation_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_LivingSituation_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_LivingSituation_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_LivingSituation_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_LivingSituation_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_LivingSituation_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_LivingSituation_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_LivingSituation_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_LivingSituation_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_LivingSituation_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_LivingSituation_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_PersonalID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_HouseholdID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ProjectID_HouseholdID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ProjectID_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ProjectID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ProjectID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ProjectID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_ProjectID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_ProjectID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_ProjectID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_RelationshipToHoH_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022enrollments_3328 ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_9_RelationshipToHoH_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_9_importer_log_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_9_pkey; + + +-- +-- Name: hmis_2022_enrollments_partitioned_9_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_enrollments_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_enrollments_partitioned_9_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx10; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx10"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx11; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx11"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx12; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx12"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx13; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx13"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx14; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx14"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx15; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx15"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx16; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx16"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx17; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx17"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx18; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx18"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx19; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx19"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx20; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx20"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx21; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx21"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx22; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx22"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx23; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx23"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx24; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx24"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx25; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx25"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx26; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx26"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx27; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx27"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx28; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx28"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx29; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx29"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx30; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx30"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx31; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx31"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx32; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx32"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx33; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx33"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx34; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx34"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx35; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx35"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx36; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx36"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx37; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx37"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx38; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx38"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx39; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx39"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx40; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx40"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx41; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx41"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx42; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx42"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx43; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx43"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx44; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx44"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx45; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx45"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx46; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx46"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx47; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx47"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx48; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx48"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx49; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx49"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx50; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx50"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx51; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx51"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx52; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx52"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx53; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx53"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx54; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx54"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx55; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx55"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx56; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx56"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx57; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx57"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx58; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx58"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx59; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx59"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx60; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx60"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx61; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx61"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx62; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx62"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx63; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx63"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx64; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx64"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx65; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx65"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx66; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx66"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx67; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx67"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx68; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx68"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx69; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx69"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx70; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx70"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx71; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx71"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx72; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx72"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx73; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx73"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx74; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx74"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx75; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx75"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx76; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx76"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx77; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx77"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx78; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx78"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx79; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx79"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx80; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx80"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx81; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx81"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx82; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx82"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx83; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx83"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx84; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx84"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx85; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx85"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx86; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx86"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx87; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx87"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx88; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx88"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx89; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx89"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx90; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx90"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx91; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx91"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx92; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx92"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx93; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx93"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx94; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx94"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx95; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx95"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx96; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx96"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx97; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx97"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx98; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx98"; + + +-- +-- Name: hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx99; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx99"; + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx5"; + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx6"; + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx7"; + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx8"; + + +-- +-- Name: hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_enrollments_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_enrollments_partitioned__EnrollmentID_PersonalID_idx9"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_PersonalID_impo_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_EnrollmentID_PersonalID_impo_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_PersonalID_impor_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_EnrollmentID_PersonalID_impor_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_0_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_0_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_0_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_0_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_0_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_0_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_0_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_10_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_10_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_10_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_10_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_10_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_10_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_10_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_11_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_11_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_11_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_11_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_11_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_11_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_11_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_12_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_12_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_12_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_12_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_12_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_12_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_12_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_13_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_13_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_13_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_13_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_13_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_13_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_13_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_14_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_14_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_14_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_14_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_14_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_14_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_14_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_15_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_15_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_15_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_15_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_15_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_15_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_15_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_16_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_16_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_16_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_16_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_16_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_16_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_16_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_17_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_17_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_17_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_17_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_17_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_17_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_17_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_18_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_18_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_18_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_18_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_18_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_18_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_18_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_19_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_19_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_19_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_19_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_19_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_19_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_19_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx6"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx7"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx8"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impo_idx9"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impor_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_PersonalID_impor_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_1_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_1_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_1_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_1_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_1_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_1_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_1_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_20_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_20_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_20_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_20_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_20_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_20_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_20_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_21_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_21_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_21_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_21_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_21_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_21_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_21_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_22_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_22_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_22_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_22_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_22_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_22_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_22_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_23_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_23_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_23_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_23_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_23_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_23_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_23_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_24_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_24_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_24_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_24_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_24_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_24_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_24_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_25_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_25_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_25_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_25_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_25_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_25_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_25_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_26_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_26_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_26_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_26_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_26_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_26_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_26_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_27_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_27_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_27_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_27_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_27_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_27_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_27_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_28_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_28_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_28_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_28_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_28_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_28_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_28_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_29_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_29_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_29_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_29_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_29_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_29_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_29_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx6"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx7"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx8"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impo_idx9"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impor_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_PersonalID_impor_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_2_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_2_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_2_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_2_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_2_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_2_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_2_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_30_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_30_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_30_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_30_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_30_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_30_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_30_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_31_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_31_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_31_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_31_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_31_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_31_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_31_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_32_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_32_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_32_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_32_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_32_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_32_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_32_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_33_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_33_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_33_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_33_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_33_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_33_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_33_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_34_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_34_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_34_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_34_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_34_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_34_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_34_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_35_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_35_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_35_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_35_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_35_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_35_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_35_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_36_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_36_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_36_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_36_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_36_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_36_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_36_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_37_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_37_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_37_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_37_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_37_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_37_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_37_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_38_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_38_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_38_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_38_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_38_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_38_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_38_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_39_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_39_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_39_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_39_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_39_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_39_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_39_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx6"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx7"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx8"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impo_idx9"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impor_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_PersonalID_impor_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_3_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_3_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_3_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_3_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_3_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_3_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_3_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_40_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_40_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_40_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_40_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_40_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_40_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_40_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_41_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_41_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_41_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_41_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_41_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_41_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_41_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_42_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_42_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_42_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_42_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_42_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_42_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_42_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_43_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_43_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_43_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_43_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_43_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_43_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_43_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_44_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_44_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_44_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_44_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_44_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_44_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_44_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_45_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_45_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_45_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_45_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_45_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_45_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_45_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_46_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_46_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_46_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_46_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_46_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_46_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_46_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_47_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_47_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_47_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_47_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_47_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_47_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_47_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_48_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_48_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_48_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_48_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_48_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_48_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_48_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_49_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_49_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_49_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_49_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_49_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_49_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_49_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx6"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx7"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx8"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impo_idx9"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impor_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_PersonalID_impor_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_4_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_4_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_4_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_4_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_4_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_4_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_4_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_50_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_50_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_50_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_50_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_50_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_50_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_50_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_51_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_51_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_51_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_51_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_51_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_51_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_51_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_52_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_52_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_52_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_52_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_52_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_52_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_52_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_53_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_53_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_53_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_53_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_53_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_53_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_53_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_54_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_54_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_54_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_54_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_54_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_54_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_54_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_55_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_55_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_55_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_55_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_55_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_55_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_55_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_56_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_56_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_56_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_56_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_56_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_56_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_56_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_57_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_57_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_57_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_57_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_57_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_57_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_57_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_58_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_58_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_58_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_58_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_58_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_58_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_58_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_59_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_59_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_59_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_59_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_59_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_59_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_59_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx6"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx7"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx8"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impo_idx9"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impor_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_PersonalID_impor_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_5_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_5_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_5_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_5_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_5_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_5_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_5_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_60_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExportID_idx1"; -- --- Name: CustomClientAssessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_60_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CustomClientAssessments_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExportID_idx2"; -- --- Name: CustomClientAssessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_60_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CustomClientAssessments_id_seq" OWNED BY public."CustomClientAssessments".id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExportID_idx3"; -- --- Name: CustomClientContactPoint_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_60_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CustomClientContactPoint_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_ExportID_idx4"; -- --- Name: CustomClientContactPoint_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_60_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CustomClientContactPoint_id_seq" OWNED BY public."CustomClientContactPoint".id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_PersonalID_idx"; -- --- Name: CustomClientName_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_60_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CustomClientName_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_PersonalID_idx1"; -- --- Name: CustomClientName_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_60_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CustomClientName_id_seq" OWNED BY public."CustomClientName".id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_PersonalID_idx2"; -- --- Name: CustomDataElementDefinitions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_60_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CustomDataElementDefinitions_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_PersonalID_idx3"; -- --- Name: CustomDataElementDefinitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_60_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CustomDataElementDefinitions_id_seq" OWNED BY public."CustomDataElementDefinitions".id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_60_PersonalID_idx4"; -- --- Name: CustomDataElements_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_60_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CustomDataElements_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_60_importer_log_id_idx; -- --- Name: CustomDataElements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_60_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CustomDataElements_id_seq" OWNED BY public."CustomDataElements".id; +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_60_pkey; -- --- Name: CustomProjectAssessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_60_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public."CustomProjectAssessments" ( - id bigint NOT NULL, - "CustomProjectAssessmentID" character varying NOT NULL, - "ProjectID" character varying NOT NULL, - "UserID" character varying(32) NOT NULL, - "InformationDate" date NOT NULL, - data_source_id integer, - "DateCreated" timestamp without time zone NOT NULL, - "DateUpdated" timestamp without time zone NOT NULL, - "DateDeleted" timestamp without time zone -); +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_60_source_type_source_id_idx; -- --- Name: CustomProjectAssessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CustomProjectAssessments_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateCreated_idx"; -- --- Name: CustomProjectAssessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CustomProjectAssessments_id_seq" OWNED BY public."CustomProjectAssessments".id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateCreated_idx1"; -- --- Name: CustomServiceCategories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CustomServiceCategories_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateCreated_idx2"; -- --- Name: CustomServiceCategories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CustomServiceCategories_id_seq" OWNED BY public."CustomServiceCategories".id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateCreated_idx3"; -- --- Name: CustomServiceTypes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CustomServiceTypes_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateCreated_idx4"; -- --- Name: CustomServiceTypes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CustomServiceTypes_id_seq" OWNED BY public."CustomServiceTypes".id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateDeleted_idx"; -- --- Name: CustomServices_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."CustomServices_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateDeleted_idx1"; -- --- Name: CustomServices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."CustomServices_id_seq" OWNED BY public."CustomServices".id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateDeleted_idx2"; -- --- Name: Disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."Disabilities_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateDeleted_idx3"; -- --- Name: Disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."Disabilities_id_seq" OWNED BY public."Disabilities".id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateDeleted_idx4"; -- --- Name: EmploymentEducation_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."EmploymentEducation_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateUpdated_idx"; -- --- Name: EmploymentEducation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."EmploymentEducation_id_seq" OWNED BY public."EmploymentEducation".id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateUpdated_idx1"; -- --- Name: EnrollmentCoC_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."EnrollmentCoC_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateUpdated_idx2"; -- --- Name: EnrollmentCoC_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."EnrollmentCoC_id_seq" OWNED BY public."EnrollmentCoC".id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateUpdated_idx3"; -- --- Name: Enrollment_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."Enrollment_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_DateUpdated_idx4"; -- --- Name: Enrollment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."Enrollment_id_seq" OWNED BY public."Enrollment".id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_EnrollmentID_idx"; -- --- Name: Event_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."Event_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_EnrollmentID_idx1"; -- --- Name: Event_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."Event_id_seq" OWNED BY public."Event".id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_EnrollmentID_idx2"; -- --- Name: Exit_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."Exit_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_EnrollmentID_idx3"; -- --- Name: Exit_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."Exit_id_seq" OWNED BY public."Exit".id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_EnrollmentID_idx4"; -- --- Name: Export_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."Export_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExitDate_idx"; -- --- Name: Export_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."Export_id_seq" OWNED BY public."Export".id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExitDate_idx1"; -- --- Name: Funder_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."Funder_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExitDate_idx2"; -- --- Name: Funder_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."Funder_id_seq" OWNED BY public."Funder".id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExitDate_idx3"; -- --- Name: Geography; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public."Geography" ( - "GeographyID" character varying, - "ProjectID" character varying, - "CoCCode" character varying(50), - "PrincipalSite" integer, - "Geocode" character varying(50), - "Address1" character varying, - "City" character varying, - "State" character varying(2), - "ZIP" character varying(10), - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying(100), - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer, - id integer NOT NULL, - "InformationDate" date, - "Address2" character varying, - "GeographyType" integer, - source_hash character varying, - geocode_override character varying(6), - geography_type_override integer, - information_date_override date, - pending_date_deleted timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExitDate_idx4"; -- --- Name: Geography_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."Geography_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExitDate_idx5"; -- --- Name: Geography_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."Geography_id_seq" OWNED BY public."Geography".id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExitID_data_source_id_idx"; -- --- Name: HMISParticipation_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."HMISParticipation_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExitID_idx"; -- --- Name: HMISParticipation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."HMISParticipation_id_seq" OWNED BY public."HMISParticipation".id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExitID_idx1"; -- --- Name: HealthAndDV_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."HealthAndDV_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExitID_idx2"; -- --- Name: HealthAndDV_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."HealthAndDV_id_seq" OWNED BY public."HealthAndDV".id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExitID_idx3"; -- --- Name: IncomeBenefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."IncomeBenefits_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExitID_idx4"; -- --- Name: IncomeBenefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."IncomeBenefits_id_seq" OWNED BY public."IncomeBenefits".id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExportID_idx"; -- --- Name: Inventory_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."Inventory_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExportID_idx1"; -- --- Name: Inventory_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."Inventory_id_seq" OWNED BY public."Inventory".id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExportID_idx2"; -- --- Name: Organization_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."Organization_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExportID_idx3"; -- --- Name: Organization_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."Organization_id_seq" OWNED BY public."Organization".id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_ExportID_idx4"; -- --- Name: ProjectCoC_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."ProjectCoC_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_PersonalID_idx"; -- --- Name: ProjectCoC_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."ProjectCoC_id_seq" OWNED BY public."ProjectCoC".id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_PersonalID_idx1"; -- --- Name: Project_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."Project_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_PersonalID_idx2"; -- --- Name: Project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."Project_id_seq" OWNED BY public."Project".id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_PersonalID_idx3"; -- --- Name: Services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."Services_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_61_PersonalID_idx4"; -- --- Name: Services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."Services_id_seq" OWNED BY public."Services".id; +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_61_importer_log_id_idx; -- --- Name: Site; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public."Site" AS - SELECT "GeographyID", - "ProjectID", - "CoCCode", - "PrincipalSite", - "Geocode", - "Address1", - "City", - "State", - "ZIP", - "DateCreated", - "DateUpdated", - "UserID", - "DateDeleted", - "ExportID", - data_source_id, - id, - "InformationDate", - "Address2", - "GeographyType", - source_hash - FROM public."Geography"; +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_61_pkey; -- --- Name: User_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_61_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."User_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_61_source_type_source_id_idx; -- --- Name: User_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."User_id_seq" OWNED BY public."User".id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateCreated_idx"; -- --- Name: YouthEducationStatus_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public."YouthEducationStatus_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateCreated_idx1"; -- --- Name: YouthEducationStatus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public."YouthEducationStatus_id_seq" OWNED BY public."YouthEducationStatus".id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateCreated_idx2"; -- --- Name: ac_hmis_projects_import_attempts; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ac_hmis_projects_import_attempts ( - id bigint NOT NULL, - status character varying DEFAULT 'init'::character varying NOT NULL, - etag character varying NOT NULL, - key text NOT NULL, - result jsonb DEFAULT '{}'::jsonb NOT NULL, - attempted_at timestamp without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateCreated_idx3"; -- --- Name: COLUMN ac_hmis_projects_import_attempts.etag; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.ac_hmis_projects_import_attempts.etag IS 'fingerprint of the file'; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateCreated_idx4"; -- --- Name: COLUMN ac_hmis_projects_import_attempts.key; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.ac_hmis_projects_import_attempts.key IS 'path in an s3 bucket to the file'; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateDeleted_idx"; -- --- Name: COLUMN ac_hmis_projects_import_attempts.attempted_at; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.ac_hmis_projects_import_attempts.attempted_at IS 'last time an import was attempted'; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateDeleted_idx1"; -- --- Name: ac_hmis_projects_import_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ac_hmis_projects_import_attempts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateDeleted_idx2"; -- --- Name: ac_hmis_projects_import_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ac_hmis_projects_import_attempts_id_seq OWNED BY public.ac_hmis_projects_import_attempts.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateDeleted_idx3"; -- --- Name: ad_hoc_batches; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ad_hoc_batches ( - id integer NOT NULL, - ad_hoc_data_source_id integer, - description character varying NOT NULL, - uploaded_count integer, - matched_count integer, - started_at timestamp without time zone, - completed_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - import_errors character varying, - file character varying, - name character varying, - size character varying, - content_type character varying, - content bytea, - user_id integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateDeleted_idx4"; -- --- Name: ad_hoc_batches_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ad_hoc_batches_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateUpdated_idx"; -- --- Name: ad_hoc_batches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ad_hoc_batches_id_seq OWNED BY public.ad_hoc_batches.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateUpdated_idx1"; -- --- Name: ad_hoc_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ad_hoc_clients ( - id integer NOT NULL, - ad_hoc_data_source_id integer, - client_id integer, - matching_client_ids jsonb, - batch_id integer, - first_name character varying, - middle_name character varying, - last_name character varying, - ssn character varying, - dob date, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateUpdated_idx2"; -- --- Name: ad_hoc_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ad_hoc_clients_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateUpdated_idx3"; -- --- Name: ad_hoc_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ad_hoc_clients_id_seq OWNED BY public.ad_hoc_clients.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_DateUpdated_idx4"; -- --- Name: ad_hoc_data_sources; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ad_hoc_data_sources ( - id integer NOT NULL, - name character varying NOT NULL, - short_name character varying, - description character varying, - active boolean DEFAULT true NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - user_id bigint -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_EnrollmentID_idx"; -- --- Name: ad_hoc_data_sources_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ad_hoc_data_sources_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_EnrollmentID_idx1"; -- --- Name: ad_hoc_data_sources_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ad_hoc_data_sources_id_seq OWNED BY public.ad_hoc_data_sources.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_EnrollmentID_idx2"; -- --- Name: administrative_events; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.administrative_events ( - id integer NOT NULL, - user_id integer NOT NULL, - date date NOT NULL, - title character varying NOT NULL, - description character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_EnrollmentID_idx3"; -- --- Name: administrative_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.administrative_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_EnrollmentID_idx4"; -- --- Name: administrative_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.administrative_events_id_seq OWNED BY public.administrative_events.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExitDate_idx"; -- --- Name: anomalies; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.anomalies ( - id integer NOT NULL, - client_id integer, - submitted_by integer, - description character varying, - status character varying NOT NULL, - created_at timestamp without time zone, - updated_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExitDate_idx1"; -- --- Name: anomalies_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.anomalies_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExitDate_idx2"; -- --- Name: anomalies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.anomalies_id_seq OWNED BY public.anomalies.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExitDate_idx3"; -- --- Name: ansd_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ansd_enrollments ( - id bigint NOT NULL, - report_id bigint, - enrollment_id bigint, - project_name character varying, - project_type integer, - household_id character varying, - household_type character varying, - prior_living_situation_category character varying, - entry_date date, - move_in_date date, - exit_date date, - adjusted_exit_date date, - exit_type character varying, - destination integer, - destination_text character varying, - relationship character varying, - personal_id character varying, - age integer, - gender character varying, - primary_race character varying, - race_list character varying, - ethnicity character varying, - ce_entry_date date, - ce_referral_date date, - ce_referral_id character varying, - return_date date, - deleted_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - destination_client_id integer, - relationship_to_hoh integer, - placed_date date, - project_id bigint -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExitDate_idx4"; -- --- Name: ansd_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ansd_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExitDate_idx5"; -- --- Name: ansd_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ansd_enrollments_id_seq OWNED BY public.ansd_enrollments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExitID_data_source_id_idx"; -- --- Name: ansd_events; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ansd_events ( - id bigint NOT NULL, - enrollment_id bigint, - event_id character varying, - event_date date, - event character varying, - location character varying, - project_name character varying, - project_type character varying, - referral_result integer, - result_date date, - deleted_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - personal_id character varying, - source_enrollment_id character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExitID_idx"; -- --- Name: ansd_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ansd_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExitID_idx1"; -- --- Name: ansd_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ansd_events_id_seq OWNED BY public.ansd_events.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExitID_idx2"; -- --- Name: api_client_data_source_ids; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.api_client_data_source_ids ( - id integer NOT NULL, - warehouse_id character varying, - id_in_data_source character varying, - site_id_in_data_source integer, - data_source_id integer, - client_id integer, - last_contact date, - temporary_high_priority boolean DEFAULT false NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExitID_idx3"; -- --- Name: api_client_data_source_ids_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.api_client_data_source_ids_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExitID_idx4"; -- --- Name: api_client_data_source_ids_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.api_client_data_source_ids_id_seq OWNED BY public.api_client_data_source_ids.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExportID_idx"; -- --- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_62_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ar_internal_metadata ( - key character varying NOT NULL, - value character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_62_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_62_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_62_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_62_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_62_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_62_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_62_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_62_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_62_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_62_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_62_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_62_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_62_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_PersonalID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_63_PersonalID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_63_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_63_importer_log_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_63_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_63_pkey; + + +-- +-- Name: hmis_2022_exits_partitioned_63_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_63_source_type_source_id_idx; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateCreated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateCreated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateCreated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateCreated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateCreated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateDeleted_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateDeleted_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateDeleted_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateDeleted_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateUpdated_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateUpdated_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateUpdated_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateUpdated_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_DateUpdated_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_EnrollmentID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_EnrollmentID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_EnrollmentID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExitDate_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExitDate_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExitDate_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExitDate_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExitDate_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExitDate_idx5"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExitID_data_source_id_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExitID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExitID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExitID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExitID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExitID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExportID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExportID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExportID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExportID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_ExportID_idx4"; + + +-- +-- Name: hmis_2022_exits_partitioned_64_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_PersonalID_idx"; -- --- Name: assessment_answer_lookups; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_64_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.assessment_answer_lookups ( - id bigint NOT NULL, - assessment_question character varying, - response_code character varying, - response_text character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - data_source_id integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_PersonalID_idx1"; -- --- Name: assessment_answer_lookups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_64_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.assessment_answer_lookups_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_PersonalID_idx2"; -- --- Name: assessment_answer_lookups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_64_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.assessment_answer_lookups_id_seq OWNED BY public.assessment_answer_lookups.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_PersonalID_idx3"; -- --- Name: available_file_tags; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_64_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.available_file_tags ( - id integer NOT NULL, - name character varying, - "group" character varying, - included_info character varying, - weight integer DEFAULT 0, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - document_ready boolean DEFAULT false, - notification_trigger boolean DEFAULT false, - consent_form boolean DEFAULT false, - note character varying, - full_release boolean DEFAULT false NOT NULL, - requires_effective_date boolean DEFAULT false NOT NULL, - requires_expiration_date boolean DEFAULT false NOT NULL, - required_for character varying, - coc_available boolean DEFAULT false NOT NULL, - verified_homeless_history boolean DEFAULT false NOT NULL, - ce_self_report_certification boolean DEFAULT false NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_64_PersonalID_idx4"; -- --- Name: available_file_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_64_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.available_file_tags_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_64_importer_log_id_idx; -- --- Name: available_file_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_64_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.available_file_tags_id_seq OWNED BY public.available_file_tags.id; +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_64_pkey; -- --- Name: lookups_ethnicities; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_64_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.lookups_ethnicities ( - id bigint NOT NULL, - value integer NOT NULL, - text character varying NOT NULL -); +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_64_source_type_source_id_idx; -- --- Name: bi_lookups_ethnicities; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.bi_lookups_ethnicities AS - SELECT id, - value, - text - FROM public.lookups_ethnicities; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateCreated_idx"; -- --- Name: bo_configs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.bo_configs ( - id integer NOT NULL, - data_source_id integer, - "user" character varying, - encrypted_pass character varying, - encrypted_pass_iv character varying, - url character varying, - server character varying, - client_lookup_cuid character varying, - touch_point_lookup_cuid character varying, - subject_response_lookup_cuid character varying, - site_touch_point_map_cuid character varying, - disability_verification_cuid character varying, - disability_touch_point_id integer, - disability_touch_point_question_id integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateCreated_idx1"; -- --- Name: bo_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.bo_configs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateCreated_idx2"; -- --- Name: bo_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.bo_configs_id_seq OWNED BY public.bo_configs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateCreated_idx3"; -- --- Name: boston_project_scorecard_reports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.boston_project_scorecard_reports ( - id bigint NOT NULL, - project_id bigint, - project_group_id bigint, - status character varying DEFAULT 'pending'::character varying, - user_id bigint, - start_date date NOT NULL, - end_date date NOT NULL, - apr_id bigint, - project_type integer, - period_start_date date, - period_end_date date, - secondary_reviewer_id bigint, - started_at timestamp without time zone, - completed_at timestamp without time zone, - sent_at timestamp without time zone, - deleted_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - initial_goals_pass boolean, - initial_goals_notes character varying, - timeliness_pass boolean, - timeliness_notes character varying, - independent_living_pass boolean, - independent_living_notes character varying, - management_oversight_pass boolean, - management_oversight_notes character varying, - prioritization_pass boolean, - prioritization_notes character varying, - rrh_exits_to_ph double precision, - psh_stayers_or_to_ph double precision, - increased_stayer_employment_income double precision, - increased_stayer_other_income double precision, - increased_leaver_employment_income double precision, - increased_leaver_other_income double precision, - days_to_lease_up integer, - pii_error_rate double precision, - ude_error_rate double precision, - income_and_housing_error_rate double precision, - invoicing integer, - actual_households_served integer, - amount_agency_spent double precision, - returned_funds double precision, - average_utilization_rate double precision, - subpopulations_served jsonb, - practices_housing_first boolean, - vulnerable_subpopulations_served jsonb, - barrier_id_process boolean, - plan_to_address_barriers boolean, - contracted_budget double precision, - archive character varying, - required_match_percent_met boolean, - increased_employment_income double precision, - increased_other_income double precision, - invoicing_timeliness integer, - invoicing_accuracy integer, - no_concern integer, - materials_concern integer, - lms_completed boolean, - self_certified boolean, - days_to_lease_up_comparison integer, - comparison_apr_id bigint -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateCreated_idx4"; -- --- Name: boston_project_scorecard_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.boston_project_scorecard_reports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateDeleted_idx"; -- --- Name: boston_project_scorecard_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.boston_project_scorecard_reports_id_seq OWNED BY public.boston_project_scorecard_reports.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateDeleted_idx1"; -- --- Name: boston_report_configs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.boston_report_configs ( - id bigint NOT NULL, - total_color character varying, - breakdown_1_color_0 character varying, - breakdown_2_color_0 character varying, - breakdown_3_color_0 character varying, - breakdown_4_color_0 character varying, - breakdown_1_color_1 character varying, - breakdown_2_color_1 character varying, - breakdown_3_color_1 character varying, - breakdown_4_color_1 character varying, - breakdown_1_color_2 character varying, - breakdown_2_color_2 character varying, - breakdown_3_color_2 character varying, - breakdown_4_color_2 character varying, - breakdown_1_color_3 character varying, - breakdown_2_color_3 character varying, - breakdown_3_color_3 character varying, - breakdown_4_color_3 character varying, - breakdown_1_color_4 character varying, - breakdown_2_color_4 character varying, - breakdown_3_color_4 character varying, - breakdown_4_color_4 character varying, - breakdown_1_color_5 character varying, - breakdown_2_color_5 character varying, - breakdown_3_color_5 character varying, - breakdown_4_color_5 character varying, - breakdown_1_color_6 character varying, - breakdown_2_color_6 character varying, - breakdown_3_color_6 character varying, - breakdown_4_color_6 character varying, - breakdown_1_color_7 character varying, - breakdown_2_color_7 character varying, - breakdown_3_color_7 character varying, - breakdown_4_color_7 character varying, - breakdown_1_color_8 character varying, - breakdown_2_color_8 character varying, - breakdown_3_color_8 character varying, - breakdown_4_color_8 character varying, - breakdown_1_color_9 character varying, - breakdown_2_color_9 character varying, - breakdown_3_color_9 character varying, - breakdown_4_color_9 character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateDeleted_idx2"; -- --- Name: boston_report_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.boston_report_configs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateDeleted_idx3"; -- --- Name: boston_report_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.boston_report_configs_id_seq OWNED BY public.boston_report_configs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateDeleted_idx4"; -- --- Name: cas_availabilities; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cas_availabilities ( - id integer NOT NULL, - client_id integer NOT NULL, - available_at timestamp without time zone NOT NULL, - unavailable_at timestamp without time zone, - part_of_a_family boolean DEFAULT false NOT NULL, - age_at_available_at integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateUpdated_idx"; -- --- Name: cas_availabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cas_availabilities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateUpdated_idx1"; -- --- Name: cas_availabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cas_availabilities_id_seq OWNED BY public.cas_availabilities.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateUpdated_idx2"; -- --- Name: cas_ce_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cas_ce_assessments ( - id bigint NOT NULL, - cas_client_id bigint, - cas_non_hmis_assessment_id bigint, - hmis_client_id bigint, - program_id bigint, - assessment_date date, - assessment_location character varying, - assessment_type integer, - assessment_level integer, - assessment_status integer, - assessment_created_at timestamp without time zone, - assessment_updated_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateUpdated_idx3"; -- --- Name: cas_ce_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cas_ce_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_DateUpdated_idx4"; -- --- Name: cas_ce_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cas_ce_assessments_id_seq OWNED BY public.cas_ce_assessments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_EnrollmentID_idx"; -- --- Name: cas_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cas_enrollments ( - id integer NOT NULL, - client_id integer, - enrollment_id integer, - entry_date date, - exit_date date, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - history json -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_EnrollmentID_idx1"; -- --- Name: cas_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cas_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_EnrollmentID_idx2"; -- --- Name: cas_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cas_enrollments_id_seq OWNED BY public.cas_enrollments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_EnrollmentID_idx3"; -- --- Name: cas_houseds; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cas_houseds ( - id integer NOT NULL, - client_id integer NOT NULL, - cas_client_id integer NOT NULL, - match_id integer NOT NULL, - housed_on date NOT NULL, - inactivated boolean DEFAULT false -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_EnrollmentID_idx4"; -- --- Name: cas_houseds_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cas_houseds_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExitDate_idx"; -- --- Name: cas_houseds_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cas_houseds_id_seq OWNED BY public.cas_houseds.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExitDate_idx1"; -- --- Name: cas_non_hmis_client_histories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cas_non_hmis_client_histories ( - id integer NOT NULL, - cas_client_id integer NOT NULL, - available_on date NOT NULL, - unavailable_on date, - part_of_a_family boolean DEFAULT false NOT NULL, - age_at_available_on integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExitDate_idx2"; -- --- Name: cas_non_hmis_client_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cas_non_hmis_client_histories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExitDate_idx3"; -- --- Name: cas_non_hmis_client_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cas_non_hmis_client_histories_id_seq OWNED BY public.cas_non_hmis_client_histories.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExitDate_idx4"; -- --- Name: cas_programs_to_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cas_programs_to_projects ( - id bigint NOT NULL, - program_id bigint, - project_id bigint -); +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExitDate_idx5"; -- --- Name: cas_programs_to_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cas_programs_to_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExitID_data_source_id_idx"; -- --- Name: cas_programs_to_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cas_programs_to_projects_id_seq OWNED BY public.cas_programs_to_projects.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExitID_idx"; -- --- Name: cas_referral_events; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cas_referral_events ( - id bigint NOT NULL, - cas_client_id bigint, - hmis_client_id bigint, - program_id bigint, - client_opportunity_match_id bigint, - referral_date date, - referral_result integer, - referral_result_date date, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - event integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExitID_idx1"; -- --- Name: cas_referral_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cas_referral_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExitID_idx2"; -- --- Name: cas_referral_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cas_referral_events_id_seq OWNED BY public.cas_referral_events.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExitID_idx3"; -- --- Name: cas_reports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cas_reports ( - id integer NOT NULL, - client_id integer NOT NULL, - match_id integer NOT NULL, - decision_id integer NOT NULL, - decision_order integer NOT NULL, - match_step character varying NOT NULL, - decision_status character varying NOT NULL, - current_step boolean DEFAULT false NOT NULL, - active_match boolean DEFAULT false NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - elapsed_days integer DEFAULT 0 NOT NULL, - client_last_seen_date timestamp without time zone, - criminal_hearing_date timestamp without time zone, - decline_reason character varying, - not_working_with_client_reason character varying, - administrative_cancel_reason character varying, - client_spoken_with_services_agency boolean, - cori_release_form_submitted boolean, - match_started_at timestamp without time zone, - program_type character varying, - shelter_agency_contacts json, - hsa_contacts json, - ssp_contacts json, - admin_contacts json, - clent_contacts json, - hsp_contacts json, - program_name character varying, - sub_program_name character varying, - terminal_status character varying, - match_route character varying, - cas_client_id integer, - client_move_in_date date, - source_data_source character varying, - event_contact character varying, - event_contact_agency character varying, - vacancy_id integer, - housing_type character varying, - ineligible_in_warehouse boolean DEFAULT false NOT NULL, - actor_type character varying, - confidential boolean DEFAULT false -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExitID_idx4"; -- --- Name: cas_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cas_reports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExportID_idx"; -- --- Name: cas_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cas_reports_id_seq OWNED BY public.cas_reports.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExportID_idx1"; -- --- Name: cas_vacancies; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cas_vacancies ( - id integer NOT NULL, - program_id integer NOT NULL, - sub_program_id integer NOT NULL, - program_name character varying, - sub_program_name character varying, - program_type character varying, - route_name character varying NOT NULL, - vacancy_created_at timestamp without time zone NOT NULL, - vacancy_made_available_at timestamp without time zone, - first_matched_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExportID_idx2"; -- --- Name: cas_vacancies_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cas_vacancies_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExportID_idx3"; -- --- Name: cas_vacancies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cas_vacancies_id_seq OWNED BY public.cas_vacancies.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_ExportID_idx4"; -- --- Name: ce_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ce_assessments ( - id integer NOT NULL, - user_id integer NOT NULL, - client_id integer NOT NULL, - type character varying NOT NULL, - submitted_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - active boolean DEFAULT true, - score integer DEFAULT 0, - priority_score integer DEFAULT 0, - assessor_id integer NOT NULL, - location character varying, - client_email character varying, - military_duty boolean DEFAULT false, - under_25 boolean DEFAULT false, - over_60 boolean DEFAULT false, - lgbtq boolean DEFAULT false, - children_under_18 boolean DEFAULT false, - fleeing_dv boolean DEFAULT false, - living_outdoors boolean DEFAULT false, - urgent_health_issue boolean DEFAULT false, - location_option_1 boolean DEFAULT false, - location_option_2 boolean DEFAULT false, - location_option_3 boolean DEFAULT false, - location_option_4 boolean DEFAULT false, - location_option_5 boolean DEFAULT false, - location_option_6 boolean DEFAULT false, - location_option_other character varying, - location_option_no character varying, - homelessness integer, - substance_use integer, - mental_health integer, - health_care integer, - legal_issues integer, - income integer, - work integer, - independent_living integer, - community_involvement integer, - survival_skills integer, - barrier_no_rental_history boolean DEFAULT false, - barrier_no_income boolean DEFAULT false, - barrier_poor_credit boolean DEFAULT false, - barrier_eviction_history boolean DEFAULT false, - barrier_eviction_from_public_housing boolean DEFAULT false, - barrier_bedrooms_3 boolean DEFAULT false, - barrier_service_animal boolean DEFAULT false, - barrier_cori_issues boolean DEFAULT false, - barrier_registered_sex_offender boolean DEFAULT false, - barrier_other character varying, - preferences_studio boolean DEFAULT false, - preferences_roomate boolean DEFAULT false, - preferences_pets boolean DEFAULT false, - preferences_accessible boolean DEFAULT false, - preferences_quiet boolean DEFAULT false, - preferences_public_transport boolean DEFAULT false, - preferences_parks boolean DEFAULT false, - preferences_other character varying, - assessor_rating integer, - homeless_six_months boolean DEFAULT false, - mortality_hospitilization_3 boolean DEFAULT false, - mortality_emergency_room_3 boolean DEFAULT false, - mortality_over_60 boolean DEFAULT false, - mortality_cirrhosis boolean DEFAULT false, - mortality_renal_disease boolean DEFAULT false, - mortality_frostbite boolean DEFAULT false, - mortality_hiv boolean DEFAULT false, - mortality_tri_morbid boolean DEFAULT false, - lacks_access_to_shelter boolean DEFAULT false, - high_potential_for_vicitimization boolean DEFAULT false, - danger_of_harm boolean DEFAULT false, - acute_medical_condition boolean DEFAULT false, - acute_psychiatric_condition boolean DEFAULT false, - acute_substance_abuse boolean DEFAULT false, - location_no_preference boolean, - vulnerability_score integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_PersonalID_idx"; -- --- Name: ce_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ce_assessments_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_PersonalID_idx1"; -- --- Name: ce_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ce_assessments_id_seq OWNED BY public.ce_assessments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_PersonalID_idx2"; -- --- Name: ce_performance_ce_aprs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ce_performance_ce_aprs ( - id bigint NOT NULL, - report_id bigint NOT NULL, - ce_apr_id bigint NOT NULL, - start_date date, - end_date date, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_PersonalID_idx3"; -- --- Name: ce_performance_ce_aprs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ce_performance_ce_aprs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_65_PersonalID_idx4"; -- --- Name: ce_performance_ce_aprs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ce_performance_ce_aprs_id_seq OWNED BY public.ce_performance_ce_aprs.id; +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_65_importer_log_id_idx; -- --- Name: ce_performance_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ce_performance_clients ( - id bigint NOT NULL, - client_id bigint, - report_id bigint, - ce_apr_id bigint, - first_name character varying, - last_name character varying, - reporting_age integer, - head_of_household boolean, - prior_living_situation integer, - los_under_threshold integer, - previous_street_essh integer, - prevention_tool_score integer, - assessment_score integer, - events jsonb, - assessments jsonb, - diversion_event boolean, - diversion_successful boolean, - veteran boolean, - household_size integer, - household_ages jsonb, - chronically_homeless_at_entry boolean, - entry_date date, - exit_date date, - initial_assessment_date date, - latest_assessment_date date, - initial_housing_referral_date date, - housing_enrollment_entry_date date, - housing_enrollment_move_in_date date, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - ce_apr_client_id integer, - dob date, - move_in_date date, - period character varying, - household_type character varying, - days_before_assessment integer, - days_on_list integer, - days_in_project integer, - days_between_referral_and_housing integer, - q5a_b1 boolean DEFAULT false, - deleted_at timestamp without time zone, - assessment_type character varying, - days_between_entry_and_initial_referral integer, - cls_literally_homeless boolean DEFAULT false NOT NULL, - vispdat_type character varying, - vispdat_range character varying, - prioritization_tool_type character varying, - prioritization_tool_score integer, - community character varying, - lgbtq_household_members boolean DEFAULT false NOT NULL, - client_lgbtq boolean DEFAULT false NOT NULL, - dv_survivor boolean DEFAULT false NOT NULL, - destination_client_id integer -); +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_65_pkey; -- --- Name: ce_performance_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_65_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ce_performance_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_65_source_type_source_id_idx; -- --- Name: ce_performance_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ce_performance_clients_id_seq OWNED BY public.ce_performance_clients.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateCreated_idx"; -- --- Name: ce_performance_goals; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ce_performance_goals ( - id bigint NOT NULL, - coc_code character varying NOT NULL, - screening integer DEFAULT 100 NOT NULL, - diversion integer DEFAULT 5 NOT NULL, - time_in_ce integer DEFAULT 30 NOT NULL, - time_to_referral integer DEFAULT 5 NOT NULL, - time_to_housing integer DEFAULT 5 NOT NULL, - time_on_list integer DEFAULT 30 NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateCreated_idx1"; -- --- Name: ce_performance_goals_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ce_performance_goals_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateCreated_idx2"; -- --- Name: ce_performance_goals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ce_performance_goals_id_seq OWNED BY public.ce_performance_goals.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateCreated_idx3"; -- --- Name: ce_performance_results; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ce_performance_results ( - id bigint NOT NULL, - report_id bigint, - value double precision, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - type character varying, - period character varying, - numerator integer, - denominator integer, - deleted_at timestamp without time zone, - event_type integer, - goal integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateCreated_idx4"; -- --- Name: ce_performance_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ce_performance_results_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateDeleted_idx"; -- --- Name: ce_performance_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ce_performance_results_id_seq OWNED BY public.ce_performance_results.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateDeleted_idx1"; -- --- Name: census_by_project_types; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.census_by_project_types ( - id integer NOT NULL, - "ProjectType" integer NOT NULL, - date date NOT NULL, - veteran boolean DEFAULT false NOT NULL, - gender integer DEFAULT 99 NOT NULL, - client_count integer DEFAULT 0 NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateDeleted_idx2"; -- --- Name: census_by_project_types_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.census_by_project_types_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateDeleted_idx3"; -- --- Name: census_by_project_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.census_by_project_types_id_seq OWNED BY public.census_by_project_types.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateDeleted_idx4"; -- --- Name: census_groups; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.census_groups ( - id bigint NOT NULL, - year integer NOT NULL, - dataset character varying NOT NULL, - name character varying NOT NULL, - description text NOT NULL, - created_on date -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateUpdated_idx"; -- --- Name: census_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.census_groups_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateUpdated_idx1"; -- --- Name: census_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.census_groups_id_seq OWNED BY public.census_groups.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateUpdated_idx2"; -- --- Name: census_values; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.census_values ( - id bigint NOT NULL, - census_variable_id bigint NOT NULL, - value numeric NOT NULL, - full_geoid character varying NOT NULL, - created_on date NOT NULL, - census_level public.census_levels NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateUpdated_idx3"; -- --- Name: census_variables; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.census_variables ( - id bigint NOT NULL, - year integer NOT NULL, - downloaded boolean DEFAULT false NOT NULL, - dataset character varying NOT NULL, - name character varying NOT NULL, - label text NOT NULL, - concept text NOT NULL, - census_group character varying NOT NULL, - census_attributes character varying NOT NULL, - internal_name character varying, - created_on date NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_DateUpdated_idx4"; -- --- Name: shape_cocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.shape_cocs ( - id bigint NOT NULL, - st character varying, - state_name character varying, - cocnum character varying, - cocname character varying, - ard numeric, - pprn numeric, - fprn numeric, - fprn_statu character varying, - es_c_hwac numeric, - es_c_hwoa_ numeric, - es_c_hwoc numeric, - es_vso_tot numeric, - th_c_hwac_ numeric, - th_c_hwoa numeric, - th_c_hwoc numeric, - th_c_vet numeric, - rrh_c_hwac numeric, - rrh_c_hwoa numeric, - rrh_c_hwoc numeric, - rrh_c_vet numeric, - psh_c_hwac numeric, - psh_c_hwoa numeric, - psh_c_hwoc numeric, - psh_c_vet numeric, - psh_c_ch numeric, - psh_u_hwac character varying, - psh_u_hwoa character varying, - psh_u_hwoc character varying, - psh_u_vet character varying, - psh_u_ch character varying, - sh_c_hwoa numeric, - sh_c_vet numeric, - sh_pers_hw numeric, - unsh_pers_ numeric, - sh_pers__1 numeric, - unsh_pers1 numeric, - sh_pers__2 numeric, - unsh_per_1 numeric, - sh_ch numeric, - unsh_ch numeric, - sh_youth_u numeric, - unsh_youth numeric, - sh_vets numeric, - unsh_vets numeric, - shape_leng numeric, - shape_area numeric, - geom public.geometry(MultiPolygon,4326), - simplified_geom public.geometry(MultiPolygon,4326), - full_geoid character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_EnrollmentID_idx"; -- --- Name: shape_counties; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.shape_counties ( - id bigint NOT NULL, - statefp character varying, - countyfp character varying, - countyns character varying, - full_geoid character varying, - geoid character varying, - name character varying, - namelsad character varying, - lsad character varying, - classfp character varying, - mtfcc character varying, - csafp character varying, - cbsafp character varying, - metdivfp character varying, - funcstat character varying, - aland double precision, - awater double precision, - intptlat character varying, - intptlon character varying, - simplified_geom public.geometry(MultiPolygon,4326), - geom public.geometry(MultiPolygon,4326) -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_EnrollmentID_idx1"; -- --- Name: shape_states; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.shape_states ( - id bigint NOT NULL, - region character varying, - division character varying, - statefp character varying, - statens character varying, - full_geoid character varying, - geoid character varying, - stusps character varying, - name character varying, - lsad character varying, - mtfcc character varying, - funcstat character varying, - aland double precision, - awater double precision, - intptlat character varying, - intptlon character varying, - simplified_geom public.geometry(MultiPolygon,4326), - geom public.geometry(MultiPolygon,4326) -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_EnrollmentID_idx2"; -- --- Name: shape_zip_codes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.shape_zip_codes ( - id bigint NOT NULL, - zcta5ce10 character varying(5), - geoid10 character varying(5), - classfp10 character varying(2), - mtfcc10 character varying(5), - funcstat10 character varying(1), - aland10 double precision, - awater10 double precision, - intptlat10 character varying(11), - intptlon10 character varying(12), - geom public.geometry(MultiPolygon,4326), - simplified_geom public.geometry(MultiPolygon,4326), - full_geoid character varying, - st_geoid character varying, - county_name_lower character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_EnrollmentID_idx3"; -- --- Name: census_reviews; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.census_reviews AS - WITH locs AS ( - SELECT shape_cocs.cocname AS name, - shape_cocs.full_geoid - FROM public.shape_cocs - UNION ALL - SELECT shape_zip_codes.zcta5ce10 AS name, - shape_zip_codes.full_geoid - FROM public.shape_zip_codes - UNION ALL - SELECT shape_counties.name, - shape_counties.full_geoid - FROM public.shape_counties - UNION ALL - SELECT shape_states.name, - shape_states.full_geoid - FROM public.shape_states - ) - SELECT locs.name AS geometry_name, - vals.census_level, - vars.internal_name, - vals.value, - vars.year, - vars.dataset, - vars.name AS variable, - vars.census_group, - g.description AS group_description, - vals.id, - locs.full_geoid - FROM (((locs - LEFT JOIN public.census_values vals ON (((locs.full_geoid)::text = (vals.full_geoid)::text))) - LEFT JOIN public.census_variables vars ON (((vals.census_variable_id = vars.id) AND (vars.internal_name IS NOT NULL)))) - LEFT JOIN public.census_groups g ON ((((vars.census_group)::text = (g.name)::text) AND (vars.year = g.year) AND ((vars.dataset)::text = (g.dataset)::text)))); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_EnrollmentID_idx4"; -- --- Name: census_values_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.census_values_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExitDate_idx"; -- --- Name: census_values_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.census_values_id_seq OWNED BY public.census_values.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExitDate_idx1"; -- --- Name: census_variables_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.census_variables_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExitDate_idx2"; -- --- Name: census_variables_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.census_variables_id_seq OWNED BY public.census_variables.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExitDate_idx3"; -- --- Name: censuses; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.censuses ( - id integer NOT NULL, - data_source_id integer NOT NULL, - "ProjectType" integer NOT NULL, - "OrganizationID" character varying NOT NULL, - "ProjectID" character varying NOT NULL, - date date NOT NULL, - veteran boolean DEFAULT false NOT NULL, - gender integer DEFAULT 99 NOT NULL, - client_count integer DEFAULT 0 NOT NULL, - bed_inventory integer DEFAULT 0 NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExitDate_idx4"; -- --- Name: censuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.censuses_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExitDate_idx5"; -- --- Name: censuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.censuses_id_seq OWNED BY public.censuses.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExitID_data_source_id_idx"; -- --- Name: ch_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ch_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExitID_idx"; -- --- Name: ch_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ch_enrollments_id_seq OWNED BY public.ch_enrollments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExitID_idx1"; -- --- Name: children; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.children ( - id integer NOT NULL, - first_name character varying, - last_name character varying, - dob date, - family_id integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExitID_idx2"; -- --- Name: children_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.children_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExitID_idx3"; -- --- Name: children_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.children_id_seq OWNED BY public.children.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExitID_idx4"; -- --- Name: chronics; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.chronics ( - id integer NOT NULL, - date date NOT NULL, - client_id integer NOT NULL, - days_in_last_three_years integer, - months_in_last_three_years integer, - individual boolean, - age integer, - homeless_since date, - dmh boolean DEFAULT false, - trigger character varying, - project_names character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExportID_idx"; -- --- Name: chronics_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.chronics_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExportID_idx1"; -- --- Name: chronics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.chronics_id_seq OWNED BY public.chronics.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExportID_idx2"; -- --- Name: clh_locations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.clh_locations ( - id bigint NOT NULL, - client_id bigint, - source_type character varying, - source_id bigint, - located_on date, - lat double precision, - lon double precision, - collected_by character varying, - processed_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - enrollment_id bigint, - located_at timestamp(6) without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExportID_idx3"; -- --- Name: clh_locations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.clh_locations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_ExportID_idx4"; -- --- Name: clh_locations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.clh_locations_id_seq OWNED BY public.clh_locations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_PersonalID_idx"; -- --- Name: client_contacts; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.client_contacts ( - id bigint NOT NULL, - client_id bigint NOT NULL, - source_type character varying NOT NULL, - source_id bigint NOT NULL, - first_name character varying, - last_name character varying, - full_name character varying, - contact_type character varying, - phone character varying, - phone_alternate character varying, - email character varying, - address character varying, - address2 character varying, - city character varying, - state character varying, - zip character varying, - note character varying, - last_modified_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_PersonalID_idx1"; -- --- Name: client_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.client_contacts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_PersonalID_idx2"; -- --- Name: client_contacts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.client_contacts_id_seq OWNED BY public.client_contacts.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_PersonalID_idx3"; -- --- Name: client_matches; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.client_matches ( - id integer NOT NULL, - source_client_id integer NOT NULL, - destination_client_id integer NOT NULL, - updated_by_id integer, - lock_version integer, - defer_count integer, - status character varying NOT NULL, - score double precision, - score_details text, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_66_PersonalID_idx4"; + -- --- Name: client_matches_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.client_matches_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_66_importer_log_id_idx; -- --- Name: client_matches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.client_matches_id_seq OWNED BY public.client_matches.id; +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_66_pkey; -- --- Name: client_merge_histories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_66_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.client_merge_histories ( - id integer NOT NULL, - merged_into integer NOT NULL, - merged_from integer NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_66_source_type_source_id_idx; -- --- Name: client_merge_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.client_merge_histories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateCreated_idx"; -- --- Name: client_merge_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.client_merge_histories_id_seq OWNED BY public.client_merge_histories.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateCreated_idx1"; -- --- Name: client_notes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.client_notes ( - id integer NOT NULL, - client_id integer NOT NULL, - user_id integer NOT NULL, - type character varying NOT NULL, - note text, - created_at timestamp without time zone, - updated_at timestamp without time zone, - deleted_at timestamp without time zone, - migrated_username character varying, - recipients jsonb, - sent_at timestamp without time zone, - alert_active boolean DEFAULT true NOT NULL, - service_id bigint, - project_id bigint -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateCreated_idx2"; -- --- Name: client_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.client_notes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateCreated_idx3"; -- --- Name: client_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.client_notes_id_seq OWNED BY public.client_notes.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateCreated_idx4"; -- --- Name: client_roi_authorizations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.client_roi_authorizations ( - id bigint NOT NULL, - destination_client_id bigint NOT NULL, - status character varying NOT NULL, - coc_codes character varying[], - starts_at date, - expires_at date -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateDeleted_idx"; -- --- Name: client_roi_authorizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.client_roi_authorizations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateDeleted_idx1"; -- --- Name: client_roi_authorizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.client_roi_authorizations_id_seq OWNED BY public.client_roi_authorizations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateDeleted_idx2"; -- --- Name: client_searchable_names; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.client_searchable_names AS - SELECT "Client".id AS client_id, - "Client".search_name_full AS full_name, - "Client".search_name_last AS last_name, - 'primary'::text AS name_type - FROM public."Client" - WHERE ("Client"."DateDeleted" IS NULL) -UNION - SELECT "Client".id AS client_id, - "CustomClientName".search_name_full AS full_name, - "CustomClientName".search_name_last AS last_name, - CASE - WHEN "CustomClientName"."primary" THEN 'primary'::text - ELSE 'secondary'::text - END AS name_type - FROM (public."CustomClientName" - JOIN public."Client" ON (((("Client"."PersonalID")::text = ("CustomClientName"."PersonalID")::text) AND ("Client".data_source_id = "CustomClientName".data_source_id)))) - WHERE ("CustomClientName"."DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateDeleted_idx3"; -- --- Name: client_split_histories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.client_split_histories ( - id integer NOT NULL, - split_into integer NOT NULL, - split_from integer NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - receive_hmis boolean, - receive_health boolean -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateDeleted_idx4"; -- --- Name: client_split_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.client_split_histories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateUpdated_idx"; -- --- Name: client_split_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.client_split_histories_id_seq OWNED BY public.client_split_histories.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateUpdated_idx1"; -- --- Name: coc_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.coc_codes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateUpdated_idx2"; -- --- Name: coc_codes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.coc_codes_id_seq OWNED BY public.coc_codes.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateUpdated_idx3"; -- --- Name: coc_pit_counts; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.coc_pit_counts ( - id bigint NOT NULL, - goal_id bigint, - pit_date date, - sheltered integer, - unsheltered integer, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_DateUpdated_idx4"; -- --- Name: coc_pit_counts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.coc_pit_counts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_EnrollmentID_idx"; -- --- Name: coc_pit_counts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.coc_pit_counts_id_seq OWNED BY public.coc_pit_counts.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_EnrollmentID_idx1"; -- --- Name: cohort_client_changes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cohort_client_changes ( - id integer NOT NULL, - cohort_client_id integer NOT NULL, - cohort_id integer NOT NULL, - user_id integer NOT NULL, - change character varying, - changed_at timestamp without time zone NOT NULL, - reason character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_EnrollmentID_idx2"; -- --- Name: cohort_client_changes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cohort_client_changes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_EnrollmentID_idx3"; -- --- Name: cohort_client_changes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cohort_client_changes_id_seq OWNED BY public.cohort_client_changes.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_EnrollmentID_idx4"; -- --- Name: cohort_client_notes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cohort_client_notes ( - id integer NOT NULL, - cohort_client_id integer NOT NULL, - note text, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - user_id integer NOT NULL, - recipients jsonb DEFAULT '[]'::jsonb -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExitDate_idx"; -- --- Name: cohort_client_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cohort_client_notes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExitDate_idx1"; -- --- Name: cohort_client_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cohort_client_notes_id_seq OWNED BY public.cohort_client_notes.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExitDate_idx2"; -- --- Name: cohort_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cohort_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExitDate_idx3"; -- --- Name: cohort_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cohort_clients_id_seq OWNED BY public.cohort_clients.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExitDate_idx4"; -- --- Name: cohort_column_options; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cohort_column_options ( - id integer NOT NULL, - cohort_column character varying NOT NULL, - weight integer, - value character varying, - active boolean DEFAULT true, - created_at timestamp without time zone, - updated_at timestamp without time zone -); +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExitDate_idx5"; -- --- Name: cohort_column_options_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cohort_column_options_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExitID_data_source_id_idx"; -- --- Name: cohort_column_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cohort_column_options_id_seq OWNED BY public.cohort_column_options.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExitID_idx"; -- --- Name: cohort_tabs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.cohort_tabs ( - id bigint NOT NULL, - cohort_id bigint NOT NULL, - name character varying, - rules jsonb, - "order" integer DEFAULT 0 NOT NULL, - permissions jsonb DEFAULT '[]'::jsonb NOT NULL, - base_scope character varying DEFAULT 'current_scope'::character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExitID_idx1"; -- --- Name: cohort_tabs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cohort_tabs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExitID_idx2"; -- --- Name: cohort_tabs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cohort_tabs_id_seq OWNED BY public.cohort_tabs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExitID_idx3"; -- --- Name: cohorts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.cohorts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExitID_idx4"; -- --- Name: cohorts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.cohorts_id_seq OWNED BY public.cohorts.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExportID_idx"; -- --- Name: combined_cohort_client_changes; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.combined_cohort_client_changes AS - SELECT cc.id, - cohort_clients.client_id, - cc.cohort_client_id, - cc.cohort_id, - cc.user_id, - cc.change AS entry_action, - cc.changed_at AS entry_date, - cc_ex.change AS exit_action, - cc_ex.changed_at AS exit_date, - cc_ex.reason - FROM (((( SELECT cohort_client_changes.id, - cohort_client_changes.cohort_client_id, - cohort_client_changes.cohort_id, - cohort_client_changes.user_id, - cohort_client_changes.change, - cohort_client_changes.changed_at, - cohort_client_changes.reason - FROM public.cohort_client_changes - WHERE ((cohort_client_changes.change)::text = ANY (ARRAY[('create'::character varying)::text, ('activate'::character varying)::text]))) cc - LEFT JOIN LATERAL ( SELECT cohort_client_changes.id, - cohort_client_changes.cohort_client_id, - cohort_client_changes.cohort_id, - cohort_client_changes.user_id, - cohort_client_changes.change, - cohort_client_changes.changed_at, - cohort_client_changes.reason - FROM public.cohort_client_changes - WHERE (((cohort_client_changes.change)::text = ANY (ARRAY[('destroy'::character varying)::text, ('deactivate'::character varying)::text])) AND (cc.cohort_client_id = cohort_client_changes.cohort_client_id) AND (cc.cohort_id = cohort_client_changes.cohort_id) AND (cc.changed_at < cohort_client_changes.changed_at)) - ORDER BY cohort_client_changes.changed_at - LIMIT 1) cc_ex ON (true)) - JOIN public.cohort_clients ON ((cc.cohort_client_id = cohort_clients.id))) - JOIN public."Client" ON (((cohort_clients.client_id = "Client".id) AND ("Client"."DateDeleted" IS NULL)))) - WHERE ((cc_ex.reason IS NULL) OR ((cc_ex.reason)::text <> 'Mistake'::text)) - ORDER BY cc.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExportID_idx1"; -- --- Name: configs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.configs ( - id integer NOT NULL, - project_type_override boolean DEFAULT true NOT NULL, - eto_api_available boolean DEFAULT false NOT NULL, - cas_available_method character varying DEFAULT 'cas_flag'::character varying NOT NULL, - healthcare_available boolean DEFAULT false NOT NULL, - family_calculation_method character varying DEFAULT 'adult_child'::character varying, - site_coc_codes character varying, - default_coc_zipcodes character varying, - continuum_name character varying, - cas_url character varying DEFAULT 'https://cas.boston.gov'::character varying, - release_duration character varying DEFAULT 'Indefinite'::character varying, - allow_partial_release boolean DEFAULT true, - cas_flag_method character varying DEFAULT 'manual'::character varying, - window_access_requires_release boolean DEFAULT false, - show_partial_ssn_in_window_search_results boolean DEFAULT false, - url_of_blank_consent_form character varying, - ahar_psh_includes_rrh boolean DEFAULT true, - so_day_as_month boolean DEFAULT true, - client_details text, - allow_multiple_file_tags boolean DEFAULT false NOT NULL, - infer_family_from_household_id boolean DEFAULT false NOT NULL, - chronic_definition character varying DEFAULT 'chronics'::character varying NOT NULL, - vispdat_prioritization_scheme character varying DEFAULT 'length_of_time'::character varying NOT NULL, - show_vispdats_on_dashboards boolean DEFAULT false, - rrh_cas_readiness boolean DEFAULT false, - cas_days_homeless_source character varying DEFAULT 'days_homeless'::character varying, - consent_visible_to_all boolean DEFAULT false, - verified_homeless_history_visible_to_all boolean DEFAULT false NOT NULL, - only_most_recent_import boolean DEFAULT false, - expose_coc_code boolean DEFAULT false NOT NULL, - auto_confirm_consent boolean DEFAULT false NOT NULL, - health_emergency character varying, - health_emergency_tracing character varying, - health_priority_age integer, - multi_coc_installation boolean DEFAULT false NOT NULL, - auto_de_duplication_accept_threshold double precision, - auto_de_duplication_reject_threshold double precision, - pii_encryption_type character varying DEFAULT 'none'::character varying, - auto_de_duplication_enabled boolean DEFAULT false NOT NULL, - request_account_available boolean DEFAULT false NOT NULL, - dashboard_lookback date DEFAULT '2014-07-01'::date, - domestic_violence_lookback_days integer DEFAULT 0 NOT NULL, - support_contact_email character varying, - completeness_goal integer DEFAULT 90, - excess_goal integer DEFAULT 105, - timeliness_goal integer DEFAULT 14, - income_increase_goal integer DEFAULT 75, - ph_destination_increase_goal integer DEFAULT 60, - move_in_date_threshold integer DEFAULT 30, - pf_universal_data_element_threshold integer DEFAULT 2 NOT NULL, - pf_utilization_min integer DEFAULT 66 NOT NULL, - pf_utilization_max integer DEFAULT 104 NOT NULL, - pf_timeliness_threshold integer DEFAULT 3 NOT NULL, - pf_show_income boolean DEFAULT false NOT NULL, - pf_show_additional_timeliness boolean DEFAULT false NOT NULL, - cas_sync_months integer DEFAULT 3, - send_sms_for_covid_reminders boolean DEFAULT false NOT NULL, - bypass_2fa_duration integer DEFAULT 0 NOT NULL, - health_claims_data_path character varying, - enable_youth_hrp boolean DEFAULT true NOT NULL, - enable_system_cohorts boolean DEFAULT false, - currently_homeless_cohort boolean DEFAULT false, - show_client_last_seen_info_in_client_details boolean DEFAULT true, - ineligible_uses_extrapolated_days boolean DEFAULT true NOT NULL, - warehouse_client_name_order character varying DEFAULT 'earliest'::character varying NOT NULL, - cas_calculator character varying DEFAULT 'GrdaWarehouse::CasProjectClientCalculator::Default'::character varying NOT NULL, - service_register_visible boolean DEFAULT false NOT NULL, - enable_youth_unstably_housed boolean DEFAULT true, - veteran_cohort boolean DEFAULT false NOT NULL, - youth_cohort boolean DEFAULT false NOT NULL, - chronic_cohort boolean DEFAULT false NOT NULL, - adult_and_child_cohort boolean DEFAULT false NOT NULL, - adult_only_cohort boolean DEFAULT false NOT NULL, - youth_no_child_cohort boolean DEFAULT false NOT NULL, - youth_and_child_cohort boolean DEFAULT false NOT NULL, - cas_sync_project_group_id integer, - majority_sheltered_calculation character varying DEFAULT 'current_living_situation'::character varying, - system_cohort_processing_date date, - system_cohort_date_window integer DEFAULT 1, - roi_model character varying DEFAULT 'explicit'::character varying, - client_dashboard character varying DEFAULT 'default'::character varying NOT NULL, - require_service_for_reporting_default boolean DEFAULT true NOT NULL, - supplemental_enrollment_importer character varying DEFAULT 'GrdaWarehouse::Tasks::EnrollmentExtrasImport'::character varying, - verified_homeless_history_method character varying DEFAULT 'visible_in_window'::character varying, - youth_hoh_cohort boolean DEFAULT false NOT NULL, - youth_hoh_cohort_project_group_id integer, - chronic_tab_justifications boolean DEFAULT true, - chronic_tab_roi boolean, - filter_date_span_years integer DEFAULT 1 NOT NULL, - include_pii_in_detail_downloads boolean DEFAULT true, - self_report_start_date date, - chronic_adult_only_cohort boolean DEFAULT false, - enable_auto_deduplication boolean DEFAULT true, - number_lms_courses_required integer DEFAULT '-1'::integer, - rds_s3_integration_role_arn character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExportID_idx2"; -- --- Name: configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.configs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExportID_idx3"; -- --- Name: configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.configs_id_seq OWNED BY public.configs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_ExportID_idx4"; -- --- Name: contacts; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.contacts ( - id integer NOT NULL, - type character varying NOT NULL, - entity_id integer NOT NULL, - email character varying NOT NULL, - first_name character varying, - last_name character varying, - deleted_at timestamp without time zone, - created_at timestamp without time zone, - updated_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_PersonalID_idx"; -- --- Name: contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.contacts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_PersonalID_idx1"; -- --- Name: contacts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.contacts_id_seq OWNED BY public.contacts.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_PersonalID_idx2"; -- --- Name: csg_engage_agencies; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.csg_engage_agencies ( - id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - name character varying, - csg_engage_agency_id integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_PersonalID_idx3"; -- --- Name: csg_engage_agencies_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.csg_engage_agencies_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_67_PersonalID_idx4"; -- --- Name: csg_engage_agencies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.csg_engage_agencies_id_seq OWNED BY public.csg_engage_agencies.id; +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_67_importer_log_id_idx; -- --- Name: csg_engage_program_mappings; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.csg_engage_program_mappings ( - id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - project_id bigint, - clarity_name character varying, - include_in_export boolean DEFAULT true NOT NULL, - program_id bigint -); +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_67_pkey; -- --- Name: csg_engage_program_mappings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_67_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.csg_engage_program_mappings_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_67_source_type_source_id_idx; -- --- Name: csg_engage_program_mappings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.csg_engage_program_mappings_id_seq OWNED BY public.csg_engage_program_mappings.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateCreated_idx"; -- --- Name: csg_engage_program_reports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.csg_engage_program_reports ( - id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - report_id bigint, - raw_result character varying, - json_result jsonb, - error_data jsonb, - warning_data jsonb, - started_at timestamp without time zone, - completed_at timestamp without time zone, - failed_at timestamp without time zone, - imported_program_name character varying, - imported_import_keyword character varying, - cleared_at character varying, - program_id bigint -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateCreated_idx1"; -- --- Name: csg_engage_program_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.csg_engage_program_reports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateCreated_idx2"; -- --- Name: csg_engage_program_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.csg_engage_program_reports_id_seq OWNED BY public.csg_engage_program_reports.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateCreated_idx3"; -- --- Name: csg_engage_programs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.csg_engage_programs ( - id bigint NOT NULL, - agency_id bigint, - csg_engage_name character varying NOT NULL, - csg_engage_import_keyword character varying NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateCreated_idx4"; -- --- Name: csg_engage_programs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.csg_engage_programs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateDeleted_idx"; -- --- Name: csg_engage_programs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.csg_engage_programs_id_seq OWNED BY public.csg_engage_programs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateDeleted_idx1"; -- --- Name: csg_engage_reports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.csg_engage_reports ( - id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - started_at timestamp without time zone, - completed_at timestamp without time zone, - failed_at timestamp without time zone, - project_ids character varying[] DEFAULT '{}'::character varying[] NOT NULL, - agency_id bigint -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateDeleted_idx2"; -- --- Name: csg_engage_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.csg_engage_reports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateDeleted_idx3"; -- --- Name: csg_engage_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.csg_engage_reports_id_seq OWNED BY public.csg_engage_reports.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateDeleted_idx4"; -- --- Name: custom_imports_b_al_rows; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.custom_imports_b_al_rows ( - id bigint NOT NULL, - import_file_id bigint, - data_source_id bigint, - assessment_question character varying, - response_code character varying, - response_text character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateUpdated_idx"; -- --- Name: custom_imports_b_al_rows_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.custom_imports_b_al_rows_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateUpdated_idx1"; -- --- Name: custom_imports_b_al_rows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.custom_imports_b_al_rows_id_seq OWNED BY public.custom_imports_b_al_rows.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateUpdated_idx2"; -- --- Name: custom_imports_b_contacts_rows; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.custom_imports_b_contacts_rows ( - id bigint NOT NULL, - import_file_id bigint, - data_source_id bigint, - row_number integer NOT NULL, - personal_id character varying NOT NULL, - unique_id character varying, - agency_id character varying NOT NULL, - contact_name character varying, - contact_type character varying, - phone character varying, - phone_alternate character varying, - email character varying, - note character varying, - private character varying, - contact_created_at timestamp without time zone, - contact_updated_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateUpdated_idx3"; -- --- Name: custom_imports_b_contacts_rows_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.custom_imports_b_contacts_rows_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_DateUpdated_idx4"; -- --- Name: custom_imports_b_contacts_rows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.custom_imports_b_contacts_rows_id_seq OWNED BY public.custom_imports_b_contacts_rows.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_EnrollmentID_idx"; -- --- Name: custom_imports_b_coo_rows; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.custom_imports_b_coo_rows ( - id bigint NOT NULL, - unique_id character varying NOT NULL, - personal_id character varying, - enrollment_id character varying, - city character varying, - state character varying, - zip_code character varying, - length_of_time character varying, - geolocation_location character varying, - collected_on date, - import_file_id bigint, - data_source_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - dirty boolean DEFAULT false -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_EnrollmentID_idx1"; -- --- Name: custom_imports_b_coo_rows_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.custom_imports_b_coo_rows_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_EnrollmentID_idx2"; -- --- Name: custom_imports_b_coo_rows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.custom_imports_b_coo_rows_id_seq OWNED BY public.custom_imports_b_coo_rows.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_EnrollmentID_idx3"; -- --- Name: custom_imports_b_services_rows; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.custom_imports_b_services_rows ( - id bigint NOT NULL, - import_file_id bigint, - data_source_id bigint, - row_number integer NOT NULL, - personal_id character varying NOT NULL, - unique_id character varying, - agency_id character varying NOT NULL, - enrollment_id character varying, - service_id character varying, - date date, - service_name character varying, - service_category character varying, - service_item character varying, - service_program_usage character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - reporting_period_started_on date, - reporting_period_ended_on date -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_EnrollmentID_idx4"; -- --- Name: custom_imports_b_services_rows_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.custom_imports_b_services_rows_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExitDate_idx"; -- --- Name: custom_imports_b_services_rows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.custom_imports_b_services_rows_id_seq OWNED BY public.custom_imports_b_services_rows.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExitDate_idx1"; -- --- Name: custom_imports_config; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.custom_imports_config ( - id bigint NOT NULL, - user_id bigint, - data_source_id bigint, - active boolean DEFAULT true NOT NULL, - description character varying, - import_hour integer, - import_type character varying, - s3_region character varying, - s3_bucket character varying, - s3_prefix character varying, - encrypted_s3_access_key_id character varying, - encrypted_s3_access_key_id_iv character varying, - encrypted_s3_secret character varying, - encrypted_s3_secret_iv character varying, - last_import_attempted_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExitDate_idx2"; -- --- Name: custom_imports_config_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.custom_imports_config_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExitDate_idx3"; -- --- Name: custom_imports_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.custom_imports_config_id_seq OWNED BY public.custom_imports_config.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExitDate_idx4"; -- --- Name: custom_imports_files; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.custom_imports_files ( - id bigint NOT NULL, - type character varying, - config_id bigint, - data_source_id bigint, - file character varying, - status character varying, - summary jsonb, - import_errors jsonb, - content_type character varying, - content bytea, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - started_at timestamp without time zone, - completed_at timestamp without time zone, - deleted_at timestamp without time zone -); +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExitDate_idx5"; -- --- Name: custom_imports_files_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.custom_imports_files_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExitID_data_source_id_idx"; -- --- Name: custom_imports_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.custom_imports_files_id_seq OWNED BY public.custom_imports_files.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExitID_idx"; -- --- Name: dashboard_export_reports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.dashboard_export_reports ( - id integer NOT NULL, - file_id integer, - user_id integer, - job_id integer, - coc_code character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - started_at timestamp without time zone, - completed_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExitID_idx1"; -- --- Name: dashboard_export_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.dashboard_export_reports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExitID_idx2"; -- --- Name: dashboard_export_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.dashboard_export_reports_id_seq OWNED BY public.dashboard_export_reports.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExitID_idx3"; -- --- Name: data_monitorings; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.data_monitorings ( - id integer NOT NULL, - resource_id integer NOT NULL, - census date, - calculated_on date, - calculate_after date, - value double precision, - change double precision, - iteration integer, - of_iterations integer, - type character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExitID_idx4"; -- --- Name: data_monitorings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.data_monitorings_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExportID_idx"; -- --- Name: data_monitorings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.data_monitorings_id_seq OWNED BY public.data_monitorings.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExportID_idx1"; -- --- Name: data_sources_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.data_sources_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExportID_idx2"; -- --- Name: data_sources_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.data_sources_id_seq OWNED BY public.data_sources.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExportID_idx3"; -- --- Name: datasets; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.datasets ( - id bigint NOT NULL, - source_type character varying NOT NULL, - source_id bigint NOT NULL, - identifier character varying, - data jsonb, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_ExportID_idx4"; -- --- Name: datasets_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.datasets_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_PersonalID_idx"; -- --- Name: datasets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.datasets_id_seq OWNED BY public.datasets.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_PersonalID_idx1"; -- --- Name: direct_financial_assistances; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.direct_financial_assistances ( - id integer NOT NULL, - client_id integer, - user_id integer, - provided_on date, - type_provided character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - imported boolean DEFAULT false, - amount integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_PersonalID_idx2"; -- --- Name: direct_financial_assistances_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.direct_financial_assistances_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_PersonalID_idx3"; -- --- Name: direct_financial_assistances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.direct_financial_assistances_id_seq OWNED BY public.direct_financial_assistances.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_68_PersonalID_idx4"; -- --- Name: document_exports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.document_exports ( - id bigint NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - type character varying NOT NULL, - user_id bigint NOT NULL, - version character varying NOT NULL, - status character varying NOT NULL, - query_string character varying, - file_data bytea, - filename character varying, - mime_type character varying -); +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_68_importer_log_id_idx; -- --- Name: document_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.document_exports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_68_pkey; -- --- Name: document_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_68_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.document_exports_id_seq OWNED BY public.document_exports.id; +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_68_source_type_source_id_idx; -- --- Name: eccovia_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.eccovia_assessments ( - id bigint NOT NULL, - client_id character varying, - data_source_id bigint, - assessment_id character varying, - score integer, - assessed_at timestamp without time zone, - assessor_id character varying, - assessor_name character varying, - assessor_email character varying, - last_fetched_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateCreated_idx"; -- --- Name: eccovia_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.eccovia_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateCreated_idx1"; -- --- Name: eccovia_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.eccovia_assessments_id_seq OWNED BY public.eccovia_assessments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateCreated_idx2"; -- --- Name: eccovia_case_managers; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.eccovia_case_managers ( - id bigint NOT NULL, - client_id character varying, - data_source_id bigint, - case_manager_id character varying, - user_id character varying, - first_name character varying, - last_name character varying, - email character varying, - phone character varying, - cell character varying, - start_date date, - end_date date, - last_fetched_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateCreated_idx3"; -- --- Name: eccovia_case_managers_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.eccovia_case_managers_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateCreated_idx4"; -- --- Name: eccovia_case_managers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.eccovia_case_managers_id_seq OWNED BY public.eccovia_case_managers.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateDeleted_idx"; -- --- Name: eccovia_client_contacts; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.eccovia_client_contacts ( - id bigint NOT NULL, - client_id character varying, - data_source_id bigint, - email character varying, - phone character varying, - cell character varying, - street character varying, - street2 character varying, - city character varying, - state character varying, - zip character varying, - last_fetched_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateDeleted_idx1"; -- --- Name: eccovia_client_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.eccovia_client_contacts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateDeleted_idx2"; -- --- Name: eccovia_client_contacts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.eccovia_client_contacts_id_seq OWNED BY public.eccovia_client_contacts.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateDeleted_idx3"; -- --- Name: eccovia_fetches; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.eccovia_fetches ( - id bigint NOT NULL, - credentials_id bigint, - data_source_id bigint, - active boolean DEFAULT false NOT NULL, - last_fetched_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateDeleted_idx4"; -- --- Name: eccovia_fetches_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.eccovia_fetches_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateUpdated_idx"; -- --- Name: eccovia_fetches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.eccovia_fetches_id_seq OWNED BY public.eccovia_fetches.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateUpdated_idx1"; -- --- Name: enrollment_change_histories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.enrollment_change_histories ( - id integer NOT NULL, - client_id integer NOT NULL, - "on" date NOT NULL, - residential jsonb, - other jsonb, - created_at timestamp without time zone, - updated_at timestamp without time zone, - version integer DEFAULT 1 NOT NULL, - days_homeless integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateUpdated_idx2"; -- --- Name: enrollment_change_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.enrollment_change_histories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateUpdated_idx3"; -- --- Name: enrollment_change_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.enrollment_change_histories_id_seq OWNED BY public.enrollment_change_histories.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_DateUpdated_idx4"; -- --- Name: enrollment_extras; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.enrollment_extras ( - id integer NOT NULL, - enrollment_id integer, - vispdat_grand_total integer, - vispdat_added_at date, - vispdat_started_at date, - vispdat_ended_at date, - source_tab character varying, - created_at timestamp without time zone, - updated_at timestamp without time zone, - file_id bigint, - data_source_id integer, - client_id character varying, - client_uid character varying, - hud_enrollment_id character varying, - enrollment_group_id character varying, - project_name character varying, - entry_date date, - exit_date date, - vispdat_type character varying, - vispdat_range character varying, - prioritization_tool_type character varying, - prioritization_tool_score integer, - agency_name character varying, - community character varying, - lgbtq_household_members boolean, - client_lgbtq boolean, - dv_survivor boolean, - prevention_tool_score integer, - shelter_priority character varying, - permanent_housing_priority_group character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_EnrollmentID_idx"; -- --- Name: enrollment_extras_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.enrollment_extras_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_EnrollmentID_idx1"; -- --- Name: enrollment_extras_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.enrollment_extras_id_seq OWNED BY public.enrollment_extras.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_EnrollmentID_idx2"; -- --- Name: eto_api_configs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.eto_api_configs ( - id integer NOT NULL, - data_source_id integer NOT NULL, - touchpoint_fields jsonb, - demographic_fields jsonb, - demographic_fields_with_attributes jsonb, - additional_fields jsonb, - created_at timestamp without time zone, - updated_at timestamp without time zone, - identifier character varying, - email character varying, - encrypted_password character varying, - encrypted_password_iv character varying, - enterprise character varying, - hud_touch_point_id character varying, - active boolean DEFAULT false -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_EnrollmentID_idx3"; -- --- Name: eto_api_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.eto_api_configs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_EnrollmentID_idx4"; -- --- Name: eto_api_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.eto_api_configs_id_seq OWNED BY public.eto_api_configs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExitDate_idx"; -- --- Name: eto_client_lookups; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.eto_client_lookups ( - id integer NOT NULL, - data_source_id integer NOT NULL, - client_id integer NOT NULL, - enterprise_guid character varying NOT NULL, - site_id integer NOT NULL, - subject_id integer NOT NULL, - last_updated timestamp without time zone, - participant_site_identifier integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExitDate_idx1"; -- --- Name: eto_client_lookups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.eto_client_lookups_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExitDate_idx2"; -- --- Name: eto_client_lookups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.eto_client_lookups_id_seq OWNED BY public.eto_client_lookups.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExitDate_idx3"; -- --- Name: eto_subject_response_lookups; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.eto_subject_response_lookups ( - id integer NOT NULL, - data_source_id integer NOT NULL, - subject_id integer NOT NULL, - response_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExitDate_idx4"; -- --- Name: eto_subject_response_lookups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.eto_subject_response_lookups_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExitDate_idx5"; -- --- Name: eto_subject_response_lookups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.eto_subject_response_lookups_id_seq OWNED BY public.eto_subject_response_lookups.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExitID_data_source_id_idx"; -- --- Name: eto_touch_point_lookups; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.eto_touch_point_lookups ( - id integer NOT NULL, - data_source_id integer NOT NULL, - client_id integer NOT NULL, - subject_id integer NOT NULL, - assessment_id integer NOT NULL, - response_id integer NOT NULL, - last_updated timestamp without time zone, - site_id integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExitID_idx"; -- --- Name: eto_touch_point_lookups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.eto_touch_point_lookups_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExitID_idx1"; -- --- Name: eto_touch_point_lookups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.eto_touch_point_lookups_id_seq OWNED BY public.eto_touch_point_lookups.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExitID_idx2"; -- --- Name: eto_touch_point_response_times; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.eto_touch_point_response_times ( - id integer NOT NULL, - touch_point_unique_identifier integer NOT NULL, - response_unique_identifier integer NOT NULL, - response_last_updated timestamp without time zone NOT NULL, - subject_unique_identifier integer NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExitID_idx3"; -- --- Name: eto_touch_point_response_times_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.eto_touch_point_response_times_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExitID_idx4"; -- --- Name: eto_touch_point_response_times_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.eto_touch_point_response_times_id_seq OWNED BY public.eto_touch_point_response_times.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExportID_idx"; -- --- Name: exports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.exports ( - id integer NOT NULL, - export_id character varying, - user_id integer, - start_date date, - end_date date, - period_type integer, - directive integer, - hash_status integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - faked_pii boolean DEFAULT false, - project_ids jsonb, - include_deleted boolean DEFAULT false, - content_type character varying, - content bytea, - file character varying, - delayed_job_id integer, - version character varying, - confidential boolean DEFAULT false NOT NULL, - started_at timestamp without time zone, - completed_at timestamp without time zone, - options jsonb -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExportID_idx1"; -- --- Name: exports_ad_hoc_anons; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.exports_ad_hoc_anons ( - id bigint NOT NULL, - user_id bigint NOT NULL, - options jsonb, - headers jsonb, - rows jsonb, - client_count integer, - started_at timestamp without time zone, - completed_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExportID_idx2"; -- --- Name: exports_ad_hoc_anons_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.exports_ad_hoc_anons_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExportID_idx3"; -- --- Name: exports_ad_hoc_anons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.exports_ad_hoc_anons_id_seq OWNED BY public.exports_ad_hoc_anons.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_ExportID_idx4"; -- --- Name: exports_ad_hocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.exports_ad_hocs ( - id bigint NOT NULL, - user_id bigint NOT NULL, - options jsonb, - headers jsonb, - rows jsonb, - client_count integer, - started_at timestamp without time zone, - completed_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_PersonalID_idx"; -- --- Name: exports_ad_hocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.exports_ad_hocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_PersonalID_idx1"; -- --- Name: exports_ad_hocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.exports_ad_hocs_id_seq OWNED BY public.exports_ad_hocs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_PersonalID_idx2"; -- --- Name: exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.exports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_PersonalID_idx3"; -- --- Name: exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.exports_id_seq OWNED BY public.exports.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_69_PersonalID_idx4"; -- --- Name: external_ids; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.external_ids ( - id bigint NOT NULL, - value character varying NOT NULL, - source_type character varying NOT NULL, - source_id bigint NOT NULL, - remote_credential_id bigint, - external_request_log_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - namespace character varying -); +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_69_importer_log_id_idx; -- --- Name: external_ids_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.external_ids_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_69_pkey; -- --- Name: external_ids_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_69_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.external_ids_id_seq OWNED BY public.external_ids.id; +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_69_source_type_source_id_idx; -- --- Name: external_reporting_cohort_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.external_reporting_cohort_permissions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateCreated_idx"; -- --- Name: external_reporting_cohort_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.external_reporting_cohort_permissions_id_seq OWNED BY public.external_reporting_cohort_permissions.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateCreated_idx1"; -- --- Name: external_reporting_project_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.external_reporting_project_permissions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateCreated_idx2"; -- --- Name: external_reporting_project_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.external_reporting_project_permissions_id_seq OWNED BY public.external_reporting_project_permissions.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateCreated_idx3"; -- --- Name: external_request_logs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.external_request_logs ( - id bigint NOT NULL, - initiator_type character varying, - initiator_id bigint, - identifier character varying, - content_type character varying, - url character varying NOT NULL, - http_method character varying DEFAULT 'GET'::character varying NOT NULL, - ip inet, - request_headers jsonb DEFAULT '{}'::jsonb NOT NULL, - request text NOT NULL, - response text NOT NULL, - http_status integer, - requested_at timestamp without time zone NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateCreated_idx4"; -- --- Name: external_request_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.external_request_logs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateDeleted_idx"; -- --- Name: external_request_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.external_request_logs_id_seq OWNED BY public.external_request_logs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateDeleted_idx1"; -- --- Name: fake_data; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.fake_data ( - id integer NOT NULL, - environment character varying NOT NULL, - map text, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - client_ids text -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateDeleted_idx2"; -- --- Name: fake_data_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.fake_data_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateDeleted_idx3"; -- --- Name: fake_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.fake_data_id_seq OWNED BY public.fake_data.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateDeleted_idx4"; -- --- Name: favorites; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.favorites ( - id bigint NOT NULL, - user_id bigint NOT NULL, - entity_type character varying NOT NULL, - entity_id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateUpdated_idx"; -- --- Name: favorites_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.favorites_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateUpdated_idx1"; -- --- Name: favorites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.favorites_id_seq OWNED BY public.favorites.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateUpdated_idx2"; -- --- Name: federal_census_breakdowns; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.federal_census_breakdowns ( - id bigint NOT NULL, - accurate_on date, - type character varying, - geography_level character varying, - geography character varying, - measure character varying, - value integer, - geo_id character varying, - race character varying, - gender character varying, - age_min integer, - age_max integer, - source character varying, - census_variable_name character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateUpdated_idx3"; -- --- Name: COLUMN federal_census_breakdowns.accurate_on; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.federal_census_breakdowns.accurate_on IS 'Most recent census date'; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_DateUpdated_idx4"; -- --- Name: COLUMN federal_census_breakdowns.geography_level; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.federal_census_breakdowns.geography_level IS 'State, zip, CoC (or maybe 010, 040, 050)'; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx1"; -- --- Name: COLUMN federal_census_breakdowns.geography; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.federal_census_breakdowns.geography IS 'MA, 02101, MA-500'; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx2"; -- --- Name: COLUMN federal_census_breakdowns.measure; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.federal_census_breakdowns.measure IS 'Detail of race, age, etc. (Asian, 50-59...)'; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx3"; -- --- Name: COLUMN federal_census_breakdowns.value; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.federal_census_breakdowns.value IS 'count of population'; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx4"; -- --- Name: COLUMN federal_census_breakdowns.source; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.federal_census_breakdowns.source IS 'Source of data'; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx5"; -- --- Name: COLUMN federal_census_breakdowns.census_variable_name; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.federal_census_breakdowns.census_variable_name IS 'For debugging, variable name used in source'; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx6"; -- --- Name: federal_census_breakdowns_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.federal_census_breakdowns_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx7"; -- --- Name: federal_census_breakdowns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.federal_census_breakdowns_id_seq OWNED BY public.federal_census_breakdowns.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx8"; -- --- Name: files; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.files ( - id integer NOT NULL, - type character varying NOT NULL, - file character varying, - content_type character varying, - content bytea, - client_id integer, - user_id integer, - created_at timestamp without time zone, - updated_at timestamp without time zone, - deleted_at timestamp without time zone, - note character varying, - name character varying, - visible_in_window boolean, - migrated_username character varying, - vispdat_id integer, - consent_form_signed_on date, - consent_form_confirmed boolean, - size double precision, - effective_date date, - expiration_date date, - delete_reason integer, - delete_detail character varying, - consent_revoked_at timestamp without time zone, - coc_codes jsonb DEFAULT '[]'::jsonb, - enrollment_id bigint, - confidential boolean DEFAULT false NOT NULL, - updated_by_id bigint, - data_source_id bigint, - consent_revoked_by_user_id integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impo_idx9"; -- --- Name: files_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impor_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.files_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_PersonalID_impor_idx"; -- --- Name: files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.files_id_seq OWNED BY public.files.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_idx"; -- --- Name: financial_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.financial_clients ( - id bigint NOT NULL, - external_client_id integer NOT NULL, - client_id integer, - data_source_id integer NOT NULL, - client_first_name character varying, - client_last_name character varying, - address_line_1 character varying, - address_line_2 character varying, - city character varying, - state character varying, - zip_code character varying, - service_provder_company character varying, - head_of_household integer, - deleted_was_the_client_screened_for_homelessness integer, - does_the_client_have_a_tenant_based_housing_voucher integer, - if_yes_what_pha_issued_the_voucher character varying, - if_yes_what_type_of_voucher_was_issued character varying, - voucher_type_other character varying, - what_housing_program_is_the_client_in character varying, - housing_program_other character varying, - date_vouchered_if_applicable timestamp without time zone, - date_of_referral_to_agency timestamp without time zone, - lease_start_date timestamp without time zone, - city_of_unit character varying, - income numeric, - household_members integer, - household_members_under_18 integer, - household_members_over_62 integer, - client_birthdate timestamp without time zone, - ada_needs integer, - race character varying, - gender character varying, - ethnicity character varying, - cal_optima_client_id character varying, - dv_survivor integer, - most_recent_living_situation character varying, - most_recent_living_situation_other character varying, - date_of_referral_to_wit timestamp without time zone, - delete_are_rental_arrears_owed integer, - rent_owed_rental_arrears numeric, - total_time_housed integer, - hmis_id_if_applicable character varying, - housed_after_18_months integer, - housed_after_24_months integer, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - was_the_client_screened_for_homelessness character varying, - are_rental_arrears_owed character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_idx1"; -- --- Name: COLUMN financial_clients.client_id; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.financial_clients.client_id IS 'Reference to a destination client'; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_idx2"; -- --- Name: financial_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.financial_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_idx3"; -- --- Name: financial_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.financial_clients_id_seq OWNED BY public.financial_clients.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_EnrollmentID_idx4"; -- --- Name: financial_providers; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.financial_providers ( - id bigint NOT NULL, - provider_id integer NOT NULL, - data_source_id integer NOT NULL, - agency_name character varying NOT NULL, - address_line_1 character varying, - address_line_2 character varying, - city character varying, - state character varying, - zip_code character varying, - service_provider_area character varying, - service_provider_area_by_city character varying, - pha_contracts character varying, - client_referral_process character varying, - client_referral_process_other character varying, - voucher_types_for_client character varying, - housing_programs character varying, - housing_program_other character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExitDate_idx"; -- --- Name: financial_providers_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.financial_providers_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExitDate_idx1"; -- --- Name: financial_providers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.financial_providers_id_seq OWNED BY public.financial_providers.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExitDate_idx2"; -- --- Name: financial_transactions; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.financial_transactions ( - id bigint NOT NULL, - transaction_id integer NOT NULL, - data_source_id integer NOT NULL, - transaction_status character varying NOT NULL, - transaction_date timestamp without time zone NOT NULL, - paid_date timestamp without time zone, - external_client_id integer NOT NULL, - provider_id integer NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExitDate_idx3"; -- --- Name: financial_transactions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.financial_transactions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExitDate_idx4"; -- --- Name: financial_transactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.financial_transactions_id_seq OWNED BY public.financial_transactions.id; +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExitDate_idx5"; -- --- Name: generate_service_history_batch_logs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.generate_service_history_batch_logs ( - id integer NOT NULL, - generate_service_history_log_id integer, - to_process integer, - updated integer, - patched integer, - delayed_job_id integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExitID_data_source_id_idx"; -- --- Name: generate_service_history_batch_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.generate_service_history_batch_logs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExitID_idx"; -- --- Name: generate_service_history_batch_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.generate_service_history_batch_logs_id_seq OWNED BY public.generate_service_history_batch_logs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExitID_idx1"; -- --- Name: generate_service_history_log; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.generate_service_history_log ( - id integer NOT NULL, - started_at timestamp without time zone, - completed_at timestamp without time zone, - to_delete integer, - to_add integer, - to_update integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - batches integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExitID_idx2"; -- --- Name: generate_service_history_log_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.generate_service_history_log_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExitID_idx3"; -- --- Name: generate_service_history_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.generate_service_history_log_id_seq OWNED BY public.generate_service_history_log.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExitID_idx4"; -- --- Name: generic_services; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.generic_services ( - id bigint NOT NULL, - client_id bigint, - source_type character varying, - source_id bigint, - date date, - title character varying, - data_source_id integer, - category character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExportID_idx"; -- --- Name: generic_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.generic_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExportID_idx1"; -- --- Name: generic_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.generic_services_id_seq OWNED BY public.generic_services.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExportID_idx2"; -- --- Name: grades; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.grades ( - id integer NOT NULL, - type character varying NOT NULL, - grade character varying NOT NULL, - percentage_low integer, - percentage_high integer, - percentage_under_low integer, - percentage_under_high integer, - percentage_over_low integer, - percentage_over_high integer, - color character varying DEFAULT '#000000'::character varying, - weight integer DEFAULT 0 NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExportID_idx3"; -- --- Name: grades_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.grades_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_ExportID_idx4"; -- --- Name: grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.grades_id_seq OWNED BY public.grades.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_PersonalID_idx"; -- --- Name: group_viewable_entities; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.group_viewable_entities ( - id integer NOT NULL, - access_group_id integer NOT NULL, - entity_id integer NOT NULL, - entity_type character varying NOT NULL, - deleted_at timestamp without time zone, - collection_id bigint -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_PersonalID_idx1"; -- --- Name: group_viewable_entities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.group_viewable_entities_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_PersonalID_idx2"; -- --- Name: group_viewable_entities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.group_viewable_entities_id_seq OWNED BY public.group_viewable_entities.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_PersonalID_idx3"; -- --- Name: hap_report_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hap_report_clients ( - id bigint NOT NULL, - client_id bigint, - age integer, - emancipated boolean, - head_of_household boolean, - household_ids character varying[], - project_types integer[], - veteran boolean, - mental_health boolean, - substance_use_disorder boolean, - domestic_violence boolean, - income_at_start integer, - income_at_exit integer, - homeless boolean, - nights_in_shelter integer, - deleted_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - head_of_household_for character varying[], - personal_id character varying, - mci_id character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_6_PersonalID_idx4"; -- --- Name: hap_report_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hap_report_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_6_importer_log_id_idx; -- --- Name: hap_report_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hap_report_clients_id_seq OWNED BY public.hap_report_clients.id; +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_6_pkey; -- --- Name: hap_report_eraps; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_6_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hap_report_eraps ( - id bigint NOT NULL, - hap_report_id bigint, - personal_id character varying NOT NULL, - mci_id character varying NOT NULL, - first_name character varying, - last_name character varying, - age integer, - household_id character varying, - head_of_household boolean, - emancipated boolean, - project_type integer, - veteran boolean, - mental_health_disorder boolean, - substance_use_disorder boolean, - survivor_of_domestic_violence boolean, - income_at_start integer, - income_at_exit integer, - homeless boolean, - nights_in_shelter integer, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_6_source_type_source_id_idx; -- --- Name: hap_report_eraps_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hap_report_eraps_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateCreated_idx"; -- --- Name: hap_report_eraps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hap_report_eraps_id_seq OWNED BY public.hap_report_eraps.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateCreated_idx1"; -- --- Name: health_emergency_ama_restrictions; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.health_emergency_ama_restrictions ( - id bigint NOT NULL, - user_id integer NOT NULL, - client_id integer NOT NULL, - agency_id integer, - restricted character varying, - note character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - notes text, - emergency_type character varying, - notification_at timestamp without time zone, - notification_batch_id integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateCreated_idx2"; -- --- Name: health_emergency_ama_restrictions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.health_emergency_ama_restrictions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateCreated_idx3"; -- --- Name: health_emergency_ama_restrictions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.health_emergency_ama_restrictions_id_seq OWNED BY public.health_emergency_ama_restrictions.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateCreated_idx4"; -- --- Name: health_emergency_clinical_triages; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.health_emergency_clinical_triages ( - id bigint NOT NULL, - user_id integer NOT NULL, - client_id integer NOT NULL, - agency_id integer, - test_requested character varying, - location character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - notes text, - emergency_type character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateDeleted_idx"; -- --- Name: health_emergency_clinical_triages_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.health_emergency_clinical_triages_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateDeleted_idx1"; -- --- Name: health_emergency_clinical_triages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.health_emergency_clinical_triages_id_seq OWNED BY public.health_emergency_clinical_triages.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateDeleted_idx2"; -- --- Name: health_emergency_isolations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.health_emergency_isolations ( - id bigint NOT NULL, - type character varying NOT NULL, - user_id integer NOT NULL, - client_id integer NOT NULL, - agency_id integer, - isolation_requested_at timestamp without time zone, - location character varying, - started_on date, - scheduled_to_end_on date, - ended_on date, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - notes text, - emergency_type character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateDeleted_idx3"; -- --- Name: health_emergency_isolations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.health_emergency_isolations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateDeleted_idx4"; -- --- Name: health_emergency_isolations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.health_emergency_isolations_id_seq OWNED BY public.health_emergency_isolations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateUpdated_idx"; -- --- Name: health_emergency_test_batches; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.health_emergency_test_batches ( - id bigint NOT NULL, - user_id bigint, - uploaded_count integer, - matched_count integer, - started_at timestamp without time zone, - completed_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - import_errors character varying, - file character varying, - name character varying, - size character varying, - content_type character varying, - content bytea -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateUpdated_idx1"; -- --- Name: health_emergency_test_batches_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.health_emergency_test_batches_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateUpdated_idx2"; -- --- Name: health_emergency_test_batches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.health_emergency_test_batches_id_seq OWNED BY public.health_emergency_test_batches.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateUpdated_idx3"; -- --- Name: health_emergency_tests; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.health_emergency_tests ( - id bigint NOT NULL, - user_id integer NOT NULL, - client_id integer NOT NULL, - agency_id integer, - test_requested character varying, - location character varying, - tested_on date, - result character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - notes text, - emergency_type character varying, - notification_at timestamp without time zone, - notification_batch_id integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_DateUpdated_idx4"; -- --- Name: health_emergency_tests_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.health_emergency_tests_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_EnrollmentID_idx"; -- --- Name: health_emergency_tests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.health_emergency_tests_id_seq OWNED BY public.health_emergency_tests.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_EnrollmentID_idx1"; -- --- Name: health_emergency_triages; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.health_emergency_triages ( - id bigint NOT NULL, - user_id integer NOT NULL, - client_id integer NOT NULL, - agency_id integer, - location character varying, - exposure character varying, - symptoms character varying, - first_symptoms_on date, - referred_on date, - referred_to character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - notes text, - emergency_type character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_EnrollmentID_idx2"; -- --- Name: health_emergency_triages_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.health_emergency_triages_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_EnrollmentID_idx3"; -- --- Name: health_emergency_triages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.health_emergency_triages_id_seq OWNED BY public.health_emergency_triages.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_EnrollmentID_idx4"; -- --- Name: health_emergency_uploaded_tests; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.health_emergency_uploaded_tests ( - id bigint NOT NULL, - batch_id bigint, - client_id integer, - test_id integer, - first_name character varying, - last_name character varying, - dob date, - gender character varying, - ssn character varying, - tested_on date, - test_location character varying, - test_result character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - ama_restriction_id bigint -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExitDate_idx"; -- --- Name: health_emergency_uploaded_tests_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.health_emergency_uploaded_tests_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExitDate_idx1"; -- --- Name: health_emergency_uploaded_tests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.health_emergency_uploaded_tests_id_seq OWNED BY public.health_emergency_uploaded_tests.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExitDate_idx2"; -- --- Name: health_emergency_vaccinations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.health_emergency_vaccinations ( - id bigint NOT NULL, - user_id integer NOT NULL, - client_id integer NOT NULL, - agency_id integer, - vaccinated_on date NOT NULL, - vaccinated_at character varying, - follow_up_on date, - follow_up_notification_sent_at timestamp without time zone, - vaccination_type character varying NOT NULL, - follow_up_cell_phone character varying, - emergency_type character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - health_vaccination_id integer, - preferred_language character varying DEFAULT 'en'::character varying, - notification_status text -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExitDate_idx3"; -- --- Name: health_emergency_vaccinations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.health_emergency_vaccinations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExitDate_idx4"; -- --- Name: health_emergency_vaccinations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.health_emergency_vaccinations_id_seq OWNED BY public.health_emergency_vaccinations.id; +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExitDate_idx5"; -- --- Name: helps; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.helps ( - id integer NOT NULL, - controller_path character varying NOT NULL, - action_name character varying NOT NULL, - external_url character varying, - title character varying NOT NULL, - content text NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - location character varying DEFAULT 'internal'::character varying NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExitID_data_source_id_idx"; -- --- Name: helps_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.helps_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExitID_idx"; -- --- Name: helps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.helps_id_seq OWNED BY public.helps.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExitID_idx1"; -- --- Name: hmis_2020_affiliations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_affiliations ( - id bigint NOT NULL, - "AffiliationID" character varying, - "ProjectID" character varying, - "ResProjectID" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExitID_idx2"; -- --- Name: hmis_2020_affiliations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_affiliations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExitID_idx3"; -- --- Name: hmis_2020_affiliations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_affiliations_id_seq OWNED BY public.hmis_2020_affiliations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExitID_idx4"; -- --- Name: hmis_2020_aggregated_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_aggregated_enrollments ( - id bigint NOT NULL, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ProjectID" character varying, - "EntryDate" date, - "HouseholdID" character varying, - "RelationshipToHoH" integer, - "LivingSituation" integer, - "LengthOfStay" integer, - "LOSUnderThreshold" integer, - "PreviousStreetESSH" integer, - "DateToStreetESSH" date, - "TimesHomelessPastThreeYears" integer, - "MonthsHomelessPastThreeYears" integer, - "DisablingCondition" integer, - "DateOfEngagement" date, - "MoveInDate" date, - "DateOfPATHStatus" date, - "ClientEnrolledInPATH" integer, - "ReasonNotEnrolled" integer, - "WorstHousingSituation" integer, - "PercentAMI" integer, - "LastPermanentStreet" character varying, - "LastPermanentCity" character varying, - "LastPermanentState" character varying, - "LastPermanentZIP" character varying, - "AddressDataQuality" integer, - "DateOfBCPStatus" date, - "EligibleForRHY" integer, - "ReasonNoServices" integer, - "RunawayYouth" integer, - "SexualOrientation" integer, - "SexualOrientationOther" character varying, - "FormerWardChildWelfare" integer, - "ChildWelfareYears" integer, - "ChildWelfareMonths" integer, - "FormerWardJuvenileJustice" integer, - "JuvenileJusticeYears" integer, - "JuvenileJusticeMonths" integer, - "UnemploymentFam" integer, - "MentalHealthIssuesFam" integer, - "PhysicalDisabilityFam" integer, - "AlcoholDrugAbuseFam" integer, - "InsufficientIncome" integer, - "IncarceratedParent" integer, - "ReferralSource" integer, - "CountOutreachReferralApproaches" integer, - "UrgentReferral" integer, - "TimeToHousingLoss" integer, - "ZeroIncome" integer, - "AnnualPercentAMI" integer, - "FinancialChange" integer, - "HouseholdChange" integer, - "EvictionHistory" integer, - "SubsidyAtRisk" integer, - "LiteralHomelessHistory" integer, - "DisabledHoH" integer, - "CriminalRecord" integer, - "SexOffender" integer, - "DependentUnder6" integer, - "SingleParent" integer, - "HH5Plus" integer, - "IraqAfghanistan" integer, - "FemVet" integer, - "HPScreeningScore" integer, - "ThresholdScore" integer, - "VAMCStation" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExportID_idx"; -- --- Name: hmis_2020_aggregated_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_aggregated_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExportID_idx1"; -- --- Name: hmis_2020_aggregated_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_aggregated_enrollments_id_seq OWNED BY public.hmis_2020_aggregated_enrollments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExportID_idx2"; -- --- Name: hmis_2020_aggregated_exits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_aggregated_exits ( - id bigint NOT NULL, - "ExitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ExitDate" date, - "Destination" integer, - "OtherDestination" character varying, - "HousingAssessment" integer, - "SubsidyInformation" integer, - "ProjectCompletionStatus" integer, - "EarlyExitReason" integer, - "ExchangeForSex" integer, - "ExchangeForSexPastThreeMonths" integer, - "CountOfExchangeForSex" integer, - "AskedOrForcedToExchangeForSex" integer, - "AskedOrForcedToExchangeForSexPastThreeMonths" integer, - "WorkPlaceViolenceThreats" integer, - "WorkplacePromiseDifference" integer, - "CoercedToContinueWork" integer, - "LaborExploitPastThreeMonths" integer, - "CounselingReceived" integer, - "IndividualCounseling" integer, - "FamilyCounseling" integer, - "GroupCounseling" integer, - "SessionCountAtExit" integer, - "PostExitCounselingPlan" integer, - "SessionsInPlan" integer, - "DestinationSafeClient" integer, - "DestinationSafeWorker" integer, - "PosAdultConnections" integer, - "PosPeerConnections" integer, - "PosCommunityConnections" integer, - "AftercareDate" date, - "AftercareProvided" integer, - "EmailSocialMedia" integer, - "Telephone" integer, - "InPersonIndividual" integer, - "InPersonGroup" integer, - "CMExitReason" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExportID_idx3"; -- --- Name: hmis_2020_aggregated_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_aggregated_exits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_ExportID_idx4"; -- --- Name: hmis_2020_aggregated_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_aggregated_exits_id_seq OWNED BY public.hmis_2020_aggregated_exits.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_PersonalID_idx"; -- --- Name: hmis_2020_assessment_questions; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_assessment_questions ( - id bigint NOT NULL, - "AssessmentQuestionID" character varying, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentQuestionGroup" character varying, - "AssessmentQuestionOrder" integer, - "AssessmentQuestion" character varying, - "AssessmentAnswer" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_PersonalID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_70_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_70_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_PersonalID_idx3"; -- --- Name: hmis_2020_assessment_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_assessment_questions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_70_PersonalID_idx4"; -- --- Name: hmis_2020_assessment_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_assessment_questions_id_seq OWNED BY public.hmis_2020_assessment_questions.id; +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_70_importer_log_id_idx; -- --- Name: hmis_2020_assessment_results; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_assessment_results ( - id bigint NOT NULL, - "AssessmentResultID" character varying, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentResultType" character varying, - "AssessmentResult" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_70_pkey; -- --- Name: hmis_2020_assessment_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_70_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_assessment_results_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_70_source_type_source_id_idx; -- --- Name: hmis_2020_assessment_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_assessment_results_id_seq OWNED BY public.hmis_2020_assessment_results.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateCreated_idx"; -- --- Name: hmis_2020_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_assessments ( - id bigint NOT NULL, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentDate" date, - "AssessmentLocation" character varying, - "AssessmentType" integer, - "AssessmentLevel" integer, - "PrioritizationStatus" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateCreated_idx1"; -- --- Name: hmis_2020_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateCreated_idx2"; -- --- Name: hmis_2020_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_assessments_id_seq OWNED BY public.hmis_2020_assessments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateCreated_idx3"; -- --- Name: hmis_2020_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_clients ( - id bigint NOT NULL, - "PersonalID" character varying, - "FirstName" character varying, - "MiddleName" character varying, - "LastName" character varying, - "NameSuffix" character varying, - "NameDataQuality" integer, - "SSN" character varying, - "SSNDataQuality" character varying, - "DOB" date, - "DOBDataQuality" character varying, - "AmIndAKNative" integer, - "Asian" integer, - "BlackAfAmerican" integer, - "NativeHIOtherPacific" integer, - "White" integer, - "RaceNone" integer, - "Ethnicity" integer, - "Gender" integer, - "VeteranStatus" integer, - "YearEnteredService" integer, - "YearSeparated" integer, - "WorldWarII" integer, - "KoreanWar" integer, - "VietnamWar" integer, - "DesertStorm" integer, - "AfghanistanOEF" integer, - "IraqOIF" integer, - "IraqOND" integer, - "OtherTheater" integer, - "MilitaryBranch" integer, - "DischargeStatus" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateCreated_idx4"; -- --- Name: hmis_2020_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateDeleted_idx"; -- --- Name: hmis_2020_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_clients_id_seq OWNED BY public.hmis_2020_clients.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateDeleted_idx1"; -- --- Name: hmis_2020_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_current_living_situations ( - id bigint NOT NULL, - "CurrentLivingSitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "CurrentLivingSituation" integer, - "VerifiedBy" character varying, - "LeaveSituation14Days" integer, - "SubsequentResidence" integer, - "ResourcesToObtain" integer, - "LeaseOwn60Day" integer, - "MovedTwoOrMore" integer, - "LocationDetails" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateDeleted_idx2"; -- --- Name: hmis_2020_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_current_living_situations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateDeleted_idx3"; -- --- Name: hmis_2020_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_current_living_situations_id_seq OWNED BY public.hmis_2020_current_living_situations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateDeleted_idx4"; -- --- Name: hmis_2020_disabilities; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_disabilities ( - id bigint NOT NULL, - "DisabilitiesID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "DisabilityType" integer, - "DisabilityResponse" integer, - "IndefiniteAndImpairs" integer, - "TCellCountAvailable" integer, - "TCellCount" integer, - "TCellSource" integer, - "ViralLoadAvailable" integer, - "ViralLoad" integer, - "ViralLoadSource" integer, - "DataCollectionStage" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateUpdated_idx"; -- --- Name: hmis_2020_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_disabilities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateUpdated_idx1"; -- --- Name: hmis_2020_disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_disabilities_id_seq OWNED BY public.hmis_2020_disabilities.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateUpdated_idx2"; -- --- Name: hmis_2020_employment_educations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_employment_educations ( - id bigint NOT NULL, - "EmploymentEducationID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "LastGradeCompleted" integer, - "SchoolStatus" integer, - "Employed" integer, - "EmploymentType" integer, - "NotEmployedReason" integer, - "DataCollectionStage" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateUpdated_idx3"; -- --- Name: hmis_2020_employment_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_employment_educations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_DateUpdated_idx4"; -- --- Name: hmis_2020_employment_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impo_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_employment_educations_id_seq OWNED BY public.hmis_2020_employment_educations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impo_idx1"; -- --- Name: hmis_2020_enrollment_cocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impo_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_enrollment_cocs ( - id bigint NOT NULL, - "EnrollmentCoCID" character varying, - "EnrollmentID" character varying, - "HouseholdID" character varying, - "ProjectID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "CoCCode" character varying, - "DataCollectionStage" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impo_idx2"; -- --- Name: hmis_2020_enrollment_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impo_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_enrollment_cocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impo_idx3"; -- --- Name: hmis_2020_enrollment_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impor_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_enrollment_cocs_id_seq OWNED BY public.hmis_2020_enrollment_cocs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_EnrollmentID_PersonalID_impor_idx"; -- --- Name: hmis_2020_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_enrollments ( - id bigint NOT NULL, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ProjectID" character varying, - "EntryDate" date, - "HouseholdID" character varying, - "RelationshipToHoH" integer, - "LivingSituation" integer, - "LengthOfStay" integer, - "LOSUnderThreshold" integer, - "PreviousStreetESSH" integer, - "DateToStreetESSH" date, - "TimesHomelessPastThreeYears" integer, - "MonthsHomelessPastThreeYears" integer, - "DisablingCondition" integer, - "DateOfEngagement" date, - "MoveInDate" date, - "DateOfPATHStatus" date, - "ClientEnrolledInPATH" integer, - "ReasonNotEnrolled" integer, - "WorstHousingSituation" integer, - "PercentAMI" integer, - "LastPermanentStreet" character varying, - "LastPermanentCity" character varying, - "LastPermanentState" character varying, - "LastPermanentZIP" character varying, - "AddressDataQuality" integer, - "DateOfBCPStatus" date, - "EligibleForRHY" integer, - "ReasonNoServices" integer, - "RunawayYouth" integer, - "SexualOrientation" integer, - "SexualOrientationOther" character varying, - "FormerWardChildWelfare" integer, - "ChildWelfareYears" integer, - "ChildWelfareMonths" integer, - "FormerWardJuvenileJustice" integer, - "JuvenileJusticeYears" integer, - "JuvenileJusticeMonths" integer, - "UnemploymentFam" integer, - "MentalHealthIssuesFam" integer, - "PhysicalDisabilityFam" integer, - "AlcoholDrugAbuseFam" integer, - "InsufficientIncome" integer, - "IncarceratedParent" integer, - "ReferralSource" integer, - "CountOutreachReferralApproaches" integer, - "UrgentReferral" integer, - "TimeToHousingLoss" integer, - "ZeroIncome" integer, - "AnnualPercentAMI" integer, - "FinancialChange" integer, - "HouseholdChange" integer, - "EvictionHistory" integer, - "SubsidyAtRisk" integer, - "LiteralHomelessHistory" integer, - "DisabledHoH" integer, - "CriminalRecord" integer, - "SexOffender" integer, - "DependentUnder6" integer, - "SingleParent" integer, - "HH5Plus" integer, - "IraqAfghanistan" integer, - "FemVet" integer, - "HPScreeningScore" integer, - "ThresholdScore" integer, - "VAMCStation" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_EnrollmentID_idx"; -- --- Name: hmis_2020_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_EnrollmentID_idx1"; -- --- Name: hmis_2020_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_enrollments_id_seq OWNED BY public.hmis_2020_enrollments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_EnrollmentID_idx2"; -- --- Name: hmis_2020_events; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_events ( - id bigint NOT NULL, - "EventID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "EventDate" date, - "Event" integer, - "ProbSolDivRRResult" integer, - "ReferralCaseManageAfter" integer, - "LocationCrisisOrPHHousing" character varying, - "ReferralResult" integer, - "ResultDate" date, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_EnrollmentID_idx3"; -- --- Name: hmis_2020_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_EnrollmentID_idx4"; -- --- Name: hmis_2020_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_events_id_seq OWNED BY public.hmis_2020_events.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExitDate_idx"; -- --- Name: hmis_2020_exits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_exits ( - id bigint NOT NULL, - "ExitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ExitDate" date, - "Destination" integer, - "OtherDestination" character varying, - "HousingAssessment" integer, - "SubsidyInformation" integer, - "ProjectCompletionStatus" integer, - "EarlyExitReason" integer, - "ExchangeForSex" integer, - "ExchangeForSexPastThreeMonths" integer, - "CountOfExchangeForSex" integer, - "AskedOrForcedToExchangeForSex" integer, - "AskedOrForcedToExchangeForSexPastThreeMonths" integer, - "WorkPlaceViolenceThreats" integer, - "WorkplacePromiseDifference" integer, - "CoercedToContinueWork" integer, - "LaborExploitPastThreeMonths" integer, - "CounselingReceived" integer, - "IndividualCounseling" integer, - "FamilyCounseling" integer, - "GroupCounseling" integer, - "SessionCountAtExit" integer, - "PostExitCounselingPlan" integer, - "SessionsInPlan" integer, - "DestinationSafeClient" integer, - "DestinationSafeWorker" integer, - "PosAdultConnections" integer, - "PosPeerConnections" integer, - "PosCommunityConnections" integer, - "AftercareDate" date, - "AftercareProvided" integer, - "EmailSocialMedia" integer, - "Telephone" integer, - "InPersonIndividual" integer, - "InPersonGroup" integer, - "CMExitReason" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExitDate_idx1"; -- --- Name: hmis_2020_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_exits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExitDate_idx2"; -- --- Name: hmis_2020_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_exits_id_seq OWNED BY public.hmis_2020_exits.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExitDate_idx3"; -- --- Name: hmis_2020_exports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_exports ( - id bigint NOT NULL, - "ExportID" character varying, - "SourceType" integer, - "SourceID" character varying, - "SourceName" character varying, - "SourceContactFirst" character varying, - "SourceContactLast" character varying, - "SourceContactPhone" character varying, - "SourceContactExtension" character varying, - "SourceContactEmail" character varying, - "ExportDate" timestamp without time zone, - "ExportStartDate" date, - "ExportEndDate" date, - "SoftwareName" character varying, - "SoftwareVersion" character varying, - "ExportPeriodType" integer, - "ExportDirective" integer, - "HashStatus" integer, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExitDate_idx4"; -- --- Name: hmis_2020_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_exports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExitDate_idx5"; -- --- Name: hmis_2020_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_exports_id_seq OWNED BY public.hmis_2020_exports.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExitID_data_source_id_idx"; -- --- Name: hmis_2020_funders; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_funders ( - id bigint NOT NULL, - "FunderID" character varying, - "ProjectID" character varying, - "Funder" integer, - "OtherFunder" character varying, - "GrantID" character varying, - "StartDate" date, - "EndDate" date, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExitID_idx"; -- --- Name: hmis_2020_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_funders_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExitID_idx1"; -- --- Name: hmis_2020_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_funders_id_seq OWNED BY public.hmis_2020_funders.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExitID_idx2"; -- --- Name: hmis_2020_health_and_dvs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_health_and_dvs ( - id bigint NOT NULL, - "HealthAndDVID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "DomesticViolenceVictim" integer, - "WhenOccurred" integer, - "CurrentlyFleeing" integer, - "GeneralHealthStatus" integer, - "DentalHealthStatus" integer, - "MentalHealthStatus" integer, - "PregnancyStatus" integer, - "DueDate" date, - "DataCollectionStage" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExitID_idx3"; -- --- Name: hmis_2020_health_and_dvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_health_and_dvs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExitID_idx4"; -- --- Name: hmis_2020_health_and_dvs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_health_and_dvs_id_seq OWNED BY public.hmis_2020_health_and_dvs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExportID_idx"; -- --- Name: hmis_2020_income_benefits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_income_benefits ( - id bigint NOT NULL, - "IncomeBenefitsID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "IncomeFromAnySource" integer, - "TotalMonthlyIncome" character varying, - "Earned" integer, - "EarnedAmount" character varying, - "Unemployment" integer, - "UnemploymentAmount" character varying, - "SSI" integer, - "SSIAmount" character varying, - "SSDI" integer, - "SSDIAmount" character varying, - "VADisabilityService" integer, - "VADisabilityServiceAmount" character varying, - "VADisabilityNonService" integer, - "VADisabilityNonServiceAmount" character varying, - "PrivateDisability" integer, - "PrivateDisabilityAmount" character varying, - "WorkersComp" integer, - "WorkersCompAmount" character varying, - "TANF" integer, - "TANFAmount" character varying, - "GA" integer, - "GAAmount" character varying, - "SocSecRetirement" integer, - "SocSecRetirementAmount" character varying, - "Pension" integer, - "PensionAmount" character varying, - "ChildSupport" integer, - "ChildSupportAmount" character varying, - "Alimony" integer, - "AlimonyAmount" character varying, - "OtherIncomeSource" integer, - "OtherIncomeAmount" character varying, - "OtherIncomeSourceIdentify" character varying, - "BenefitsFromAnySource" integer, - "SNAP" integer, - "WIC" integer, - "TANFChildCare" integer, - "TANFTransportation" integer, - "OtherTANF" integer, - "OtherBenefitsSource" integer, - "OtherBenefitsSourceIdentify" character varying, - "InsuranceFromAnySource" integer, - "Medicaid" integer, - "NoMedicaidReason" integer, - "Medicare" integer, - "NoMedicareReason" integer, - "SCHIP" integer, - "NoSCHIPReason" integer, - "VAMedicalServices" integer, - "NoVAMedReason" integer, - "EmployerProvided" integer, - "NoEmployerProvidedReason" integer, - "COBRA" integer, - "NoCOBRAReason" integer, - "PrivatePay" integer, - "NoPrivatePayReason" integer, - "StateHealthIns" integer, - "NoStateHealthInsReason" integer, - "IndianHealthServices" integer, - "NoIndianHealthServicesReason" integer, - "OtherInsurance" integer, - "OtherInsuranceIdentify" character varying, - "HIVAIDSAssistance" integer, - "NoHIVAIDSAssistanceReason" integer, - "ADAP" integer, - "NoADAPReason" integer, - "ConnectionWithSOAR" integer, - "DataCollectionStage" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExportID_idx1"; -- --- Name: hmis_2020_income_benefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_income_benefits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExportID_idx2"; -- --- Name: hmis_2020_income_benefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_income_benefits_id_seq OWNED BY public.hmis_2020_income_benefits.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExportID_idx3"; -- --- Name: hmis_2020_inventories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_inventories ( - id bigint NOT NULL, - "InventoryID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "HouseholdType" integer, - "Availability" integer, - "UnitInventory" integer, - "BedInventory" integer, - "CHVetBedInventory" integer, - "YouthVetBedInventory" integer, - "VetBedInventory" integer, - "CHYouthBedInventory" integer, - "YouthBedInventory" integer, - "CHBedInventory" integer, - "OtherBedInventory" integer, - "ESBedType" integer, - "InventoryStartDate" date, - "InventoryEndDate" date, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_ExportID_idx4"; -- --- Name: hmis_2020_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_inventories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_PersonalID_idx"; -- --- Name: hmis_2020_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_inventories_id_seq OWNED BY public.hmis_2020_inventories.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_PersonalID_idx1"; -- --- Name: hmis_2020_organizations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_organizations ( - id bigint NOT NULL, - "OrganizationID" character varying, - "OrganizationName" character varying, - "VictimServicesProvider" integer, - "OrganizationCommonName" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_PersonalID_idx2"; -- --- Name: hmis_2020_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_organizations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_PersonalID_idx3"; -- --- Name: hmis_2020_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_organizations_id_seq OWNED BY public.hmis_2020_organizations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_7_PersonalID_idx4"; -- --- Name: hmis_2020_project_cocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_project_cocs ( - id bigint NOT NULL, - "ProjectCoCID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "Geocode" character varying, - "Address1" character varying, - "Address2" character varying, - "City" character varying, - "State" character varying, - "Zip" character varying, - "GeographyType" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_7_importer_log_id_idx; -- --- Name: hmis_2020_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_project_cocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_7_pkey; -- --- Name: hmis_2020_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_7_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_project_cocs_id_seq OWNED BY public.hmis_2020_project_cocs.id; +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_7_source_type_source_id_idx; -- --- Name: hmis_2020_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_projects ( - id bigint NOT NULL, - "ProjectID" character varying, - "OrganizationID" character varying, - "ProjectName" character varying, - "ProjectCommonName" character varying, - "OperatingStartDate" date, - "OperatingEndDate" date, - "ContinuumProject" integer, - "ProjectType" integer, - "HousingType" integer, - "ResidentialAffiliation" integer, - "TrackingMethod" integer, - "HMISParticipatingProject" integer, - "TargetPopulation" integer, - "PITCount" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateCreated_idx"; -- --- Name: hmis_2020_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateCreated_idx1"; -- --- Name: hmis_2020_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_projects_id_seq OWNED BY public.hmis_2020_projects.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateCreated_idx2"; -- --- Name: hmis_2020_services; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_services ( - id bigint NOT NULL, - "ServicesID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "DateProvided" date, - "RecordType" integer, - "TypeProvided" integer, - "OtherTypeProvided" character varying, - "SubTypeProvided" integer, - "FAAmount" character varying, - "ReferralOutcome" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateCreated_idx3"; -- --- Name: hmis_2020_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateCreated_idx4"; -- --- Name: hmis_2020_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_services_id_seq OWNED BY public.hmis_2020_services.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateDeleted_idx"; -- --- Name: hmis_2020_users; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2020_users ( - id bigint NOT NULL, - "UserID" character varying, - "UserFirstName" character varying, - "UserLastName" character varying, - "UserPhone" character varying, - "UserExtension" character varying, - "UserEmail" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateDeleted_idx1"; -- --- Name: hmis_2020_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2020_users_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateDeleted_idx2"; -- --- Name: hmis_2020_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2020_users_id_seq OWNED BY public.hmis_2020_users.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateDeleted_idx3"; -- --- Name: hmis_2022_affiliations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_affiliations ( - id bigint NOT NULL, - "AffiliationID" character varying, - "ProjectID" character varying, - "ResProjectID" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateDeleted_idx4"; -- --- Name: hmis_2022_affiliations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_affiliations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateUpdated_idx"; -- --- Name: hmis_2022_affiliations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_affiliations_id_seq OWNED BY public.hmis_2022_affiliations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateUpdated_idx1"; -- --- Name: hmis_2022_assessment_questions; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_assessment_questions ( - id bigint NOT NULL, - "AssessmentQuestionID" character varying, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentQuestionGroup" character varying, - "AssessmentQuestionOrder" integer, - "AssessmentQuestion" character varying, - "AssessmentAnswer" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateUpdated_idx2"; -- --- Name: hmis_2022_assessment_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_assessment_questions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateUpdated_idx3"; -- --- Name: hmis_2022_assessment_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_assessment_questions_id_seq OWNED BY public.hmis_2022_assessment_questions.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_DateUpdated_idx4"; -- --- Name: hmis_2022_assessment_results; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_PersonalID_impo_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_assessment_results ( - id bigint NOT NULL, - "AssessmentResultID" character varying, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentResultType" character varying, - "AssessmentResult" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_EnrollmentID_PersonalID_impo_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_PersonalID_impor_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_EnrollmentID_PersonalID_impor_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_EnrollmentID_idx"; + + +-- +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_EnrollmentID_idx1"; + + +-- +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_EnrollmentID_idx2"; -- --- Name: hmis_2022_assessment_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_assessment_results_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_EnrollmentID_idx3"; -- --- Name: hmis_2022_assessment_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_assessment_results_id_seq OWNED BY public.hmis_2022_assessment_results.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_EnrollmentID_idx4"; -- --- Name: hmis_2022_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_assessments ( - id bigint NOT NULL, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentDate" date, - "AssessmentLocation" character varying, - "AssessmentType" integer, - "AssessmentLevel" integer, - "PrioritizationStatus" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExitDate_idx"; -- --- Name: hmis_2022_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExitDate_idx1"; -- --- Name: hmis_2022_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_assessments_id_seq OWNED BY public.hmis_2022_assessments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExitDate_idx2"; -- --- Name: hmis_2022_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_clients ( - id bigint NOT NULL, - "PersonalID" character varying, - "FirstName" character varying, - "MiddleName" character varying, - "LastName" character varying, - "NameSuffix" character varying, - "NameDataQuality" integer, - "SSN" character varying, - "SSNDataQuality" character varying, - "DOB" date, - "DOBDataQuality" character varying, - "AmIndAKNative" integer, - "Asian" integer, - "BlackAfAmerican" integer, - "NativeHIPacific" integer, - "White" integer, - "RaceNone" integer, - "Ethnicity" integer, - "Female" integer, - "Male" integer, - "NoSingleGender" integer, - "Transgender" integer, - "Questioning" integer, - "GenderNone" integer, - "VeteranStatus" integer, - "YearEnteredService" integer, - "YearSeparated" integer, - "WorldWarII" integer, - "KoreanWar" integer, - "VietnamWar" integer, - "DesertStorm" integer, - "AfghanistanOEF" integer, - "IraqOIF" integer, - "IraqOND" integer, - "OtherTheater" integer, - "MilitaryBranch" integer, - "DischargeStatus" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExitDate_idx3"; -- --- Name: hmis_2022_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExitDate_idx4"; -- --- Name: hmis_2022_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_clients_id_seq OWNED BY public.hmis_2022_clients.id; +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExitDate_idx5"; -- --- Name: hmis_2022_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_current_living_situations ( - id bigint NOT NULL, - "CurrentLivingSitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "CurrentLivingSituation" integer, - "VerifiedBy" character varying, - "LeaveSituation14Days" integer, - "SubsequentResidence" integer, - "ResourcesToObtain" integer, - "LeaseOwn60Day" integer, - "MovedTwoOrMore" integer, - "LocationDetails" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExitID_data_source_id_idx"; -- --- Name: hmis_2022_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_current_living_situations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExitID_idx"; -- --- Name: hmis_2022_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_current_living_situations_id_seq OWNED BY public.hmis_2022_current_living_situations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExitID_idx1"; -- --- Name: hmis_2022_disabilities; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_disabilities ( - id bigint NOT NULL, - "DisabilitiesID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "DisabilityType" integer, - "DisabilityResponse" integer, - "IndefiniteAndImpairs" integer, - "TCellCountAvailable" integer, - "TCellCount" integer, - "TCellSource" integer, - "ViralLoadAvailable" integer, - "ViralLoad" integer, - "ViralLoadSource" integer, - "AntiRetroviral" integer, - "DataCollectionStage" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExitID_idx2"; -- --- Name: hmis_2022_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_disabilities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExitID_idx3"; -- --- Name: hmis_2022_disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_disabilities_id_seq OWNED BY public.hmis_2022_disabilities.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExitID_idx4"; -- --- Name: hmis_2022_employment_educations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_employment_educations ( - id bigint NOT NULL, - "EmploymentEducationID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "LastGradeCompleted" integer, - "SchoolStatus" integer, - "Employed" integer, - "EmploymentType" integer, - "NotEmployedReason" integer, - "DataCollectionStage" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExportID_idx"; -- --- Name: hmis_2022_employment_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_employment_educations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExportID_idx1"; -- --- Name: hmis_2022_employment_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_employment_educations_id_seq OWNED BY public.hmis_2022_employment_educations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExportID_idx2"; -- --- Name: hmis_2022_enrollment_cocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_enrollment_cocs ( - id bigint NOT NULL, - "EnrollmentCoCID" character varying, - "EnrollmentID" character varying, - "HouseholdID" character varying, - "ProjectID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "CoCCode" character varying, - "DataCollectionStage" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExportID_idx3"; -- --- Name: hmis_2022_enrollment_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_enrollment_cocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_ExportID_idx4"; -- --- Name: hmis_2022_enrollment_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_enrollment_cocs_id_seq OWNED BY public.hmis_2022_enrollment_cocs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_PersonalID_idx"; -- --- Name: hmis_2022_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_enrollments ( - id bigint NOT NULL, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ProjectID" character varying, - "EntryDate" date, - "HouseholdID" character varying, - "RelationshipToHoH" integer, - "LivingSituation" integer, - "LengthOfStay" integer, - "LOSUnderThreshold" integer, - "PreviousStreetESSH" integer, - "DateToStreetESSH" date, - "TimesHomelessPastThreeYears" integer, - "MonthsHomelessPastThreeYears" integer, - "DisablingCondition" integer, - "DateOfEngagement" date, - "MoveInDate" date, - "DateOfPATHStatus" date, - "ClientEnrolledInPATH" integer, - "ReasonNotEnrolled" integer, - "WorstHousingSituation" integer, - "PercentAMI" integer, - "LastPermanentStreet" character varying, - "LastPermanentCity" character varying, - "LastPermanentState" character varying, - "LastPermanentZIP" character varying, - "AddressDataQuality" integer, - "ReferralSource" integer, - "CountOutreachReferralApproaches" integer, - "DateOfBCPStatus" date, - "EligibleForRHY" integer, - "ReasonNoServices" integer, - "RunawayYouth" integer, - "SexualOrientation" integer, - "SexualOrientationOther" character varying, - "FormerWardChildWelfare" integer, - "ChildWelfareYears" integer, - "ChildWelfareMonths" integer, - "FormerWardJuvenileJustice" integer, - "JuvenileJusticeYears" integer, - "JuvenileJusticeMonths" integer, - "UnemploymentFam" integer, - "MentalHealthDisorderFam" integer, - "PhysicalDisabilityFam" integer, - "AlcoholDrugUseDisorderFam" integer, - "InsufficientIncome" integer, - "IncarceratedParent" integer, - "VAMCStation" character varying, - "TargetScreenReqd" integer, - "TimeToHousingLoss" integer, - "AnnualPercentAMI" integer, - "LiteralHomelessHistory" integer, - "ClientLeaseholder" integer, - "HOHLeaseholder" integer, - "SubsidyAtRisk" integer, - "EvictionHistory" integer, - "CriminalRecord" integer, - "IncarceratedAdult" integer, - "PrisonDischarge" integer, - "SexOffender" integer, - "DisabledHoH" integer, - "CurrentPregnant" integer, - "SingleParent" integer, - "DependentUnder6" integer, - "HH5Plus" integer, - "CoCPrioritized" integer, - "HPScreeningScore" integer, - "ThresholdScore" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_PersonalID_idx1"; -- --- Name: hmis_2022_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_PersonalID_idx2"; -- --- Name: hmis_2022_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_enrollments_id_seq OWNED BY public.hmis_2022_enrollments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_PersonalID_idx3"; -- --- Name: hmis_2022_events; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_events ( - id bigint NOT NULL, - "EventID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "EventDate" date, - "Event" integer, - "ProbSolDivRRResult" integer, - "ReferralCaseManageAfter" integer, - "LocationCrisisOrPHHousing" character varying, - "ReferralResult" integer, - "ResultDate" date, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_8_PersonalID_idx4"; -- --- Name: hmis_2022_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_8_importer_log_id_idx; -- --- Name: hmis_2022_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_events_id_seq OWNED BY public.hmis_2022_events.id; +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_8_pkey; -- --- Name: hmis_2022_exits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_8_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_exits ( - id bigint NOT NULL, - "ExitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ExitDate" date, - "Destination" integer, - "OtherDestination" character varying, - "HousingAssessment" integer, - "SubsidyInformation" integer, - "ProjectCompletionStatus" integer, - "EarlyExitReason" integer, - "ExchangeForSex" integer, - "ExchangeForSexPastThreeMonths" integer, - "CountOfExchangeForSex" integer, - "AskedOrForcedToExchangeForSex" integer, - "AskedOrForcedToExchangeForSexPastThreeMonths" integer, - "WorkPlaceViolenceThreats" integer, - "WorkplacePromiseDifference" integer, - "CoercedToContinueWork" integer, - "LaborExploitPastThreeMonths" integer, - "CounselingReceived" integer, - "IndividualCounseling" integer, - "FamilyCounseling" integer, - "GroupCounseling" integer, - "SessionCountAtExit" integer, - "PostExitCounselingPlan" integer, - "SessionsInPlan" integer, - "DestinationSafeClient" integer, - "DestinationSafeWorker" integer, - "PosAdultConnections" integer, - "PosPeerConnections" integer, - "PosCommunityConnections" integer, - "AftercareDate" date, - "AftercareProvided" integer, - "EmailSocialMedia" integer, - "Telephone" integer, - "InPersonIndividual" integer, - "InPersonGroup" integer, - "CMExitReason" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_8_source_type_source_id_idx; -- --- Name: hmis_2022_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_exits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateCreated_idx"; -- --- Name: hmis_2022_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_exits_id_seq OWNED BY public.hmis_2022_exits.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateCreated_idx1"; -- --- Name: hmis_2022_exports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_exports ( - id bigint NOT NULL, - "ExportID" character varying, - "SourceType" integer, - "SourceID" character varying, - "SourceName" character varying, - "SourceContactFirst" character varying, - "SourceContactLast" character varying, - "SourceContactPhone" character varying, - "SourceContactExtension" character varying, - "SourceContactEmail" character varying, - "ExportDate" timestamp without time zone, - "ExportStartDate" date, - "ExportEndDate" date, - "SoftwareName" character varying, - "SoftwareVersion" character varying, - "CSVVersion" character varying, - "ExportPeriodType" integer, - "ExportDirective" integer, - "HashStatus" integer, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateCreated_idx2"; -- --- Name: hmis_2022_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_exports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateCreated_idx3"; -- --- Name: hmis_2022_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_exports_id_seq OWNED BY public.hmis_2022_exports.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateCreated_idx4"; -- --- Name: hmis_2022_funders; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_funders ( - id bigint NOT NULL, - "FunderID" character varying, - "ProjectID" character varying, - "Funder" integer, - "OtherFunder" character varying, - "GrantID" character varying, - "StartDate" date, - "EndDate" date, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateDeleted_idx"; -- --- Name: hmis_2022_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_funders_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateDeleted_idx1"; -- --- Name: hmis_2022_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_funders_id_seq OWNED BY public.hmis_2022_funders.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateDeleted_idx2"; -- --- Name: hmis_2022_health_and_dvs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_health_and_dvs ( - id bigint NOT NULL, - "HealthAndDVID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "DomesticViolenceVictim" integer, - "WhenOccurred" integer, - "CurrentlyFleeing" integer, - "GeneralHealthStatus" integer, - "DentalHealthStatus" integer, - "MentalHealthStatus" integer, - "PregnancyStatus" integer, - "DueDate" date, - "LifeValue" integer, - "SupportFromOthers" integer, - "BounceBack" integer, - "FeelingFrequency" integer, - "DataCollectionStage" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateDeleted_idx3"; -- --- Name: hmis_2022_health_and_dvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_health_and_dvs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateDeleted_idx4"; -- --- Name: hmis_2022_health_and_dvs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_health_and_dvs_id_seq OWNED BY public.hmis_2022_health_and_dvs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateUpdated_idx"; -- --- Name: hmis_2022_income_benefits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_income_benefits ( - id bigint NOT NULL, - "IncomeBenefitsID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "IncomeFromAnySource" integer, - "TotalMonthlyIncome" character varying, - "Earned" integer, - "EarnedAmount" character varying, - "Unemployment" integer, - "UnemploymentAmount" character varying, - "SSI" integer, - "SSIAmount" character varying, - "SSDI" integer, - "SSDIAmount" character varying, - "VADisabilityService" integer, - "VADisabilityServiceAmount" character varying, - "VADisabilityNonService" integer, - "VADisabilityNonServiceAmount" character varying, - "PrivateDisability" integer, - "PrivateDisabilityAmount" character varying, - "WorkersComp" integer, - "WorkersCompAmount" character varying, - "TANF" integer, - "TANFAmount" character varying, - "GA" integer, - "GAAmount" character varying, - "SocSecRetirement" integer, - "SocSecRetirementAmount" character varying, - "Pension" integer, - "PensionAmount" character varying, - "ChildSupport" integer, - "ChildSupportAmount" character varying, - "Alimony" integer, - "AlimonyAmount" character varying, - "OtherIncomeSource" integer, - "OtherIncomeAmount" character varying, - "OtherIncomeSourceIdentify" character varying, - "BenefitsFromAnySource" integer, - "SNAP" integer, - "WIC" integer, - "TANFChildCare" integer, - "TANFTransportation" integer, - "OtherTANF" integer, - "OtherBenefitsSource" integer, - "OtherBenefitsSourceIdentify" character varying, - "InsuranceFromAnySource" integer, - "Medicaid" integer, - "NoMedicaidReason" integer, - "Medicare" integer, - "NoMedicareReason" integer, - "SCHIP" integer, - "NoSCHIPReason" integer, - "VAMedicalServices" integer, - "NoVAMedReason" integer, - "EmployerProvided" integer, - "NoEmployerProvidedReason" integer, - "COBRA" integer, - "NoCOBRAReason" integer, - "PrivatePay" integer, - "NoPrivatePayReason" integer, - "StateHealthIns" integer, - "NoStateHealthInsReason" integer, - "IndianHealthServices" integer, - "NoIndianHealthServicesReason" integer, - "OtherInsurance" integer, - "OtherInsuranceIdentify" character varying, - "HIVAIDSAssistance" integer, - "NoHIVAIDSAssistanceReason" integer, - "ADAP" integer, - "NoADAPReason" integer, - "RyanWhiteMedDent" integer, - "NoRyanWhiteReason" integer, - "ConnectionWithSOAR" integer, - "DataCollectionStage" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateUpdated_idx1"; -- --- Name: hmis_2022_income_benefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_income_benefits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateUpdated_idx2"; -- --- Name: hmis_2022_income_benefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_income_benefits_id_seq OWNED BY public.hmis_2022_income_benefits.id; +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateUpdated_idx3"; -- --- Name: hmis_2022_inventories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_inventories ( - id bigint NOT NULL, - "InventoryID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "HouseholdType" integer, - "Availability" integer, - "UnitInventory" integer, - "BedInventory" integer, - "CHVetBedInventory" integer, - "YouthVetBedInventory" integer, - "VetBedInventory" integer, - "CHYouthBedInventory" integer, - "YouthBedInventory" integer, - "CHBedInventory" integer, - "OtherBedInventory" integer, - "ESBedType" integer, - "InventoryStartDate" date, - "InventoryEndDate" date, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_DateUpdated_idx4"; -- --- Name: hmis_2022_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_PersonalID_impo_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_inventories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_EnrollmentID_PersonalID_impo_idx1"; -- --- Name: hmis_2022_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_PersonalID_impor_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_inventories_id_seq OWNED BY public.hmis_2022_inventories.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_EnrollmentID_PersonalID_impor_idx"; -- --- Name: hmis_2022_organizations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_organizations ( - id bigint NOT NULL, - "OrganizationID" character varying, - "OrganizationName" character varying, - "VictimServiceProvider" integer, - "OrganizationCommonName" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_EnrollmentID_idx"; -- --- Name: hmis_2022_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_organizations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_EnrollmentID_idx1"; -- --- Name: hmis_2022_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_organizations_id_seq OWNED BY public.hmis_2022_organizations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_EnrollmentID_idx2"; -- --- Name: hmis_2022_project_cocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_project_cocs ( - id bigint NOT NULL, - "ProjectCoCID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "Geocode" character varying, - "Address1" character varying, - "Address2" character varying, - "City" character varying, - "State" character varying, - "Zip" character varying, - "GeographyType" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_EnrollmentID_idx3"; -- --- Name: hmis_2022_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_project_cocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_EnrollmentID_idx4"; -- --- Name: hmis_2022_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExitDate_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_project_cocs_id_seq OWNED BY public.hmis_2022_project_cocs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExitDate_idx"; -- --- Name: hmis_2022_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExitDate_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_projects ( - id bigint NOT NULL, - "ProjectID" character varying, - "OrganizationID" character varying, - "ProjectName" character varying, - "ProjectCommonName" character varying, - "OperatingStartDate" date, - "OperatingEndDate" date, - "ContinuumProject" integer, - "ProjectType" integer, - "HousingType" integer, - "ResidentialAffiliation" integer, - "TrackingMethod" integer, - "HMISParticipatingProject" integer, - "TargetPopulation" integer, - "HOPWAMedAssistedLivingFac" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true, - "PITCount" integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExitDate_idx1"; -- --- Name: hmis_2022_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExitDate_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExitDate_idx2"; -- --- Name: hmis_2022_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExitDate_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_projects_id_seq OWNED BY public.hmis_2022_projects.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExitDate_idx3"; -- --- Name: hmis_2022_services; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExitDate_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_services ( - id bigint NOT NULL, - "ServicesID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "DateProvided" date, - "RecordType" integer, - "TypeProvided" integer, - "OtherTypeProvided" character varying, - "MovingOnOtherType" character varying, - "SubTypeProvided" integer, - "FAAmount" character varying, - "ReferralOutcome" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitDate_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExitDate_idx4"; -- --- Name: hmis_2022_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExitDate_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis2022exits_fa9a ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExitDate_idx5"; -- --- Name: hmis_2022_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExitID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_services_id_seq OWNED BY public.hmis_2022_services.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExitID_data_source_id_idx"; -- --- Name: hmis_2022_users; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExitID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_users ( - id bigint NOT NULL, - "UserID" character varying, - "UserFirstName" character varying, - "UserLastName" character varying, - "UserPhone" character varying, - "UserExtension" character varying, - "UserEmail" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExitID_idx"; -- --- Name: hmis_2022_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExitID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_users_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExitID_idx1"; -- --- Name: hmis_2022_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExitID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_users_id_seq OWNED BY public.hmis_2022_users.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExitID_idx2"; -- --- Name: hmis_2022_youth_education_statuses; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExitID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2022_youth_education_statuses ( - id bigint NOT NULL, - "YouthEducationStatusID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "CurrentSchoolAttend" integer, - "MostRecentEdStatus" integer, - "CurrentEdStatus" integer, - "DataCollectionStage" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExitID_idx3"; -- --- Name: hmis_2022_youth_education_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExitID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2022_youth_education_statuses_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExitID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExitID_idx4"; -- --- Name: hmis_2022_youth_education_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2022_youth_education_statuses_id_seq OWNED BY public.hmis_2022_youth_education_statuses.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExportID_idx"; -- --- Name: hmis_2024_affiliations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_affiliations ( - id bigint NOT NULL, - "AffiliationID" character varying, - "ProjectID" character varying, - "ResProjectID" character varying, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExportID_idx1"; -- --- Name: hmis_2024_affiliations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_affiliations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExportID_idx2"; -- --- Name: hmis_2024_affiliations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_affiliations_id_seq OWNED BY public.hmis_2024_affiliations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExportID_idx3"; -- --- Name: hmis_2024_assessment_questions; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_assessment_questions ( - id bigint NOT NULL, - "AssessmentQuestionID" character varying, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentQuestionGroup" character varying, - "AssessmentQuestionOrder" integer, - "AssessmentQuestion" character varying, - "AssessmentAnswer" character varying, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_ExportID_idx4"; -- --- Name: hmis_2024_assessment_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_assessment_questions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_PersonalID_idx"; -- --- Name: hmis_2024_assessment_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_assessment_questions_id_seq OWNED BY public.hmis_2024_assessment_questions.id; +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_PersonalID_idx1"; -- --- Name: hmis_2024_assessment_results; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_assessment_results ( - id bigint NOT NULL, - "AssessmentResultID" character varying, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentResultType" character varying, - "AssessmentResult" character varying, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_PersonalID_idx2"; + + +-- +-- Name: hmis_2022_exits_partitioned_9_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_PersonalID_idx3"; + + +-- +-- Name: hmis_2022_exits_partitioned_9_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_exits_partitioned_9_PersonalID_idx4"; -- --- Name: hmis_2024_assessment_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_assessment_results_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_exits_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_9_importer_log_id_idx; -- --- Name: hmis_2024_assessment_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_assessment_results_id_seq OWNED BY public.hmis_2024_assessment_results.id; +ALTER INDEX public.hmis_2022_exits_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_exits_partitioned_9_pkey; -- --- Name: hmis_2024_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned_9_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_assessments ( - id bigint NOT NULL, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentDate" date, - "AssessmentLocation" character varying, - "AssessmentType" integer, - "AssessmentLevel" integer, - "PrioritizationStatus" integer, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public.hmis_2022_exits_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_exits_partitioned_9_source_type_source_id_idx; -- --- Name: hmis_2024_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx10; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx10"; -- --- Name: hmis_2024_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx11; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_assessments_id_seq OWNED BY public.hmis_2024_assessments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx11"; -- --- Name: hmis_2024_ce_participations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx12; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_ce_participations ( - id bigint NOT NULL, - "CEParticipationID" character varying, - "ProjectID" character varying, - "AccessPoint" integer, - "PreventionAssessment" integer, - "CrisisAssessment" integer, - "HousingAssessment" integer, - "DirectServices" integer, - "ReceivesReferrals" integer, - "CEParticipationStatusStartDate" date, - "CEParticipationStatusEndDate" date, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx12"; -- --- Name: hmis_2024_ce_participations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx13; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_ce_participations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx13"; -- --- Name: hmis_2024_ce_participations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx14; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_ce_participations_id_seq OWNED BY public.hmis_2024_ce_participations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx14"; -- --- Name: hmis_2024_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx15; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_clients ( - id bigint NOT NULL, - "PersonalID" character varying, - "FirstName" character varying, - "MiddleName" character varying, - "LastName" character varying, - "NameSuffix" character varying, - "NameDataQuality" integer, - "SSN" character varying, - "SSNDataQuality" character varying, - "DOB" date, - "DOBDataQuality" character varying, - "AmIndAKNative" integer, - "Asian" integer, - "BlackAfAmerican" integer, - "HispanicLatinaeo" integer, - "MidEastNAfrican" integer, - "NativeHIPacific" integer, - "White" integer, - "RaceNone" integer, - "AdditionalRaceEthnicity" character varying, - "Woman" integer, - "Man" integer, - "NonBinary" integer, - "CulturallySpecific" integer, - "Transgender" integer, - "Questioning" integer, - "DifferentIdentity" integer, - "GenderNone" integer, - "DifferentIdentityText" character varying, - "VeteranStatus" integer, - "YearEnteredService" integer, - "YearSeparated" integer, - "WorldWarII" integer, - "KoreanWar" integer, - "VietnamWar" integer, - "DesertStorm" integer, - "AfghanistanOEF" integer, - "IraqOIF" integer, - "IraqOND" integer, - "OtherTheater" integer, - "MilitaryBranch" integer, - "DischargeStatus" integer, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx15"; -- --- Name: hmis_2024_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx16; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx16"; -- --- Name: hmis_2024_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx17; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_clients_id_seq OWNED BY public.hmis_2024_clients.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx17"; -- --- Name: hmis_2024_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx18; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_current_living_situations ( - id bigint NOT NULL, - "CurrentLivingSitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "CurrentLivingSituation" integer, - "CLSSubsidyType" integer, - "VerifiedBy" character varying, - "LeaveSituation14Days" integer, - "SubsequentResidence" integer, - "ResourcesToObtain" integer, - "LeaseOwn60Day" integer, - "MovedTwoOrMore" integer, - "LocationDetails" character varying, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx18"; -- --- Name: hmis_2024_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx19; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_current_living_situations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx19"; -- --- Name: hmis_2024_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx20; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_current_living_situations_id_seq OWNED BY public.hmis_2024_current_living_situations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx20"; -- --- Name: hmis_2024_disabilities; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx21; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_disabilities ( - id bigint NOT NULL, - "DisabilitiesID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "DisabilityType" integer, - "DisabilityResponse" integer, - "IndefiniteAndImpairs" integer, - "TCellCountAvailable" integer, - "TCellCount" integer, - "TCellSource" integer, - "ViralLoadAvailable" integer, - "ViralLoad" integer, - "ViralLoadSource" integer, - "AntiRetroviral" integer, - "DataCollectionStage" integer, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx21"; -- --- Name: hmis_2024_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx22; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_disabilities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx22"; -- --- Name: hmis_2024_disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx23; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_disabilities_id_seq OWNED BY public.hmis_2024_disabilities.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx23"; -- --- Name: hmis_2024_employment_educations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx24; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_employment_educations ( - id bigint NOT NULL, - "EmploymentEducationID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "LastGradeCompleted" integer, - "SchoolStatus" integer, - "Employed" integer, - "EmploymentType" integer, - "NotEmployedReason" integer, - "DataCollectionStage" integer, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx24"; -- --- Name: hmis_2024_employment_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx25; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_employment_educations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx25"; -- --- Name: hmis_2024_employment_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx26; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_employment_educations_id_seq OWNED BY public.hmis_2024_employment_educations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx26"; -- --- Name: hmis_2024_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx27; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_enrollments ( - id bigint NOT NULL, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ProjectID" character varying, - "EntryDate" date, - "HouseholdID" character varying, - "RelationshipToHoH" integer, - "EnrollmentCoC" character varying, - "LivingSituation" integer, - "RentalSubsidyType" integer, - "LengthOfStay" integer, - "LOSUnderThreshold" integer, - "PreviousStreetESSH" integer, - "DateToStreetESSH" date, - "TimesHomelessPastThreeYears" integer, - "MonthsHomelessPastThreeYears" integer, - "DisablingCondition" integer, - "DateOfEngagement" date, - "MoveInDate" date, - "DateOfPATHStatus" date, - "ClientEnrolledInPATH" integer, - "ReasonNotEnrolled" integer, - "PercentAMI" integer, - "ReferralSource" integer, - "CountOutreachReferralApproaches" integer, - "DateOfBCPStatus" date, - "EligibleForRHY" integer, - "ReasonNoServices" integer, - "RunawayYouth" integer, - "SexualOrientation" integer, - "SexualOrientationOther" character varying, - "FormerWardChildWelfare" integer, - "ChildWelfareYears" integer, - "ChildWelfareMonths" integer, - "FormerWardJuvenileJustice" integer, - "JuvenileJusticeYears" integer, - "JuvenileJusticeMonths" integer, - "UnemploymentFam" integer, - "MentalHealthDisorderFam" integer, - "PhysicalDisabilityFam" integer, - "AlcoholDrugUseDisorderFam" integer, - "InsufficientIncome" integer, - "IncarceratedParent" integer, - "VAMCStation" character varying, - "TargetScreenReqd" integer, - "TimeToHousingLoss" integer, - "AnnualPercentAMI" integer, - "LiteralHomelessHistory" integer, - "ClientLeaseholder" integer, - "HOHLeaseholder" integer, - "SubsidyAtRisk" integer, - "EvictionHistory" integer, - "CriminalRecord" integer, - "IncarceratedAdult" integer, - "PrisonDischarge" integer, - "SexOffender" integer, - "DisabledHoH" integer, - "CurrentPregnant" integer, - "SingleParent" integer, - "DependentUnder6" integer, - "HH5Plus" integer, - "CoCPrioritized" integer, - "HPScreeningScore" integer, - "ThresholdScore" integer, - "TranslationNeeded" integer, - "PreferredLanguage" integer, - "PreferredLanguageDifferent" character varying, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx27"; -- --- Name: hmis_2024_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx28; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx28"; -- --- Name: hmis_2024_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx29; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_enrollments_id_seq OWNED BY public.hmis_2024_enrollments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx29"; -- --- Name: hmis_2024_events; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx30; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_events ( - id bigint NOT NULL, - "EventID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "EventDate" date, - "Event" integer, - "ProbSolDivRRResult" integer, - "ReferralCaseManageAfter" integer, - "LocationCrisisOrPHHousing" character varying, - "ReferralResult" integer, - "ResultDate" date, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx30"; -- --- Name: hmis_2024_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx31; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx31"; -- --- Name: hmis_2024_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx32; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_events_id_seq OWNED BY public.hmis_2024_events.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx32"; -- --- Name: hmis_2024_exits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx33; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_exits ( - id bigint NOT NULL, - "ExitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ExitDate" date, - "Destination" integer, - "DestinationSubsidyType" integer, - "OtherDestination" character varying, - "HousingAssessment" integer, - "SubsidyInformation" integer, - "ProjectCompletionStatus" integer, - "EarlyExitReason" integer, - "ExchangeForSex" integer, - "ExchangeForSexPastThreeMonths" integer, - "CountOfExchangeForSex" integer, - "AskedOrForcedToExchangeForSex" integer, - "AskedOrForcedToExchangeForSexPastThreeMonths" integer, - "WorkPlaceViolenceThreats" integer, - "WorkplacePromiseDifference" integer, - "CoercedToContinueWork" integer, - "LaborExploitPastThreeMonths" integer, - "CounselingReceived" integer, - "IndividualCounseling" integer, - "FamilyCounseling" integer, - "GroupCounseling" integer, - "SessionCountAtExit" integer, - "PostExitCounselingPlan" integer, - "SessionsInPlan" integer, - "DestinationSafeClient" integer, - "DestinationSafeWorker" integer, - "PosAdultConnections" integer, - "PosPeerConnections" integer, - "PosCommunityConnections" integer, - "AftercareDate" date, - "AftercareProvided" integer, - "EmailSocialMedia" integer, - "Telephone" integer, - "InPersonIndividual" integer, - "InPersonGroup" integer, - "CMExitReason" integer, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx33"; -- --- Name: hmis_2024_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx34; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_exits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx34"; -- --- Name: hmis_2024_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx35; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_exits_id_seq OWNED BY public.hmis_2024_exits.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx35"; -- --- Name: hmis_2024_exports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx36; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_exports ( - id bigint NOT NULL, - "ExportID" character varying, - "SourceType" integer, - "SourceID" character varying, - "SourceName" character varying, - "SourceContactFirst" character varying, - "SourceContactLast" character varying, - "SourceContactPhone" character varying, - "SourceContactExtension" character varying, - "SourceContactEmail" character varying, - "ExportDate" timestamp(6) without time zone, - "ExportStartDate" date, - "ExportEndDate" date, - "SoftwareName" character varying, - "SoftwareVersion" character varying, - "CSVVersion" character varying, - "ExportPeriodType" integer, - "ExportDirective" integer, - "HashStatus" integer, - "ImplementationID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx36"; -- --- Name: hmis_2024_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx37; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_exports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx37"; -- --- Name: hmis_2024_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx38; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_exports_id_seq OWNED BY public.hmis_2024_exports.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx38"; -- --- Name: hmis_2024_funders; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx39; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_funders ( - id bigint NOT NULL, - "FunderID" character varying, - "ProjectID" character varying, - "Funder" integer, - "OtherFunder" character varying, - "GrantID" character varying, - "StartDate" date, - "EndDate" date, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx39"; -- --- Name: hmis_2024_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx40; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_funders_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx40"; -- --- Name: hmis_2024_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx41; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_funders_id_seq OWNED BY public.hmis_2024_funders.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx41"; -- --- Name: hmis_2024_health_and_dvs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx42; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_health_and_dvs ( - id bigint NOT NULL, - "HealthAndDVID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "DomesticViolenceSurvivor" integer, - "WhenOccurred" integer, - "CurrentlyFleeing" integer, - "GeneralHealthStatus" integer, - "DentalHealthStatus" integer, - "MentalHealthStatus" integer, - "PregnancyStatus" integer, - "DueDate" date, - "DataCollectionStage" integer, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx42"; -- --- Name: hmis_2024_health_and_dvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx43; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_health_and_dvs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx43"; -- --- Name: hmis_2024_health_and_dvs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx44; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_health_and_dvs_id_seq OWNED BY public.hmis_2024_health_and_dvs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx44"; -- --- Name: hmis_2024_hmis_participations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx45; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_hmis_participations ( - id bigint NOT NULL, - "HMISParticipationID" character varying, - "ProjectID" character varying, - "HMISParticipationType" integer, - "HMISParticipationStatusStartDate" date, - "HMISParticipationStatusEndDate" date, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx45"; -- --- Name: hmis_2024_hmis_participations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx46; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_hmis_participations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx46"; -- --- Name: hmis_2024_hmis_participations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx47; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_hmis_participations_id_seq OWNED BY public.hmis_2024_hmis_participations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx47"; -- --- Name: hmis_2024_income_benefits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx48; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_income_benefits ( - id bigint NOT NULL, - "IncomeBenefitsID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "IncomeFromAnySource" integer, - "TotalMonthlyIncome" character varying, - "Earned" integer, - "EarnedAmount" character varying, - "Unemployment" integer, - "UnemploymentAmount" character varying, - "SSI" integer, - "SSIAmount" character varying, - "SSDI" integer, - "SSDIAmount" character varying, - "VADisabilityService" integer, - "VADisabilityServiceAmount" character varying, - "VADisabilityNonService" integer, - "VADisabilityNonServiceAmount" character varying, - "PrivateDisability" integer, - "PrivateDisabilityAmount" character varying, - "WorkersComp" integer, - "WorkersCompAmount" character varying, - "TANF" integer, - "TANFAmount" character varying, - "GA" integer, - "GAAmount" character varying, - "SocSecRetirement" integer, - "SocSecRetirementAmount" character varying, - "Pension" integer, - "PensionAmount" character varying, - "ChildSupport" integer, - "ChildSupportAmount" character varying, - "Alimony" integer, - "AlimonyAmount" character varying, - "OtherIncomeSource" integer, - "OtherIncomeAmount" character varying, - "OtherIncomeSourceIdentify" character varying, - "BenefitsFromAnySource" integer, - "SNAP" integer, - "WIC" integer, - "TANFChildCare" integer, - "TANFTransportation" integer, - "OtherTANF" integer, - "OtherBenefitsSource" integer, - "OtherBenefitsSourceIdentify" character varying, - "InsuranceFromAnySource" integer, - "Medicaid" integer, - "NoMedicaidReason" integer, - "Medicare" integer, - "NoMedicareReason" integer, - "SCHIP" integer, - "NoSCHIPReason" integer, - "VHAServices" integer, - "NoVHAReason" integer, - "EmployerProvided" integer, - "NoEmployerProvidedReason" integer, - "COBRA" integer, - "NoCOBRAReason" integer, - "PrivatePay" integer, - "NoPrivatePayReason" integer, - "StateHealthIns" integer, - "NoStateHealthInsReason" integer, - "IndianHealthServices" integer, - "NoIndianHealthServicesReason" integer, - "OtherInsurance" integer, - "OtherInsuranceIdentify" character varying, - "ADAP" integer, - "NoADAPReason" integer, - "RyanWhiteMedDent" integer, - "NoRyanWhiteReason" integer, - "ConnectionWithSOAR" integer, - "DataCollectionStage" integer, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx48"; -- --- Name: hmis_2024_income_benefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx49; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_income_benefits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx49"; -- --- Name: hmis_2024_income_benefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx50; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_income_benefits_id_seq OWNED BY public.hmis_2024_income_benefits.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx50"; -- --- Name: hmis_2024_inventories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx51; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_inventories ( - id bigint NOT NULL, - "InventoryID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "HouseholdType" integer, - "Availability" integer, - "UnitInventory" integer, - "BedInventory" integer, - "CHVetBedInventory" integer, - "YouthVetBedInventory" integer, - "VetBedInventory" integer, - "CHYouthBedInventory" integer, - "YouthBedInventory" integer, - "CHBedInventory" integer, - "OtherBedInventory" integer, - "ESBedType" integer, - "InventoryStartDate" date, - "InventoryEndDate" date, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx51"; -- --- Name: hmis_2024_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx52; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_inventories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx52"; -- --- Name: hmis_2024_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx53; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_inventories_id_seq OWNED BY public.hmis_2024_inventories.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx53"; -- --- Name: hmis_2024_organizations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx54; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_organizations ( - id bigint NOT NULL, - "OrganizationID" character varying, - "OrganizationName" character varying, - "VictimServiceProvider" integer, - "OrganizationCommonName" character varying, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx54"; -- --- Name: hmis_2024_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx55; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_organizations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx55"; -- --- Name: hmis_2024_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx56; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_organizations_id_seq OWNED BY public.hmis_2024_organizations.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx56"; -- --- Name: hmis_2024_project_cocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx57; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_project_cocs ( - id bigint NOT NULL, - "ProjectCoCID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "Geocode" character varying, - "Address1" character varying, - "Address2" character varying, - "City" character varying, - "State" character varying, - "Zip" character varying, - "GeographyType" integer, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx57"; -- --- Name: hmis_2024_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx58; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_project_cocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx58"; -- --- Name: hmis_2024_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx59; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_project_cocs_id_seq OWNED BY public.hmis_2024_project_cocs.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx59"; -- --- Name: hmis_2024_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx60; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_projects ( - id bigint NOT NULL, - "ProjectID" character varying, - "OrganizationID" character varying, - "ProjectName" character varying, - "ProjectCommonName" character varying, - "OperatingStartDate" date, - "OperatingEndDate" date, - "ContinuumProject" integer, - "ProjectType" integer, - "HousingType" integer, - "RRHSubType" integer, - "ResidentialAffiliation" integer, - "TargetPopulation" integer, - "HOPWAMedAssistedLivingFac" integer, - "PITCount" integer, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx60"; -- --- Name: hmis_2024_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx61; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx61"; -- --- Name: hmis_2024_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx62; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_projects_id_seq OWNED BY public.hmis_2024_projects.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx62"; -- --- Name: hmis_2024_services; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx63; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_services ( - id bigint NOT NULL, - "ServicesID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "DateProvided" date, - "RecordType" integer, - "TypeProvided" integer, - "OtherTypeProvided" character varying, - "MovingOnOtherType" character varying, - "SubTypeProvided" integer, - "FAAmount" character varying, - "FAStartDate" date, - "FAEndDate" date, - "ReferralOutcome" integer, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx63"; -- --- Name: hmis_2024_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx64; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx64"; -- --- Name: hmis_2024_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx65; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_services_id_seq OWNED BY public.hmis_2024_services.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx65"; -- --- Name: hmis_2024_users; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx66; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_users ( - id bigint NOT NULL, - "UserID" character varying, - "UserFirstName" character varying, - "UserLastName" character varying, - "UserPhone" character varying, - "UserExtension" character varying, - "UserEmail" character varying, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx66"; -- --- Name: hmis_2024_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx67; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_users_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx67"; -- --- Name: hmis_2024_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx68; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_users_id_seq OWNED BY public.hmis_2024_users.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx68"; -- --- Name: hmis_2024_youth_education_statuses; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx69; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_2024_youth_education_statuses ( - id bigint NOT NULL, - "YouthEducationStatusID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" date, - "CurrentSchoolAttend" integer, - "MostRecentEdStatus" integer, - "CurrentEdStatus" integer, - "DataCollectionStage" integer, - "DateCreated" timestamp(6) without time zone, - "DateUpdated" timestamp(6) without time zone, - "UserID" character varying, - "DateDeleted" timestamp(6) without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - should_import boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx69"; -- --- Name: hmis_2024_youth_education_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx70; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_2024_youth_education_statuses_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx70"; -- --- Name: hmis_2024_youth_education_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx71; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_2024_youth_education_statuses_id_seq OWNED BY public.hmis_2024_youth_education_statuses.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx71"; -- --- Name: hmis_active_ranges; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx72; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_active_ranges ( - id bigint NOT NULL, - entity_type character varying, - entity_id bigint, - start_date date NOT NULL, - end_date date, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - user_id character varying NOT NULL -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx72"; -- --- Name: hmis_active_ranges_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx73; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_active_ranges_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx73"; -- --- Name: hmis_active_ranges_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx74; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_active_ranges_id_seq OWNED BY public.hmis_active_ranges.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx74"; -- --- Name: hmis_aggregated_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx75; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_aggregated_enrollments ( - id bigint NOT NULL, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ProjectID" character varying, - "EntryDate" date, - "HouseholdID" character varying, - "RelationshipToHoH" integer, - "LivingSituation" integer, - "LengthOfStay" integer, - "LOSUnderThreshold" integer, - "PreviousStreetESSH" integer, - "DateToStreetESSH" date, - "TimesHomelessPastThreeYears" integer, - "MonthsHomelessPastThreeYears" integer, - "DisablingCondition" integer, - "DateOfEngagement" date, - "MoveInDate" date, - "DateOfPATHStatus" date, - "ClientEnrolledInPATH" integer, - "ReasonNotEnrolled" integer, - "WorstHousingSituation" integer, - "PercentAMI" integer, - "LastPermanentStreet" character varying, - "LastPermanentCity" character varying, - "LastPermanentState" character varying, - "LastPermanentZIP" character varying, - "AddressDataQuality" integer, - "ReferralSource" integer, - "CountOutreachReferralApproaches" integer, - "DateOfBCPStatus" date, - "EligibleForRHY" integer, - "ReasonNoServices" integer, - "RunawayYouth" integer, - "SexualOrientation" integer, - "SexualOrientationOther" character varying, - "FormerWardChildWelfare" integer, - "ChildWelfareYears" integer, - "ChildWelfareMonths" integer, - "FormerWardJuvenileJustice" integer, - "JuvenileJusticeYears" integer, - "JuvenileJusticeMonths" integer, - "UnemploymentFam" integer, - "MentalHealthDisorderFam" integer, - "PhysicalDisabilityFam" integer, - "AlcoholDrugUseDisorderFam" integer, - "InsufficientIncome" integer, - "IncarceratedParent" integer, - "VAMCStation" character varying, - "TargetScreenReqd" integer, - "TimeToHousingLoss" integer, - "AnnualPercentAMI" integer, - "LiteralHomelessHistory" integer, - "ClientLeaseholder" integer, - "HOHLeaseholder" integer, - "SubsidyAtRisk" integer, - "EvictionHistory" integer, - "CriminalRecord" integer, - "IncarceratedAdult" integer, - "PrisonDischarge" integer, - "SexOffender" integer, - "DisabledHoH" integer, - "CurrentPregnant" integer, - "SingleParent" integer, - "DependentUnder6" integer, - "HH5Plus" integer, - "CoCPrioritized" integer, - "HPScreeningScore" integer, - "ThresholdScore" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - "EnrollmentCoC" character varying, - "RentalSubsidyType" integer, - "TranslationNeeded" integer, - "PreferredLanguage" integer, - "PreferredLanguageDifferent" character varying -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx75"; + + +-- +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx76; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx76"; -- --- Name: hmis_aggregated_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx77; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_aggregated_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx77"; -- --- Name: hmis_aggregated_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx78; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_aggregated_enrollments_id_seq OWNED BY public.hmis_aggregated_enrollments.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx78"; -- --- Name: hmis_aggregated_exits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx79; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_aggregated_exits ( - id bigint NOT NULL, - "ExitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ExitDate" date, - "Destination" integer, - "OtherDestination" character varying, - "HousingAssessment" integer, - "SubsidyInformation" integer, - "ProjectCompletionStatus" integer, - "EarlyExitReason" integer, - "ExchangeForSex" integer, - "ExchangeForSexPastThreeMonths" integer, - "CountOfExchangeForSex" integer, - "AskedOrForcedToExchangeForSex" integer, - "AskedOrForcedToExchangeForSexPastThreeMonths" integer, - "WorkPlaceViolenceThreats" integer, - "WorkplacePromiseDifference" integer, - "CoercedToContinueWork" integer, - "LaborExploitPastThreeMonths" integer, - "CounselingReceived" integer, - "IndividualCounseling" integer, - "FamilyCounseling" integer, - "GroupCounseling" integer, - "SessionCountAtExit" integer, - "PostExitCounselingPlan" integer, - "SessionsInPlan" integer, - "DestinationSafeClient" integer, - "DestinationSafeWorker" integer, - "PosAdultConnections" integer, - "PosPeerConnections" integer, - "PosCommunityConnections" integer, - "AftercareDate" date, - "AftercareProvided" integer, - "EmailSocialMedia" integer, - "Telephone" integer, - "InPersonIndividual" integer, - "InPersonGroup" integer, - "CMExitReason" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer NOT NULL, - importer_log_id integer NOT NULL, - pre_processed_at timestamp without time zone NOT NULL, - source_hash character varying, - source_id integer NOT NULL, - source_type character varying NOT NULL, - dirty_at timestamp without time zone, - clean_at timestamp without time zone, - "DestinationSubsidyType" integer -); +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx79"; -- --- Name: hmis_aggregated_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx80; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_aggregated_exits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_importe_idx" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx80"; -- --- Name: hmis_aggregated_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx81; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_aggregated_exits_id_seq OWNED BY public.hmis_aggregated_exits.id; +ALTER INDEX public."hmis_2022_exits_partitioned_EnrollmentID_PersonalID_import_idx1" ATTACH PARTITION hmis."hmis_2022_exits_partitioned__EnrollmentID_PersonalID_impo_idx81"; -- --- Name: hmis_assessment_details; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx100; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_assessment_details ( - id bigint NOT NULL, - assessment_id bigint, - definition_id bigint, - data_collection_stage integer NOT NULL, - role character varying NOT NULL, - status character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - "values" jsonb, - hud_values jsonb, - assessment_processor_id bigint -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx100"; -- --- Name: COLUMN hmis_assessment_details.data_collection_stage; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx101; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.hmis_assessment_details.data_collection_stage IS 'One of the HMIS 5.03.1 or 99 for local use'; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx101"; -- --- Name: COLUMN hmis_assessment_details.role; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx102; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.hmis_assessment_details.role IS 'Usually one of INTAKE, UPDATE, ANNUAL, EXIT, POST_EXIT, CE, CUSTOM'; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx102"; -- --- Name: COLUMN hmis_assessment_details.status; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx103; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.hmis_assessment_details.status IS 'Usually one of submitted, draft'; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx103"; -- --- Name: hmis_assessment_details_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx104; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_assessment_details_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx104"; -- --- Name: hmis_assessment_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx105; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_assessment_details_id_seq OWNED BY public.hmis_assessment_details.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx105"; -- --- Name: hmis_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx106; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_assessments ( - id integer NOT NULL, - assessment_id integer NOT NULL, - site_id integer NOT NULL, - site_name character varying, - name character varying NOT NULL, - "fetch" boolean DEFAULT false NOT NULL, - active boolean DEFAULT true NOT NULL, - last_fetched_at timestamp without time zone, - data_source_id integer NOT NULL, - confidential boolean DEFAULT false NOT NULL, - exclude_from_window boolean DEFAULT false NOT NULL, - details_in_window_with_release boolean DEFAULT false NOT NULL, - health boolean DEFAULT false NOT NULL, - vispdat boolean DEFAULT false, - pathways boolean DEFAULT false, - ssm boolean DEFAULT false, - health_case_note boolean DEFAULT false, - health_has_qualifying_activities boolean DEFAULT false, - hud_assessment boolean DEFAULT false, - triage_assessment boolean DEFAULT false, - rrh_assessment boolean DEFAULT false, - covid_19_impact_assessment boolean DEFAULT false, - with_location_data boolean DEFAULT false NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx106"; -- --- Name: hmis_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx107; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx107"; -- --- Name: hmis_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx108; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_assessments_id_seq OWNED BY public.hmis_assessments.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx108"; -- --- Name: hmis_case_notes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx109; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_case_notes ( - id bigint NOT NULL, - client_id bigint NOT NULL, - user_id bigint NOT NULL, - organization_id bigint, - project_id bigint, - enrollment_id bigint, - source_type character varying, - source_id bigint, - information_date date NOT NULL, - note text, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx109"; -- --- Name: hmis_case_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx110; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_case_notes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx110"; -- --- Name: hmis_case_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx111; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_case_notes_id_seq OWNED BY public.hmis_case_notes.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx111"; -- --- Name: hmis_client_alerts; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx112; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_client_alerts ( - id bigint NOT NULL, - note text NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - expiration_date date, - created_by_id bigint NOT NULL, - client_id bigint NOT NULL, - priority character varying -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx112"; -- --- Name: hmis_client_alerts_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx113; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_client_alerts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx113"; -- --- Name: hmis_client_alerts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx114; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_client_alerts_id_seq OWNED BY public.hmis_client_alerts.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx114"; -- --- Name: hmis_client_attributes_defined_text; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx115; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_client_attributes_defined_text ( - id integer NOT NULL, - client_id integer, - data_source_id integer, - consent_form_status character varying, - consent_form_updated_at timestamp without time zone, - source_id character varying, - source_class character varying -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx115"; -- --- Name: hmis_client_attributes_defined_text_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx116; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_client_attributes_defined_text_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx116"; -- --- Name: hmis_client_attributes_defined_text_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx117; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_client_attributes_defined_text_id_seq OWNED BY public.hmis_client_attributes_defined_text.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx117"; -- --- Name: hmis_client_merge_audits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx118; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_client_merge_audits ( - id bigint NOT NULL, - pre_merge_state jsonb NOT NULL, - actor_id bigint NOT NULL, - merged_at timestamp without time zone NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx118"; -- --- Name: hmis_client_merge_audits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx119; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_client_merge_audits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx119"; -- --- Name: hmis_client_merge_audits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx120; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_client_merge_audits_id_seq OWNED BY public.hmis_client_merge_audits.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx120"; -- --- Name: hmis_client_merge_histories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx121; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_client_merge_histories ( - id bigint NOT NULL, - retained_client_id bigint NOT NULL, - deleted_client_id bigint NOT NULL, - client_merge_audit_id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx121"; -- --- Name: COLUMN hmis_client_merge_histories.client_merge_audit_id; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx122; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.hmis_client_merge_histories.client_merge_audit_id IS 'Audit log for the merge that deleted the deleted_client'; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx122"; -- --- Name: hmis_client_merge_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx123; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_client_merge_histories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx123"; -- --- Name: hmis_client_merge_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx124; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_client_merge_histories_id_seq OWNED BY public.hmis_client_merge_histories.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx124"; -- --- Name: hmis_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx125; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_clients ( - id integer NOT NULL, - client_id integer, - response text, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - consent_form_status character varying, - case_manager_name character varying, - case_manager_attributes text, - assigned_staff_name character varying, - assigned_staff_attributes text, - counselor_name character varying, - counselor_attributes text, - outreach_counselor_name character varying, - subject_id integer, - processed_fields jsonb, - consent_confirmed_on date, - consent_expires_on date, - eto_last_updated timestamp without time zone, - sexual_orientation character varying -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx125"; -- --- Name: hmis_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx126; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx126"; -- --- Name: hmis_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx127; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_clients_id_seq OWNED BY public.hmis_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx127"; -- --- Name: hmis_csv_2020_affiliations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx128; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_affiliations ( - id bigint NOT NULL, - "AffiliationID" character varying, - "ProjectID" character varying, - "ResProjectID" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx128"; -- --- Name: hmis_csv_2020_affiliations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx129; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_affiliations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx129"; -- --- Name: hmis_csv_2020_affiliations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx130; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_affiliations_id_seq OWNED BY public.hmis_csv_2020_affiliations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx130"; -- --- Name: hmis_csv_2020_assessment_questions; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx131; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_assessment_questions ( - id bigint NOT NULL, - "AssessmentQuestionID" character varying, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentQuestionGroup" character varying, - "AssessmentQuestionOrder" character varying, - "AssessmentQuestion" character varying, - "AssessmentAnswer" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx131"; -- --- Name: hmis_csv_2020_assessment_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx132; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_assessment_questions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx132"; -- --- Name: hmis_csv_2020_assessment_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx133; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_assessment_questions_id_seq OWNED BY public.hmis_csv_2020_assessment_questions.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx133"; -- --- Name: hmis_csv_2020_assessment_results; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx134; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_assessment_results ( - id bigint NOT NULL, - "AssessmentResultID" character varying, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentResultType" character varying, - "AssessmentResult" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx134"; -- --- Name: hmis_csv_2020_assessment_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx135; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_assessment_results_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx135"; -- --- Name: hmis_csv_2020_assessment_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx136; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_assessment_results_id_seq OWNED BY public.hmis_csv_2020_assessment_results.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx136"; -- --- Name: hmis_csv_2020_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx137; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_assessments ( - id bigint NOT NULL, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentDate" character varying, - "AssessmentLocation" character varying, - "AssessmentType" character varying, - "AssessmentLevel" character varying, - "PrioritizationStatus" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx137"; -- --- Name: hmis_csv_2020_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx138; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx138"; -- --- Name: hmis_csv_2020_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx139; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_assessments_id_seq OWNED BY public.hmis_csv_2020_assessments.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx139"; -- --- Name: hmis_csv_2020_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx140; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_clients ( - id bigint NOT NULL, - "PersonalID" character varying, - "FirstName" character varying, - "MiddleName" character varying, - "LastName" character varying, - "NameSuffix" character varying, - "NameDataQuality" character varying, - "SSN" character varying, - "SSNDataQuality" character varying, - "DOB" character varying, - "DOBDataQuality" character varying, - "AmIndAKNative" character varying, - "Asian" character varying, - "BlackAfAmerican" character varying, - "NativeHIOtherPacific" character varying, - "White" character varying, - "RaceNone" character varying, - "Ethnicity" character varying, - "Gender" character varying, - "VeteranStatus" character varying, - "YearEnteredService" character varying, - "YearSeparated" character varying, - "WorldWarII" character varying, - "KoreanWar" character varying, - "VietnamWar" character varying, - "DesertStorm" character varying, - "AfghanistanOEF" character varying, - "IraqOIF" character varying, - "IraqOND" character varying, - "OtherTheater" character varying, - "MilitaryBranch" character varying, - "DischargeStatus" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx140"; -- --- Name: hmis_csv_2020_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx141; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx141"; -- --- Name: hmis_csv_2020_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx142; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_clients_id_seq OWNED BY public.hmis_csv_2020_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx142"; -- --- Name: hmis_csv_2020_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx143; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_current_living_situations ( - id bigint NOT NULL, - "CurrentLivingSitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "CurrentLivingSituation" character varying, - "VerifiedBy" character varying, - "LeaveSituation14Days" character varying, - "SubsequentResidence" character varying, - "ResourcesToObtain" character varying, - "LeaseOwn60Day" character varying, - "MovedTwoOrMore" character varying, - "LocationDetails" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx143"; -- --- Name: hmis_csv_2020_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx144; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_current_living_situations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx144"; -- --- Name: hmis_csv_2020_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx145; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_current_living_situations_id_seq OWNED BY public.hmis_csv_2020_current_living_situations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx145"; -- --- Name: hmis_csv_2020_disabilities; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx146; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_disabilities ( - id bigint NOT NULL, - "DisabilitiesID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "DisabilityType" character varying, - "DisabilityResponse" character varying, - "IndefiniteAndImpairs" character varying, - "TCellCountAvailable" character varying, - "TCellCount" character varying, - "TCellSource" character varying, - "ViralLoadAvailable" character varying, - "ViralLoad" character varying, - "ViralLoadSource" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx146"; -- --- Name: hmis_csv_2020_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx147; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_disabilities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx147"; -- --- Name: hmis_csv_2020_disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx148; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_disabilities_id_seq OWNED BY public.hmis_csv_2020_disabilities.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx148"; -- --- Name: hmis_csv_2020_employment_educations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx149; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_employment_educations ( - id bigint NOT NULL, - "EmploymentEducationID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "LastGradeCompleted" character varying, - "SchoolStatus" character varying, - "Employed" character varying, - "EmploymentType" character varying, - "NotEmployedReason" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx149"; -- --- Name: hmis_csv_2020_employment_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx150; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_employment_educations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx150"; -- --- Name: hmis_csv_2020_employment_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx151; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_employment_educations_id_seq OWNED BY public.hmis_csv_2020_employment_educations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx151"; -- --- Name: hmis_csv_2020_enrollment_cocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx152; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_enrollment_cocs ( - id bigint NOT NULL, - "EnrollmentCoCID" character varying, - "EnrollmentID" character varying, - "HouseholdID" character varying, - "ProjectID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "CoCCode" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx152"; -- --- Name: hmis_csv_2020_enrollment_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx153; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_enrollment_cocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx153"; -- --- Name: hmis_csv_2020_enrollment_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx154; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_enrollment_cocs_id_seq OWNED BY public.hmis_csv_2020_enrollment_cocs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx154"; -- --- Name: hmis_csv_2020_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx155; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_enrollments ( - id bigint NOT NULL, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ProjectID" character varying, - "EntryDate" character varying, - "HouseholdID" character varying, - "RelationshipToHoH" character varying, - "LivingSituation" character varying, - "LengthOfStay" character varying, - "LOSUnderThreshold" character varying, - "PreviousStreetESSH" character varying, - "DateToStreetESSH" character varying, - "TimesHomelessPastThreeYears" character varying, - "MonthsHomelessPastThreeYears" character varying, - "DisablingCondition" character varying, - "DateOfEngagement" character varying, - "MoveInDate" character varying, - "DateOfPATHStatus" character varying, - "ClientEnrolledInPATH" character varying, - "ReasonNotEnrolled" character varying, - "WorstHousingSituation" character varying, - "PercentAMI" character varying, - "LastPermanentStreet" character varying, - "LastPermanentCity" character varying, - "LastPermanentState" character varying, - "LastPermanentZIP" character varying, - "AddressDataQuality" character varying, - "DateOfBCPStatus" character varying, - "EligibleForRHY" character varying, - "ReasonNoServices" character varying, - "RunawayYouth" character varying, - "SexualOrientation" character varying, - "SexualOrientationOther" character varying, - "FormerWardChildWelfare" character varying, - "ChildWelfareYears" character varying, - "ChildWelfareMonths" character varying, - "FormerWardJuvenileJustice" character varying, - "JuvenileJusticeYears" character varying, - "JuvenileJusticeMonths" character varying, - "UnemploymentFam" character varying, - "MentalHealthIssuesFam" character varying, - "PhysicalDisabilityFam" character varying, - "AlcoholDrugAbuseFam" character varying, - "InsufficientIncome" character varying, - "IncarceratedParent" character varying, - "ReferralSource" character varying, - "CountOutreachReferralApproaches" character varying, - "UrgentReferral" character varying, - "TimeToHousingLoss" character varying, - "ZeroIncome" character varying, - "AnnualPercentAMI" character varying, - "FinancialChange" character varying, - "HouseholdChange" character varying, - "EvictionHistory" character varying, - "SubsidyAtRisk" character varying, - "LiteralHomelessHistory" character varying, - "DisabledHoH" character varying, - "CriminalRecord" character varying, - "SexOffender" character varying, - "DependentUnder6" character varying, - "SingleParent" character varying, - "HH5Plus" character varying, - "IraqAfghanistan" character varying, - "FemVet" character varying, - "HPScreeningScore" character varying, - "ThresholdScore" character varying, - "VAMCStation" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx155"; -- --- Name: hmis_csv_2020_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx156; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx156"; -- --- Name: hmis_csv_2020_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx157; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_enrollments_id_seq OWNED BY public.hmis_csv_2020_enrollments.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx157"; -- --- Name: hmis_csv_2020_events; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx158; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_events ( - id bigint NOT NULL, - "EventID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "EventDate" character varying, - "Event" character varying, - "ProbSolDivRRResult" character varying, - "ReferralCaseManageAfter" character varying, - "LocationCrisisOrPHHousing" character varying, - "ReferralResult" character varying, - "ResultDate" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx158"; -- --- Name: hmis_csv_2020_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx159; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx159"; -- --- Name: hmis_csv_2020_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx160; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_events_id_seq OWNED BY public.hmis_csv_2020_events.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx160"; -- --- Name: hmis_csv_2020_exits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx161; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_exits ( - id bigint NOT NULL, - "ExitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ExitDate" character varying, - "Destination" character varying, - "OtherDestination" character varying, - "HousingAssessment" character varying, - "SubsidyInformation" character varying, - "ProjectCompletionStatus" character varying, - "EarlyExitReason" character varying, - "ExchangeForSex" character varying, - "ExchangeForSexPastThreeMonths" character varying, - "CountOfExchangeForSex" character varying, - "AskedOrForcedToExchangeForSex" character varying, - "AskedOrForcedToExchangeForSexPastThreeMonths" character varying, - "WorkPlaceViolenceThreats" character varying, - "WorkplacePromiseDifference" character varying, - "CoercedToContinueWork" character varying, - "LaborExploitPastThreeMonths" character varying, - "CounselingReceived" character varying, - "IndividualCounseling" character varying, - "FamilyCounseling" character varying, - "GroupCounseling" character varying, - "SessionCountAtExit" character varying, - "PostExitCounselingPlan" character varying, - "SessionsInPlan" character varying, - "DestinationSafeClient" character varying, - "DestinationSafeWorker" character varying, - "PosAdultConnections" character varying, - "PosPeerConnections" character varying, - "PosCommunityConnections" character varying, - "AftercareDate" character varying, - "AftercareProvided" character varying, - "EmailSocialMedia" character varying, - "Telephone" character varying, - "InPersonIndividual" character varying, - "InPersonGroup" character varying, - "CMExitReason" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx161"; -- --- Name: hmis_csv_2020_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx162; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_exits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx162"; -- --- Name: hmis_csv_2020_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx163; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_exits_id_seq OWNED BY public.hmis_csv_2020_exits.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx163"; -- --- Name: hmis_csv_2020_exports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx164; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_exports ( - id bigint NOT NULL, - "ExportID" character varying, - "SourceType" character varying, - "SourceID" character varying, - "SourceName" character varying, - "SourceContactFirst" character varying, - "SourceContactLast" character varying, - "SourceContactPhone" character varying, - "SourceContactExtension" character varying, - "SourceContactEmail" character varying, - "ExportDate" character varying, - "ExportStartDate" character varying, - "ExportEndDate" character varying, - "SoftwareName" character varying, - "SoftwareVersion" character varying, - "ExportPeriodType" character varying, - "ExportDirective" character varying, - "HashStatus" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx164"; -- --- Name: hmis_csv_2020_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx165; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_exports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx165"; -- --- Name: hmis_csv_2020_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx166; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_exports_id_seq OWNED BY public.hmis_csv_2020_exports.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx166"; -- --- Name: hmis_csv_2020_funders; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx167; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_funders ( - id bigint NOT NULL, - "FunderID" character varying, - "ProjectID" character varying, - "Funder" character varying, - "OtherFunder" character varying, - "GrantID" character varying, - "StartDate" character varying, - "EndDate" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx167"; -- --- Name: hmis_csv_2020_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx168; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_funders_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx168"; -- --- Name: hmis_csv_2020_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx169; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_funders_id_seq OWNED BY public.hmis_csv_2020_funders.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx169"; -- --- Name: hmis_csv_2020_health_and_dvs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx170; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_health_and_dvs ( - id bigint NOT NULL, - "HealthAndDVID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "DomesticViolenceVictim" character varying, - "WhenOccurred" character varying, - "CurrentlyFleeing" character varying, - "GeneralHealthStatus" character varying, - "DentalHealthStatus" character varying, - "MentalHealthStatus" character varying, - "PregnancyStatus" character varying, - "DueDate" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx170"; -- --- Name: hmis_csv_2020_health_and_dvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx171; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_health_and_dvs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx171"; -- --- Name: hmis_csv_2020_health_and_dvs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx172; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_health_and_dvs_id_seq OWNED BY public.hmis_csv_2020_health_and_dvs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx172"; -- --- Name: hmis_csv_2020_income_benefits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx173; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_income_benefits ( - id bigint NOT NULL, - "IncomeBenefitsID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "IncomeFromAnySource" character varying, - "TotalMonthlyIncome" character varying, - "Earned" character varying, - "EarnedAmount" character varying, - "Unemployment" character varying, - "UnemploymentAmount" character varying, - "SSI" character varying, - "SSIAmount" character varying, - "SSDI" character varying, - "SSDIAmount" character varying, - "VADisabilityService" character varying, - "VADisabilityServiceAmount" character varying, - "VADisabilityNonService" character varying, - "VADisabilityNonServiceAmount" character varying, - "PrivateDisability" character varying, - "PrivateDisabilityAmount" character varying, - "WorkersComp" character varying, - "WorkersCompAmount" character varying, - "TANF" character varying, - "TANFAmount" character varying, - "GA" character varying, - "GAAmount" character varying, - "SocSecRetirement" character varying, - "SocSecRetirementAmount" character varying, - "Pension" character varying, - "PensionAmount" character varying, - "ChildSupport" character varying, - "ChildSupportAmount" character varying, - "Alimony" character varying, - "AlimonyAmount" character varying, - "OtherIncomeSource" character varying, - "OtherIncomeAmount" character varying, - "OtherIncomeSourceIdentify" character varying, - "BenefitsFromAnySource" character varying, - "SNAP" character varying, - "WIC" character varying, - "TANFChildCare" character varying, - "TANFTransportation" character varying, - "OtherTANF" character varying, - "OtherBenefitsSource" character varying, - "OtherBenefitsSourceIdentify" character varying, - "InsuranceFromAnySource" character varying, - "Medicaid" character varying, - "NoMedicaidReason" character varying, - "Medicare" character varying, - "NoMedicareReason" character varying, - "SCHIP" character varying, - "NoSCHIPReason" character varying, - "VAMedicalServices" character varying, - "NoVAMedReason" character varying, - "EmployerProvided" character varying, - "NoEmployerProvidedReason" character varying, - "COBRA" character varying, - "NoCOBRAReason" character varying, - "PrivatePay" character varying, - "NoPrivatePayReason" character varying, - "StateHealthIns" character varying, - "NoStateHealthInsReason" character varying, - "IndianHealthServices" character varying, - "NoIndianHealthServicesReason" character varying, - "OtherInsurance" character varying, - "OtherInsuranceIdentify" character varying, - "HIVAIDSAssistance" character varying, - "NoHIVAIDSAssistanceReason" character varying, - "ADAP" character varying, - "NoADAPReason" character varying, - "ConnectionWithSOAR" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx173"; -- --- Name: hmis_csv_2020_income_benefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx174; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_income_benefits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx174"; -- --- Name: hmis_csv_2020_income_benefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx175; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_income_benefits_id_seq OWNED BY public.hmis_csv_2020_income_benefits.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx175"; -- --- Name: hmis_csv_2020_inventories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx176; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_inventories ( - id bigint NOT NULL, - "InventoryID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "HouseholdType" character varying, - "Availability" character varying, - "UnitInventory" character varying, - "BedInventory" character varying, - "CHVetBedInventory" character varying, - "YouthVetBedInventory" character varying, - "VetBedInventory" character varying, - "CHYouthBedInventory" character varying, - "YouthBedInventory" character varying, - "CHBedInventory" character varying, - "OtherBedInventory" character varying, - "ESBedType" character varying, - "InventoryStartDate" character varying, - "InventoryEndDate" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx176"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx177; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx177"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx178; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx178"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx179; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx179"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx180; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx180"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx181; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx181"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx182; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx182"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx183; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx183"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx184; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx184"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx185; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx185"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx186; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx186"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx187; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx187"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx188; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx188"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx189; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx189"; -- --- Name: hmis_csv_2020_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx190; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_inventories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx190"; -- --- Name: hmis_csv_2020_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx191; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_inventories_id_seq OWNED BY public.hmis_csv_2020_inventories.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx191"; -- --- Name: hmis_csv_2020_organizations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx192; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_organizations ( - id bigint NOT NULL, - "OrganizationID" character varying, - "OrganizationName" character varying, - "VictimServicesProvider" character varying, - "OrganizationCommonName" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx192"; -- --- Name: hmis_csv_2020_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx193; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_organizations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx193"; -- --- Name: hmis_csv_2020_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx194; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_organizations_id_seq OWNED BY public.hmis_csv_2020_organizations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx194"; -- --- Name: hmis_csv_2020_project_cocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx195; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_project_cocs ( - id bigint NOT NULL, - "ProjectCoCID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "Geocode" character varying, - "Address1" character varying, - "Address2" character varying, - "City" character varying, - "State" character varying, - "Zip" character varying, - "GeographyType" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx195"; -- --- Name: hmis_csv_2020_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx196; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_project_cocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx196"; -- --- Name: hmis_csv_2020_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx197; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_project_cocs_id_seq OWNED BY public.hmis_csv_2020_project_cocs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx197"; -- --- Name: hmis_csv_2020_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx198; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_projects ( - id bigint NOT NULL, - "ProjectID" character varying, - "OrganizationID" character varying, - "ProjectName" character varying, - "ProjectCommonName" character varying, - "OperatingStartDate" character varying, - "OperatingEndDate" character varying, - "ContinuumProject" character varying, - "ProjectType" character varying, - "HousingType" character varying, - "ResidentialAffiliation" character varying, - "TrackingMethod" character varying, - "HMISParticipatingProject" character varying, - "TargetPopulation" character varying, - "PITCount" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx198"; -- --- Name: hmis_csv_2020_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx199; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx199"; -- --- Name: hmis_csv_2020_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx200; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_projects_id_seq OWNED BY public.hmis_csv_2020_projects.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx200"; -- --- Name: hmis_csv_2020_services; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx201; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_services ( - id bigint NOT NULL, - "ServicesID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "DateProvided" character varying, - "RecordType" character varying, - "TypeProvided" character varying, - "OtherTypeProvided" character varying, - "SubTypeProvided" character varying, - "FAAmount" character varying, - "ReferralOutcome" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx201"; -- --- Name: hmis_csv_2020_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx202; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx202"; -- --- Name: hmis_csv_2020_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx203; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_services_id_seq OWNED BY public.hmis_csv_2020_services.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx203"; -- --- Name: hmis_csv_2020_users; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx204; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2020_users ( - id bigint NOT NULL, - "UserID" character varying, - "UserFirstName" character varying, - "UserLastName" character varying, - "UserPhone" character varying, - "UserExtension" character varying, - "UserEmail" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx204"; -- --- Name: hmis_csv_2020_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx205; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2020_users_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx205"; -- --- Name: hmis_csv_2020_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx206; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2020_users_id_seq OWNED BY public.hmis_csv_2020_users.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx206"; -- --- Name: hmis_csv_2022_affiliations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx207; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_affiliations ( - id bigint NOT NULL, - "AffiliationID" character varying, - "ProjectID" character varying, - "ResProjectID" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx207"; -- --- Name: hmis_csv_2022_affiliations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx208; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_affiliations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx208"; -- --- Name: hmis_csv_2022_affiliations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx209; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_affiliations_id_seq OWNED BY public.hmis_csv_2022_affiliations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx209"; -- --- Name: hmis_csv_2022_assessment_questions; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx210; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_assessment_questions ( - id bigint NOT NULL, - "AssessmentQuestionID" character varying, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentQuestionGroup" character varying, - "AssessmentQuestionOrder" character varying, - "AssessmentQuestion" character varying, - "AssessmentAnswer" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx210"; -- --- Name: hmis_csv_2022_assessment_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx211; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_assessment_questions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx211"; -- --- Name: hmis_csv_2022_assessment_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx212; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_assessment_questions_id_seq OWNED BY public.hmis_csv_2022_assessment_questions.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx212"; -- --- Name: hmis_csv_2022_assessment_results; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx213; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_assessment_results ( - id bigint NOT NULL, - "AssessmentResultID" character varying, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentResultType" character varying, - "AssessmentResult" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx213"; -- --- Name: hmis_csv_2022_assessment_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx214; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_assessment_results_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx214"; -- --- Name: hmis_csv_2022_assessment_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx215; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_assessment_results_id_seq OWNED BY public.hmis_csv_2022_assessment_results.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx215"; -- --- Name: hmis_csv_2022_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx216; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_assessments ( - id bigint NOT NULL, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentDate" character varying, - "AssessmentLocation" character varying, - "AssessmentType" character varying, - "AssessmentLevel" character varying, - "PrioritizationStatus" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx216"; -- --- Name: hmis_csv_2022_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx217; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx217"; -- --- Name: hmis_csv_2022_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx218; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_assessments_id_seq OWNED BY public.hmis_csv_2022_assessments.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx218"; -- --- Name: hmis_csv_2022_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx219; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_clients ( - id bigint NOT NULL, - "PersonalID" character varying, - "FirstName" character varying, - "MiddleName" character varying, - "LastName" character varying, - "NameSuffix" character varying, - "NameDataQuality" character varying, - "SSN" character varying, - "SSNDataQuality" character varying, - "DOB" character varying, - "DOBDataQuality" character varying, - "AmIndAKNative" character varying, - "Asian" character varying, - "BlackAfAmerican" character varying, - "NativeHIPacific" character varying, - "White" character varying, - "RaceNone" character varying, - "Ethnicity" character varying, - "Female" character varying, - "Male" character varying, - "NoSingleGender" character varying, - "Transgender" character varying, - "Questioning" character varying, - "GenderNone" character varying, - "VeteranStatus" character varying, - "YearEnteredService" character varying, - "YearSeparated" character varying, - "WorldWarII" character varying, - "KoreanWar" character varying, - "VietnamWar" character varying, - "DesertStorm" character varying, - "AfghanistanOEF" character varying, - "IraqOIF" character varying, - "IraqOND" character varying, - "OtherTheater" character varying, - "MilitaryBranch" character varying, - "DischargeStatus" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx219"; -- --- Name: hmis_csv_2022_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx220; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx220"; -- --- Name: hmis_csv_2022_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx221; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_clients_id_seq OWNED BY public.hmis_csv_2022_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx221"; -- --- Name: hmis_csv_2022_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx222; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_current_living_situations ( - id bigint NOT NULL, - "CurrentLivingSitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "CurrentLivingSituation" character varying, - "VerifiedBy" character varying, - "LeaveSituation14Days" character varying, - "SubsequentResidence" character varying, - "ResourcesToObtain" character varying, - "LeaseOwn60Day" character varying, - "MovedTwoOrMore" character varying, - "LocationDetails" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx222"; -- --- Name: hmis_csv_2022_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx223; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_current_living_situations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx223"; -- --- Name: hmis_csv_2022_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx224; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_current_living_situations_id_seq OWNED BY public.hmis_csv_2022_current_living_situations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx224"; -- --- Name: hmis_csv_2022_disabilities; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx225; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_disabilities ( - id bigint NOT NULL, - "DisabilitiesID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "DisabilityType" character varying, - "DisabilityResponse" character varying, - "IndefiniteAndImpairs" character varying, - "TCellCountAvailable" character varying, - "TCellCount" character varying, - "TCellSource" character varying, - "ViralLoadAvailable" character varying, - "ViralLoad" character varying, - "ViralLoadSource" character varying, - "AntiRetroviral" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx225"; -- --- Name: hmis_csv_2022_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx226; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_disabilities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx226"; -- --- Name: hmis_csv_2022_disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx227; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_disabilities_id_seq OWNED BY public.hmis_csv_2022_disabilities.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx227"; -- --- Name: hmis_csv_2022_employment_educations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx228; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_employment_educations ( - id bigint NOT NULL, - "EmploymentEducationID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "LastGradeCompleted" character varying, - "SchoolStatus" character varying, - "Employed" character varying, - "EmploymentType" character varying, - "NotEmployedReason" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx228"; -- --- Name: hmis_csv_2022_employment_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx229; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_employment_educations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx229"; -- --- Name: hmis_csv_2022_employment_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx230; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_employment_educations_id_seq OWNED BY public.hmis_csv_2022_employment_educations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx230"; -- --- Name: hmis_csv_2022_enrollment_cocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx231; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_enrollment_cocs ( - id bigint NOT NULL, - "EnrollmentCoCID" character varying, - "EnrollmentID" character varying, - "HouseholdID" character varying, - "ProjectID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "CoCCode" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx231"; -- --- Name: hmis_csv_2022_enrollment_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx232; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_enrollment_cocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx232"; -- --- Name: hmis_csv_2022_enrollment_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx233; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_enrollment_cocs_id_seq OWNED BY public.hmis_csv_2022_enrollment_cocs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx233"; -- --- Name: hmis_csv_2022_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx234; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_enrollments ( - id bigint NOT NULL, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ProjectID" character varying, - "EntryDate" character varying, - "HouseholdID" character varying, - "RelationshipToHoH" character varying, - "LivingSituation" character varying, - "LengthOfStay" character varying, - "LOSUnderThreshold" character varying, - "PreviousStreetESSH" character varying, - "DateToStreetESSH" character varying, - "TimesHomelessPastThreeYears" character varying, - "MonthsHomelessPastThreeYears" character varying, - "DisablingCondition" character varying, - "DateOfEngagement" character varying, - "MoveInDate" character varying, - "DateOfPATHStatus" character varying, - "ClientEnrolledInPATH" character varying, - "ReasonNotEnrolled" character varying, - "WorstHousingSituation" character varying, - "PercentAMI" character varying, - "LastPermanentStreet" character varying, - "LastPermanentCity" character varying, - "LastPermanentState" character varying, - "LastPermanentZIP" character varying, - "AddressDataQuality" character varying, - "ReferralSource" character varying, - "CountOutreachReferralApproaches" character varying, - "DateOfBCPStatus" character varying, - "EligibleForRHY" character varying, - "ReasonNoServices" character varying, - "RunawayYouth" character varying, - "SexualOrientation" character varying, - "SexualOrientationOther" character varying, - "FormerWardChildWelfare" character varying, - "ChildWelfareYears" character varying, - "ChildWelfareMonths" character varying, - "FormerWardJuvenileJustice" character varying, - "JuvenileJusticeYears" character varying, - "JuvenileJusticeMonths" character varying, - "UnemploymentFam" character varying, - "MentalHealthDisorderFam" character varying, - "PhysicalDisabilityFam" character varying, - "AlcoholDrugUseDisorderFam" character varying, - "InsufficientIncome" character varying, - "IncarceratedParent" character varying, - "VAMCStation" character varying, - "TargetScreenReqd" character varying, - "TimeToHousingLoss" character varying, - "AnnualPercentAMI" character varying, - "LiteralHomelessHistory" character varying, - "ClientLeaseholder" character varying, - "HOHLeaseholder" character varying, - "SubsidyAtRisk" character varying, - "EvictionHistory" character varying, - "CriminalRecord" character varying, - "IncarceratedAdult" character varying, - "PrisonDischarge" character varying, - "SexOffender" character varying, - "DisabledHoH" character varying, - "CurrentPregnant" character varying, - "SingleParent" character varying, - "DependentUnder6" character varying, - "HH5Plus" character varying, - "CoCPrioritized" character varying, - "HPScreeningScore" character varying, - "ThresholdScore" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx234"; -- --- Name: hmis_csv_2022_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx235; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx235"; -- --- Name: hmis_csv_2022_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx236; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_enrollments_id_seq OWNED BY public.hmis_csv_2022_enrollments.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx236"; -- --- Name: hmis_csv_2022_events; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx237; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_events ( - id bigint NOT NULL, - "EventID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "EventDate" character varying, - "Event" character varying, - "ProbSolDivRRResult" character varying, - "ReferralCaseManageAfter" character varying, - "LocationCrisisOrPHHousing" character varying, - "ReferralResult" character varying, - "ResultDate" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx237"; -- --- Name: hmis_csv_2022_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx238; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx238"; -- --- Name: hmis_csv_2022_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx239; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_events_id_seq OWNED BY public.hmis_csv_2022_events.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx239"; -- --- Name: hmis_csv_2022_exits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx240; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_exits ( - id bigint NOT NULL, - "ExitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ExitDate" character varying, - "Destination" character varying, - "OtherDestination" character varying, - "HousingAssessment" character varying, - "SubsidyInformation" character varying, - "ProjectCompletionStatus" character varying, - "EarlyExitReason" character varying, - "ExchangeForSex" character varying, - "ExchangeForSexPastThreeMonths" character varying, - "CountOfExchangeForSex" character varying, - "AskedOrForcedToExchangeForSex" character varying, - "AskedOrForcedToExchangeForSexPastThreeMonths" character varying, - "WorkPlaceViolenceThreats" character varying, - "WorkplacePromiseDifference" character varying, - "CoercedToContinueWork" character varying, - "LaborExploitPastThreeMonths" character varying, - "CounselingReceived" character varying, - "IndividualCounseling" character varying, - "FamilyCounseling" character varying, - "GroupCounseling" character varying, - "SessionCountAtExit" character varying, - "PostExitCounselingPlan" character varying, - "SessionsInPlan" character varying, - "DestinationSafeClient" character varying, - "DestinationSafeWorker" character varying, - "PosAdultConnections" character varying, - "PosPeerConnections" character varying, - "PosCommunityConnections" character varying, - "AftercareDate" character varying, - "AftercareProvided" character varying, - "EmailSocialMedia" character varying, - "Telephone" character varying, - "InPersonIndividual" character varying, - "InPersonGroup" character varying, - "CMExitReason" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx240"; -- --- Name: hmis_csv_2022_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx241; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_exits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx241"; -- --- Name: hmis_csv_2022_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx242; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_exits_id_seq OWNED BY public.hmis_csv_2022_exits.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx242"; -- --- Name: hmis_csv_2022_exports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx243; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_exports ( - id bigint NOT NULL, - "ExportID" character varying, - "SourceType" character varying, - "SourceID" character varying, - "SourceName" character varying, - "SourceContactFirst" character varying, - "SourceContactLast" character varying, - "SourceContactPhone" character varying, - "SourceContactExtension" character varying, - "SourceContactEmail" character varying, - "ExportDate" character varying, - "ExportStartDate" character varying, - "ExportEndDate" character varying, - "SoftwareName" character varying, - "SoftwareVersion" character varying, - "CSVVersion" character varying, - "ExportPeriodType" character varying, - "ExportDirective" character varying, - "HashStatus" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx243"; -- --- Name: hmis_csv_2022_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx244; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_exports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx244"; -- --- Name: hmis_csv_2022_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx245; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_exports_id_seq OWNED BY public.hmis_csv_2022_exports.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx245"; -- --- Name: hmis_csv_2022_funders; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx246; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_funders ( - id bigint NOT NULL, - "FunderID" character varying, - "ProjectID" character varying, - "Funder" character varying, - "OtherFunder" character varying, - "GrantID" character varying, - "StartDate" character varying, - "EndDate" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx246"; -- --- Name: hmis_csv_2022_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx247; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_funders_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx247"; -- --- Name: hmis_csv_2022_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx248; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_funders_id_seq OWNED BY public.hmis_csv_2022_funders.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx248"; -- --- Name: hmis_csv_2022_health_and_dvs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx249; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_health_and_dvs ( - id bigint NOT NULL, - "HealthAndDVID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "DomesticViolenceVictim" character varying, - "WhenOccurred" character varying, - "CurrentlyFleeing" character varying, - "GeneralHealthStatus" character varying, - "DentalHealthStatus" character varying, - "MentalHealthStatus" character varying, - "PregnancyStatus" character varying, - "DueDate" character varying, - "LifeValue" character varying, - "SupportFromOthers" character varying, - "BounceBack" character varying, - "FeelingFrequency" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx249"; -- --- Name: hmis_csv_2022_health_and_dvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx250; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_health_and_dvs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx250"; -- --- Name: hmis_csv_2022_health_and_dvs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx251; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_health_and_dvs_id_seq OWNED BY public.hmis_csv_2022_health_and_dvs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx251"; -- --- Name: hmis_csv_2022_income_benefits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx252; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_income_benefits ( - id bigint NOT NULL, - "IncomeBenefitsID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "IncomeFromAnySource" character varying, - "TotalMonthlyIncome" character varying, - "Earned" character varying, - "EarnedAmount" character varying, - "Unemployment" character varying, - "UnemploymentAmount" character varying, - "SSI" character varying, - "SSIAmount" character varying, - "SSDI" character varying, - "SSDIAmount" character varying, - "VADisabilityService" character varying, - "VADisabilityServiceAmount" character varying, - "VADisabilityNonService" character varying, - "VADisabilityNonServiceAmount" character varying, - "PrivateDisability" character varying, - "PrivateDisabilityAmount" character varying, - "WorkersComp" character varying, - "WorkersCompAmount" character varying, - "TANF" character varying, - "TANFAmount" character varying, - "GA" character varying, - "GAAmount" character varying, - "SocSecRetirement" character varying, - "SocSecRetirementAmount" character varying, - "Pension" character varying, - "PensionAmount" character varying, - "ChildSupport" character varying, - "ChildSupportAmount" character varying, - "Alimony" character varying, - "AlimonyAmount" character varying, - "OtherIncomeSource" character varying, - "OtherIncomeAmount" character varying, - "OtherIncomeSourceIdentify" character varying, - "BenefitsFromAnySource" character varying, - "SNAP" character varying, - "WIC" character varying, - "TANFChildCare" character varying, - "TANFTransportation" character varying, - "OtherTANF" character varying, - "OtherBenefitsSource" character varying, - "OtherBenefitsSourceIdentify" character varying, - "InsuranceFromAnySource" character varying, - "Medicaid" character varying, - "NoMedicaidReason" character varying, - "Medicare" character varying, - "NoMedicareReason" character varying, - "SCHIP" character varying, - "NoSCHIPReason" character varying, - "VAMedicalServices" character varying, - "NoVAMedReason" character varying, - "EmployerProvided" character varying, - "NoEmployerProvidedReason" character varying, - "COBRA" character varying, - "NoCOBRAReason" character varying, - "PrivatePay" character varying, - "NoPrivatePayReason" character varying, - "StateHealthIns" character varying, - "NoStateHealthInsReason" character varying, - "IndianHealthServices" character varying, - "NoIndianHealthServicesReason" character varying, - "OtherInsurance" character varying, - "OtherInsuranceIdentify" character varying, - "HIVAIDSAssistance" character varying, - "NoHIVAIDSAssistanceReason" character varying, - "ADAP" character varying, - "NoADAPReason" character varying, - "RyanWhiteMedDent" character varying, - "NoRyanWhiteReason" character varying, - "ConnectionWithSOAR" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx252"; -- --- Name: hmis_csv_2022_income_benefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx253; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_income_benefits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx253"; -- --- Name: hmis_csv_2022_income_benefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx254; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_income_benefits_id_seq OWNED BY public.hmis_csv_2022_income_benefits.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx254"; -- --- Name: hmis_csv_2022_inventories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx255; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_inventories ( - id bigint NOT NULL, - "InventoryID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "HouseholdType" character varying, - "Availability" character varying, - "UnitInventory" character varying, - "BedInventory" character varying, - "CHVetBedInventory" character varying, - "YouthVetBedInventory" character varying, - "VetBedInventory" character varying, - "CHYouthBedInventory" character varying, - "YouthBedInventory" character varying, - "CHBedInventory" character varying, - "OtherBedInventory" character varying, - "ESBedType" character varying, - "InventoryStartDate" character varying, - "InventoryEndDate" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx255"; -- --- Name: hmis_csv_2022_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx256; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_inventories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx256"; -- --- Name: hmis_csv_2022_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx257; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_inventories_id_seq OWNED BY public.hmis_csv_2022_inventories.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx257"; -- --- Name: hmis_csv_2022_organizations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx258; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_organizations ( - id bigint NOT NULL, - "OrganizationID" character varying, - "OrganizationName" character varying, - "VictimServiceProvider" character varying, - "OrganizationCommonName" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx258"; -- --- Name: hmis_csv_2022_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx259; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_organizations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx259"; -- --- Name: hmis_csv_2022_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx260; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_organizations_id_seq OWNED BY public.hmis_csv_2022_organizations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx260"; -- --- Name: hmis_csv_2022_project_cocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx261; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_project_cocs ( - id bigint NOT NULL, - "ProjectCoCID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "Geocode" character varying, - "Address1" character varying, - "Address2" character varying, - "City" character varying, - "State" character varying, - "Zip" character varying, - "GeographyType" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx261"; -- --- Name: hmis_csv_2022_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx262; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_project_cocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx262"; -- --- Name: hmis_csv_2022_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx263; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_project_cocs_id_seq OWNED BY public.hmis_csv_2022_project_cocs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx263"; -- --- Name: hmis_csv_2022_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx264; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_projects ( - id bigint NOT NULL, - "ProjectID" character varying, - "OrganizationID" character varying, - "ProjectName" character varying, - "ProjectCommonName" character varying, - "OperatingStartDate" character varying, - "OperatingEndDate" character varying, - "ContinuumProject" character varying, - "ProjectType" character varying, - "HousingType" character varying, - "ResidentialAffiliation" character varying, - "TrackingMethod" character varying, - "HMISParticipatingProject" character varying, - "TargetPopulation" character varying, - "HOPWAMedAssistedLivingFac" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL, - "PITCount" character varying -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx264"; -- --- Name: hmis_csv_2022_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx265; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx265"; -- --- Name: hmis_csv_2022_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx266; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_projects_id_seq OWNED BY public.hmis_csv_2022_projects.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx266"; -- --- Name: hmis_csv_2022_services; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx267; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_services ( - id bigint NOT NULL, - "ServicesID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "DateProvided" character varying, - "RecordType" character varying, - "TypeProvided" character varying, - "OtherTypeProvided" character varying, - "MovingOnOtherType" character varying, - "SubTypeProvided" character varying, - "FAAmount" character varying, - "ReferralOutcome" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx267"; -- --- Name: hmis_csv_2022_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx268; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx268"; -- --- Name: hmis_csv_2022_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx269; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_services_id_seq OWNED BY public.hmis_csv_2022_services.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx269"; -- --- Name: hmis_csv_2022_users; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx270; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_users ( - id bigint NOT NULL, - "UserID" character varying, - "UserFirstName" character varying, - "UserLastName" character varying, - "UserPhone" character varying, - "UserExtension" character varying, - "UserEmail" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx270"; -- --- Name: hmis_csv_2022_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx271; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_users_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx271"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx272; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx272"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx273; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx273"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx274; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx274"; -- --- Name: hmis_csv_2022_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx275; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_users_id_seq OWNED BY public.hmis_csv_2022_users.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx275"; -- --- Name: hmis_csv_2022_youth_education_statuses; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx276; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2022_youth_education_statuses ( - id bigint NOT NULL, - "YouthEducationStatusID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "CurrentSchoolAttend" character varying, - "MostRecentEdStatus" character varying, - "CurrentEdStatus" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx276"; -- --- Name: hmis_csv_2022_youth_education_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx277; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2022_youth_education_statuses_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx277"; -- --- Name: hmis_csv_2022_youth_education_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx278; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2022_youth_education_statuses_id_seq OWNED BY public.hmis_csv_2022_youth_education_statuses.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx278"; -- --- Name: hmis_csv_2024_affiliations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx279; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_affiliations ( - id bigint NOT NULL, - "AffiliationID" character varying, - "ProjectID" character varying, - "ResProjectID" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx279"; -- --- Name: hmis_csv_2024_affiliations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx280; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_affiliations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx280"; -- --- Name: hmis_csv_2024_affiliations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx281; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_affiliations_id_seq OWNED BY public.hmis_csv_2024_affiliations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx281"; -- --- Name: hmis_csv_2024_assessment_questions; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx282; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_assessment_questions ( - id bigint NOT NULL, - "AssessmentQuestionID" character varying, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentQuestionGroup" character varying, - "AssessmentQuestionOrder" character varying, - "AssessmentQuestion" character varying, - "AssessmentAnswer" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx282"; -- --- Name: hmis_csv_2024_assessment_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx283; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_assessment_questions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx283"; -- --- Name: hmis_csv_2024_assessment_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx284; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_assessment_questions_id_seq OWNED BY public.hmis_csv_2024_assessment_questions.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx284"; -- --- Name: hmis_csv_2024_assessment_results; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx285; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_assessment_results ( - id bigint NOT NULL, - "AssessmentResultID" character varying, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentResultType" character varying, - "AssessmentResult" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx285"; -- --- Name: hmis_csv_2024_assessment_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx286; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_assessment_results_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx286"; -- --- Name: hmis_csv_2024_assessment_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx287; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_assessment_results_id_seq OWNED BY public.hmis_csv_2024_assessment_results.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx287"; -- --- Name: hmis_csv_2024_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx288; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_assessments ( - id bigint NOT NULL, - "AssessmentID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "AssessmentDate" character varying, - "AssessmentLocation" character varying, - "AssessmentType" character varying, - "AssessmentLevel" character varying, - "PrioritizationStatus" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx288"; -- --- Name: hmis_csv_2024_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx289; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx289"; -- --- Name: hmis_csv_2024_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx290; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_assessments_id_seq OWNED BY public.hmis_csv_2024_assessments.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx290"; -- --- Name: hmis_csv_2024_ce_participations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx291; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_ce_participations ( - id bigint NOT NULL, - "CEParticipationID" character varying, - "ProjectID" character varying, - "AccessPoint" character varying, - "PreventionAssessment" character varying, - "CrisisAssessment" character varying, - "HousingAssessment" character varying, - "DirectServices" character varying, - "ReceivesReferrals" character varying, - "CEParticipationStatusStartDate" character varying, - "CEParticipationStatusEndDate" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx291"; -- --- Name: hmis_csv_2024_ce_participations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx292; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_ce_participations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx292"; -- --- Name: hmis_csv_2024_ce_participations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx293; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_ce_participations_id_seq OWNED BY public.hmis_csv_2024_ce_participations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx293"; -- --- Name: hmis_csv_2024_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx294; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_clients ( - id bigint NOT NULL, - "PersonalID" character varying, - "FirstName" character varying, - "MiddleName" character varying, - "LastName" character varying, - "NameSuffix" character varying, - "NameDataQuality" character varying, - "SSN" character varying, - "SSNDataQuality" character varying, - "DOB" character varying, - "DOBDataQuality" character varying, - "AmIndAKNative" character varying, - "Asian" character varying, - "BlackAfAmerican" character varying, - "HispanicLatinaeo" character varying, - "MidEastNAfrican" character varying, - "NativeHIPacific" character varying, - "White" character varying, - "RaceNone" character varying, - "AdditionalRaceEthnicity" character varying, - "Woman" character varying, - "Man" character varying, - "NonBinary" character varying, - "CulturallySpecific" character varying, - "Transgender" character varying, - "Questioning" character varying, - "DifferentIdentity" character varying, - "GenderNone" character varying, - "DifferentIdentityText" character varying, - "VeteranStatus" character varying, - "YearEnteredService" character varying, - "YearSeparated" character varying, - "WorldWarII" character varying, - "KoreanWar" character varying, - "VietnamWar" character varying, - "DesertStorm" character varying, - "AfghanistanOEF" character varying, - "IraqOIF" character varying, - "IraqOND" character varying, - "OtherTheater" character varying, - "MilitaryBranch" character varying, - "DischargeStatus" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx294"; -- --- Name: hmis_csv_2024_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx295; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx295"; -- --- Name: hmis_csv_2024_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx296; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_clients_id_seq OWNED BY public.hmis_csv_2024_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx296"; -- --- Name: hmis_csv_2024_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx297; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_current_living_situations ( - id bigint NOT NULL, - "CurrentLivingSitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "CurrentLivingSituation" character varying, - "CLSSubsidyType" character varying, - "VerifiedBy" character varying, - "LeaveSituation14Days" character varying, - "SubsequentResidence" character varying, - "ResourcesToObtain" character varying, - "LeaseOwn60Day" character varying, - "MovedTwoOrMore" character varying, - "LocationDetails" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx297"; -- --- Name: hmis_csv_2024_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx298; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_current_living_situations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx298"; -- --- Name: hmis_csv_2024_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx299; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_current_living_situations_id_seq OWNED BY public.hmis_csv_2024_current_living_situations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx299"; -- --- Name: hmis_csv_2024_disabilities; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx300; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_disabilities ( - id bigint NOT NULL, - "DisabilitiesID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "DisabilityType" character varying, - "DisabilityResponse" character varying, - "IndefiniteAndImpairs" character varying, - "TCellCountAvailable" character varying, - "TCellCount" character varying, - "TCellSource" character varying, - "ViralLoadAvailable" character varying, - "ViralLoad" character varying, - "ViralLoadSource" character varying, - "AntiRetroviral" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx300"; -- --- Name: hmis_csv_2024_disabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx301; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_disabilities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx301"; -- --- Name: hmis_csv_2024_disabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx302; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_disabilities_id_seq OWNED BY public.hmis_csv_2024_disabilities.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx302"; -- --- Name: hmis_csv_2024_employment_educations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx303; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_employment_educations ( - id bigint NOT NULL, - "EmploymentEducationID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "LastGradeCompleted" character varying, - "SchoolStatus" character varying, - "Employed" character varying, - "EmploymentType" character varying, - "NotEmployedReason" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx303"; -- --- Name: hmis_csv_2024_employment_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx304; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_employment_educations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx304"; -- --- Name: hmis_csv_2024_employment_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx305; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_employment_educations_id_seq OWNED BY public.hmis_csv_2024_employment_educations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx305"; -- --- Name: hmis_csv_2024_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx306; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_enrollments ( - id bigint NOT NULL, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ProjectID" character varying, - "EntryDate" character varying, - "HouseholdID" character varying, - "RelationshipToHoH" character varying, - "EnrollmentCoC" character varying, - "LivingSituation" character varying, - "RentalSubsidyType" character varying, - "LengthOfStay" character varying, - "LOSUnderThreshold" character varying, - "PreviousStreetESSH" character varying, - "DateToStreetESSH" character varying, - "TimesHomelessPastThreeYears" character varying, - "MonthsHomelessPastThreeYears" character varying, - "DisablingCondition" character varying, - "DateOfEngagement" character varying, - "MoveInDate" character varying, - "DateOfPATHStatus" character varying, - "ClientEnrolledInPATH" character varying, - "ReasonNotEnrolled" character varying, - "PercentAMI" character varying, - "ReferralSource" character varying, - "CountOutreachReferralApproaches" character varying, - "DateOfBCPStatus" character varying, - "EligibleForRHY" character varying, - "ReasonNoServices" character varying, - "RunawayYouth" character varying, - "SexualOrientation" character varying, - "SexualOrientationOther" character varying, - "FormerWardChildWelfare" character varying, - "ChildWelfareYears" character varying, - "ChildWelfareMonths" character varying, - "FormerWardJuvenileJustice" character varying, - "JuvenileJusticeYears" character varying, - "JuvenileJusticeMonths" character varying, - "UnemploymentFam" character varying, - "MentalHealthDisorderFam" character varying, - "PhysicalDisabilityFam" character varying, - "AlcoholDrugUseDisorderFam" character varying, - "InsufficientIncome" character varying, - "IncarceratedParent" character varying, - "VAMCStation" character varying, - "TargetScreenReqd" character varying, - "TimeToHousingLoss" character varying, - "AnnualPercentAMI" character varying, - "LiteralHomelessHistory" character varying, - "ClientLeaseholder" character varying, - "HOHLeaseholder" character varying, - "SubsidyAtRisk" character varying, - "EvictionHistory" character varying, - "CriminalRecord" character varying, - "IncarceratedAdult" character varying, - "PrisonDischarge" character varying, - "SexOffender" character varying, - "DisabledHoH" character varying, - "CurrentPregnant" character varying, - "SingleParent" character varying, - "DependentUnder6" character varying, - "HH5Plus" character varying, - "CoCPrioritized" character varying, - "HPScreeningScore" character varying, - "ThresholdScore" character varying, - "TranslationNeeded" character varying, - "PreferredLanguage" character varying, - "PreferredLanguageDifferent" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx306"; -- --- Name: hmis_csv_2024_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx307; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx307"; -- --- Name: hmis_csv_2024_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx308; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_enrollments_id_seq OWNED BY public.hmis_csv_2024_enrollments.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx308"; -- --- Name: hmis_csv_2024_events; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx309; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_events ( - id bigint NOT NULL, - "EventID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "EventDate" character varying, - "Event" character varying, - "ProbSolDivRRResult" character varying, - "ReferralCaseManageAfter" character varying, - "LocationCrisisOrPHHousing" character varying, - "ReferralResult" character varying, - "ResultDate" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx309"; -- --- Name: hmis_csv_2024_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx310; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx310"; -- --- Name: hmis_csv_2024_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx311; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_events_id_seq OWNED BY public.hmis_csv_2024_events.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx311"; -- --- Name: hmis_csv_2024_exits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx312; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_exits ( - id bigint NOT NULL, - "ExitID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "ExitDate" character varying, - "Destination" character varying, - "DestinationSubsidyType" character varying, - "OtherDestination" character varying, - "HousingAssessment" character varying, - "SubsidyInformation" character varying, - "ProjectCompletionStatus" character varying, - "EarlyExitReason" character varying, - "ExchangeForSex" character varying, - "ExchangeForSexPastThreeMonths" character varying, - "CountOfExchangeForSex" character varying, - "AskedOrForcedToExchangeForSex" character varying, - "AskedOrForcedToExchangeForSexPastThreeMonths" character varying, - "WorkPlaceViolenceThreats" character varying, - "WorkplacePromiseDifference" character varying, - "CoercedToContinueWork" character varying, - "LaborExploitPastThreeMonths" character varying, - "CounselingReceived" character varying, - "IndividualCounseling" character varying, - "FamilyCounseling" character varying, - "GroupCounseling" character varying, - "SessionCountAtExit" character varying, - "PostExitCounselingPlan" character varying, - "SessionsInPlan" character varying, - "DestinationSafeClient" character varying, - "DestinationSafeWorker" character varying, - "PosAdultConnections" character varying, - "PosPeerConnections" character varying, - "PosCommunityConnections" character varying, - "AftercareDate" character varying, - "AftercareProvided" character varying, - "EmailSocialMedia" character varying, - "Telephone" character varying, - "InPersonIndividual" character varying, - "InPersonGroup" character varying, - "CMExitReason" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx312"; -- --- Name: hmis_csv_2024_exits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx313; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_exits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx313"; -- --- Name: hmis_csv_2024_exits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx314; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_exits_id_seq OWNED BY public.hmis_csv_2024_exits.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx314"; -- --- Name: hmis_csv_2024_exports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx315; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_exports ( - id bigint NOT NULL, - "ExportID" character varying, - "SourceType" character varying, - "SourceID" character varying, - "SourceName" character varying, - "SourceContactFirst" character varying, - "SourceContactLast" character varying, - "SourceContactPhone" character varying, - "SourceContactExtension" character varying, - "SourceContactEmail" character varying, - "ExportDate" character varying, - "ExportStartDate" character varying, - "ExportEndDate" character varying, - "SoftwareName" character varying, - "SoftwareVersion" character varying, - "CSVVersion" character varying, - "ExportPeriodType" character varying, - "ExportDirective" character varying, - "HashStatus" character varying, - "ImplementationID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx315"; -- --- Name: hmis_csv_2024_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx316; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_exports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx316"; -- --- Name: hmis_csv_2024_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx317; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_exports_id_seq OWNED BY public.hmis_csv_2024_exports.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx317"; -- --- Name: hmis_csv_2024_funders; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx318; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_funders ( - id bigint NOT NULL, - "FunderID" character varying, - "ProjectID" character varying, - "Funder" character varying, - "OtherFunder" character varying, - "GrantID" character varying, - "StartDate" character varying, - "EndDate" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx318"; -- --- Name: hmis_csv_2024_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx319; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_funders_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx319"; -- --- Name: hmis_csv_2024_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx320; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_funders_id_seq OWNED BY public.hmis_csv_2024_funders.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx320"; -- --- Name: hmis_csv_2024_health_and_dvs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx321; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_health_and_dvs ( - id bigint NOT NULL, - "HealthAndDVID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "DomesticViolenceSurvivor" character varying, - "WhenOccurred" character varying, - "CurrentlyFleeing" character varying, - "GeneralHealthStatus" character varying, - "DentalHealthStatus" character varying, - "MentalHealthStatus" character varying, - "PregnancyStatus" character varying, - "DueDate" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx321"; -- --- Name: hmis_csv_2024_health_and_dvs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx322; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_health_and_dvs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx322"; -- --- Name: hmis_csv_2024_health_and_dvs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx323; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_health_and_dvs_id_seq OWNED BY public.hmis_csv_2024_health_and_dvs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx323"; -- --- Name: hmis_csv_2024_hmis_participations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx324; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_hmis_participations ( - id bigint NOT NULL, - "HMISParticipationID" character varying, - "ProjectID" character varying, - "HMISParticipationType" character varying, - "HMISParticipationStatusStartDate" character varying, - "HMISParticipationStatusEndDate" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx324"; -- --- Name: hmis_csv_2024_hmis_participations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx325; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_hmis_participations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx325"; -- --- Name: hmis_csv_2024_hmis_participations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx326; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_hmis_participations_id_seq OWNED BY public.hmis_csv_2024_hmis_participations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx326"; -- --- Name: hmis_csv_2024_income_benefits; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx327; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_income_benefits ( - id bigint NOT NULL, - "IncomeBenefitsID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "IncomeFromAnySource" character varying, - "TotalMonthlyIncome" character varying, - "Earned" character varying, - "EarnedAmount" character varying, - "Unemployment" character varying, - "UnemploymentAmount" character varying, - "SSI" character varying, - "SSIAmount" character varying, - "SSDI" character varying, - "SSDIAmount" character varying, - "VADisabilityService" character varying, - "VADisabilityServiceAmount" character varying, - "VADisabilityNonService" character varying, - "VADisabilityNonServiceAmount" character varying, - "PrivateDisability" character varying, - "PrivateDisabilityAmount" character varying, - "WorkersComp" character varying, - "WorkersCompAmount" character varying, - "TANF" character varying, - "TANFAmount" character varying, - "GA" character varying, - "GAAmount" character varying, - "SocSecRetirement" character varying, - "SocSecRetirementAmount" character varying, - "Pension" character varying, - "PensionAmount" character varying, - "ChildSupport" character varying, - "ChildSupportAmount" character varying, - "Alimony" character varying, - "AlimonyAmount" character varying, - "OtherIncomeSource" character varying, - "OtherIncomeAmount" character varying, - "OtherIncomeSourceIdentify" character varying, - "BenefitsFromAnySource" character varying, - "SNAP" character varying, - "WIC" character varying, - "TANFChildCare" character varying, - "TANFTransportation" character varying, - "OtherTANF" character varying, - "OtherBenefitsSource" character varying, - "OtherBenefitsSourceIdentify" character varying, - "InsuranceFromAnySource" character varying, - "Medicaid" character varying, - "NoMedicaidReason" character varying, - "Medicare" character varying, - "NoMedicareReason" character varying, - "SCHIP" character varying, - "NoSCHIPReason" character varying, - "VHAServices" character varying, - "NoVHAReason" character varying, - "EmployerProvided" character varying, - "NoEmployerProvidedReason" character varying, - "COBRA" character varying, - "NoCOBRAReason" character varying, - "PrivatePay" character varying, - "NoPrivatePayReason" character varying, - "StateHealthIns" character varying, - "NoStateHealthInsReason" character varying, - "IndianHealthServices" character varying, - "NoIndianHealthServicesReason" character varying, - "OtherInsurance" character varying, - "OtherInsuranceIdentify" character varying, - "ADAP" character varying, - "NoADAPReason" character varying, - "RyanWhiteMedDent" character varying, - "NoRyanWhiteReason" character varying, - "ConnectionWithSOAR" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx327"; -- --- Name: hmis_csv_2024_income_benefits_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx328; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_income_benefits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx328"; -- --- Name: hmis_csv_2024_income_benefits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx329; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_income_benefits_id_seq OWNED BY public.hmis_csv_2024_income_benefits.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx329"; -- --- Name: hmis_csv_2024_inventories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx330; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_inventories ( - id bigint NOT NULL, - "InventoryID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "HouseholdType" character varying, - "Availability" character varying, - "UnitInventory" character varying, - "BedInventory" character varying, - "CHVetBedInventory" character varying, - "YouthVetBedInventory" character varying, - "VetBedInventory" character varying, - "CHYouthBedInventory" character varying, - "YouthBedInventory" character varying, - "CHBedInventory" character varying, - "OtherBedInventory" character varying, - "ESBedType" character varying, - "InventoryStartDate" character varying, - "InventoryEndDate" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx330"; -- --- Name: hmis_csv_2024_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx331; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_inventories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx331"; -- --- Name: hmis_csv_2024_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx332; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_inventories_id_seq OWNED BY public.hmis_csv_2024_inventories.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx332"; -- --- Name: hmis_csv_2024_organizations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx333; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_organizations ( - id bigint NOT NULL, - "OrganizationID" character varying, - "OrganizationName" character varying, - "VictimServiceProvider" character varying, - "OrganizationCommonName" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx333"; -- --- Name: hmis_csv_2024_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx334; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_organizations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx334"; -- --- Name: hmis_csv_2024_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx335; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_organizations_id_seq OWNED BY public.hmis_csv_2024_organizations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx335"; -- --- Name: hmis_csv_2024_project_cocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx336; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_project_cocs ( - id bigint NOT NULL, - "ProjectCoCID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "Geocode" character varying, - "Address1" character varying, - "Address2" character varying, - "City" character varying, - "State" character varying, - "Zip" character varying, - "GeographyType" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx336"; -- --- Name: hmis_csv_2024_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx337; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_project_cocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx337"; -- --- Name: hmis_csv_2024_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx338; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_project_cocs_id_seq OWNED BY public.hmis_csv_2024_project_cocs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx338"; -- --- Name: hmis_csv_2024_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx339; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_projects ( - id bigint NOT NULL, - "ProjectID" character varying, - "OrganizationID" character varying, - "ProjectName" character varying, - "ProjectCommonName" character varying, - "OperatingStartDate" character varying, - "OperatingEndDate" character varying, - "ContinuumProject" character varying, - "ProjectType" character varying, - "HousingType" character varying, - "RRHSubType" character varying, - "ResidentialAffiliation" character varying, - "TargetPopulation" character varying, - "HOPWAMedAssistedLivingFac" character varying, - "PITCount" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx339"; -- --- Name: hmis_csv_2024_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx340; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx340"; -- --- Name: hmis_csv_2024_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx341; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_projects_id_seq OWNED BY public.hmis_csv_2024_projects.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx341"; -- --- Name: hmis_csv_2024_services; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx342; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_services ( - id bigint NOT NULL, - "ServicesID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "DateProvided" character varying, - "RecordType" character varying, - "TypeProvided" character varying, - "OtherTypeProvided" character varying, - "MovingOnOtherType" character varying, - "SubTypeProvided" character varying, - "FAAmount" character varying, - "FAStartDate" character varying, - "FAEndDate" character varying, - "ReferralOutcome" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx342"; -- --- Name: hmis_csv_2024_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx343; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx343"; -- --- Name: hmis_csv_2024_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx344; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_services_id_seq OWNED BY public.hmis_csv_2024_services.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx344"; -- --- Name: hmis_csv_2024_users; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx345; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_users ( - id bigint NOT NULL, - "UserID" character varying, - "UserFirstName" character varying, - "UserLastName" character varying, - "UserPhone" character varying, - "UserExtension" character varying, - "UserEmail" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx345"; -- --- Name: hmis_csv_2024_users_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx346; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_users_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx346"; -- --- Name: hmis_csv_2024_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx347; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_users_id_seq OWNED BY public.hmis_csv_2024_users.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx347"; -- --- Name: hmis_csv_2024_youth_education_statuses; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx348; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_2024_youth_education_statuses ( - id bigint NOT NULL, - "YouthEducationStatusID" character varying, - "EnrollmentID" character varying, - "PersonalID" character varying, - "InformationDate" character varying, - "CurrentSchoolAttend" character varying, - "MostRecentEdStatus" character varying, - "CurrentEdStatus" character varying, - "DataCollectionStage" character varying, - "DateCreated" character varying, - "DateUpdated" character varying, - "UserID" character varying, - "DateDeleted" character varying, - "ExportID" character varying, - data_source_id integer NOT NULL, - loaded_at timestamp without time zone NOT NULL, - loader_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx348"; -- --- Name: hmis_csv_2024_youth_education_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx349; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_2024_youth_education_statuses_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx349"; -- --- Name: hmis_csv_2024_youth_education_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx350; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_2024_youth_education_statuses_id_seq OWNED BY public.hmis_csv_2024_youth_education_statuses.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx350"; -- --- Name: hmis_csv_import_errors; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx351; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_import_errors ( - id bigint NOT NULL, - importer_log_id integer NOT NULL, - message character varying, - details character varying, - source_type character varying NOT NULL, - source_id character varying NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx351"; -- --- Name: hmis_csv_import_errors_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx352; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_import_errors_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx352"; -- --- Name: hmis_csv_import_errors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx353; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_import_errors_id_seq OWNED BY public.hmis_csv_import_errors.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx353"; -- --- Name: hmis_csv_import_validations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx354; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_import_validations ( - id bigint NOT NULL, - importer_log_id integer NOT NULL, - type character varying NOT NULL, - source_id character varying NOT NULL, - source_type character varying NOT NULL, - status character varying, - validated_column character varying -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Dat_idx354"; -- --- Name: hmis_csv_import_validations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx10; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_import_validations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx10"; -- --- Name: hmis_csv_import_validations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx11; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_import_validations_id_seq OWNED BY public.hmis_csv_import_validations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx11"; -- --- Name: hmis_csv_importer_logs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx12; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_importer_logs ( - id bigint NOT NULL, - data_source_id integer NOT NULL, - summary jsonb, - status character varying, - started_at timestamp without time zone, - completed_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - upload_id integer -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx12"; -- --- Name: hmis_csv_importer_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx13; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_importer_logs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx13"; -- --- Name: hmis_csv_importer_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx14; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_importer_logs_id_seq OWNED BY public.hmis_csv_importer_logs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx14"; -- --- Name: hmis_csv_load_errors; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx15; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_load_errors ( - id bigint NOT NULL, - loader_log_id integer NOT NULL, - file_name character varying NOT NULL, - message character varying, - details character varying, - source character varying -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx15"; -- --- Name: hmis_csv_load_errors_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx16; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_load_errors_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx16"; + + +-- +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx17; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx17"; -- --- Name: hmis_csv_load_errors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx18; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_load_errors_id_seq OWNED BY public.hmis_csv_load_errors.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx18"; -- --- Name: hmis_csv_loader_logs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx19; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_csv_loader_logs ( - id bigint NOT NULL, - data_source_id integer NOT NULL, - importer_log_id integer, - summary jsonb, - status character varying, - started_at timestamp without time zone, - completed_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - upload_id integer -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx19"; -- --- Name: hmis_csv_loader_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx20; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_csv_loader_logs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx20"; -- --- Name: hmis_csv_loader_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx21; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_csv_loader_logs_id_seq OWNED BY public.hmis_csv_loader_logs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx21"; -- --- Name: hmis_dqt_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx22; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_dqt_assessments ( - id bigint NOT NULL, - assessment_id bigint NOT NULL, - enrollment_id bigint NOT NULL, - client_id bigint NOT NULL, - report_id bigint NOT NULL, - project_name character varying, - destination_client_id integer, - hmis_assessment_id character varying, - data_source_id integer, - assessment_type integer, - assessment_level integer, - prioritization_status integer, - assessment_date date, - project_operating_start_date date, - project_operating_end_date date, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx22"; -- --- Name: hmis_dqt_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx23; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_dqt_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx23"; -- --- Name: hmis_dqt_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx24; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_dqt_assessments_id_seq OWNED BY public.hmis_dqt_assessments.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx24"; -- --- Name: hmis_dqt_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx25; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_dqt_clients ( - id bigint NOT NULL, - client_id bigint NOT NULL, - report_id bigint NOT NULL, - destination_client_id integer, - first_name character varying, - last_name character varying, - personal_id character varying, - data_source_id integer, - dob date, - dob_data_quality integer, - male integer, - female integer, - no_single_gender integer, - transgender integer, - questioning integer, - am_ind_ak_native integer, - asian integer, - black_af_american integer, - native_hi_pacific integer, - white integer, - race_none integer, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - gender_none integer, - overlapping_entry_exit integer, - overlapping_nbn integer, - overlapping_pre_move_in integer, - overlapping_post_move_in integer, - ch_at_most_recent_entry boolean DEFAULT false, - ch_at_any_entry boolean DEFAULT false, - veteran_status integer, - ssn character varying, - ssn_data_quality integer, - name_data_quality integer, - ethnicity integer, - reporting_age integer, - woman integer, - man integer, - culturally_specific integer, - different_identity integer, - non_binary integer, - hispanic_latinaeo integer, - mid_east_n_african integer, - spm_hispanic_latinaeo integer, - _all_persons__hispanic_latinaeo integer, - spm_with_children__hispanic_latinaeo integer, - spm_only_children__hispanic_latinaeo integer, - spm_without_children__hispanic_latinaeo integer, - spm_adults_with_children_where_parenting_adult_18_to_24__hispan integer, - spm_without_children_and_fifty_five_plus__hispanic_latinaeo integer, - spm_mid_east_n_african integer, - _all_persons__mid_east_n_african integer, - spm_with_children__mid_east_n_african integer, - spm_only_children__mid_east_n_african integer, - spm_without_children__mid_east_n_african integer, - spm_adults_with_children_where_parenting_adult_18_to_24__mid_ea integer, - spm_without_children_and_fifty_five_plus__mid_east_n_african integer, - overlapping_entry_exit_details jsonb, - overlapping_nbn_details jsonb, - overlapping_pre_move_in_details jsonb, - overlapping_post_move_in_details jsonb -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx25"; -- --- Name: hmis_dqt_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx26; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_dqt_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx26"; -- --- Name: hmis_dqt_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx27; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_dqt_clients_id_seq OWNED BY public.hmis_dqt_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx27"; -- --- Name: hmis_dqt_current_living_situations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx28; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_dqt_current_living_situations ( - id bigint NOT NULL, - current_living_situation_id bigint NOT NULL, - enrollment_id bigint NOT NULL, - client_id bigint NOT NULL, - report_id bigint NOT NULL, - project_name character varying, - destination_client_id integer, - hmis_current_living_situation_id character varying, - data_source_id integer, - situation integer, - information_date date, - project_operating_start_date date, - project_operating_end_date date, - project_tracking_method integer, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - project_id integer, - first_name character varying, - last_name character varying, - personal_id character varying -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx28"; -- --- Name: hmis_dqt_current_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx29; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_dqt_current_living_situations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx29"; -- --- Name: hmis_dqt_current_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx30; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_dqt_current_living_situations_id_seq OWNED BY public.hmis_dqt_current_living_situations.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx30"; -- --- Name: hmis_dqt_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx31; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_dqt_enrollments ( - id bigint NOT NULL, - enrollment_id bigint NOT NULL, - client_id bigint NOT NULL, - report_id bigint NOT NULL, - personal_id character varying, - project_name character varying, - destination_client_id integer, - hmis_enrollment_id character varying, - exit_id character varying, - data_source_id integer, - entry_date date, - move_in_date date, - exit_date date, - age integer, - household_max_age integer, - household_id character varying, - head_of_household_count integer, - disabling_condition integer, - living_situation integer, - relationship_to_hoh integer, - coc_code character varying, - destination integer, - project_operating_start_date date, - project_operating_end_date date, - project_tracking_method integer, - lot integer, - days_since_last_service integer, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - project_type integer, - ch_at_entry boolean DEFAULT false, - project_id integer, - household_type character varying, - household_min_age integer, - ch_details_expected boolean DEFAULT false, - los_under_threshold integer, - date_to_street_essh date, - times_homeless_past_three_years integer, - months_homeless_past_three_years integer, - enrollment_coc character varying, - has_disability boolean DEFAULT false, - days_between_entry_and_create integer, - health_dv_at_entry_expected boolean DEFAULT false, - domestic_violence_victim_at_entry integer, - income_at_entry_expected boolean DEFAULT false, - income_at_annual_expected boolean DEFAULT false, - income_at_exit_expected boolean DEFAULT false, - insurance_at_entry_expected boolean DEFAULT false, - insurance_at_annual_expected boolean DEFAULT false, - insurance_at_exit_expected boolean DEFAULT false, - income_from_any_source_at_entry integer, - income_from_any_source_at_annual integer, - income_from_any_source_at_exit integer, - cash_income_as_expected_at_entry boolean DEFAULT false, - cash_income_as_expected_at_annual boolean DEFAULT false, - cash_income_as_expected_at_exit boolean DEFAULT false, - ncb_from_any_source_at_entry_remove integer, - ncb_from_any_source_at_annual_remove integer, - ncb_from_any_source_at_exit_remove integer, - ncb_as_expected_at_entry boolean DEFAULT false, - ncb_as_expected_at_annual boolean DEFAULT false, - ncb_as_expected_at_exit boolean DEFAULT false, - insurance_from_any_source_at_entry_remove integer, - insurance_from_any_source_at_annual_remove integer, - insurance_from_any_source_at_exit_remove integer, - insurance_as_expected_at_entry boolean DEFAULT false, - insurance_as_expected_at_annual boolean DEFAULT false, - insurance_as_expected_at_exit boolean DEFAULT false, - disability_at_entry_collected boolean DEFAULT false, - previous_street_es_sh integer, - entry_date_entered_at timestamp without time zone, - exit_date_entered_at timestamp without time zone, - days_to_enter_entry_date integer, - days_to_enter_exit_date integer, - days_before_entry integer, - first_name character varying, - last_name character varying, - annual_expected boolean, - enrollment_anniversary_date date, - annual_assessment_status json, - funders jsonb, - percent_ami integer, - vamc_station character varying, - veteran integer, - hoh_veteran integer, - hh_veteran_count integer, - target_screen_required integer, - target_screen_completed boolean, - total_monthly_income_at_entry numeric, - total_monthly_income_from_source_at_entry numeric, - total_monthly_income_at_exit numeric, - total_monthly_income_from_source_at_exit numeric, - afghanistan_oef integer, - iraq_oif integer, - iraq_ond integer, - military_branch integer, - discharge_status integer, - employed integer, - employment_type integer, - not_employed_reason integer, - ncb_from_any_source_at_entry integer, - ncb_from_any_source_at_annual integer, - ncb_from_any_source_at_exit integer, - insurance_from_any_source_at_entry integer, - insurance_from_any_source_at_annual integer, - insurance_from_any_source_at_exit integer -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx31"; -- --- Name: hmis_dqt_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx32; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_dqt_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx32"; -- --- Name: hmis_dqt_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx33; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_dqt_enrollments_id_seq OWNED BY public.hmis_dqt_enrollments.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx33"; -- --- Name: hmis_dqt_events; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx34; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_dqt_events ( - id bigint NOT NULL, - event_id bigint NOT NULL, - enrollment_id bigint NOT NULL, - client_id bigint NOT NULL, - report_id bigint NOT NULL, - project_name character varying, - destination_client_id integer, - hmis_event_id character varying, - data_source_id integer, - event integer, - event_date date, - project_operating_start_date date, - project_operating_end_date date, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx34"; -- --- Name: hmis_dqt_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx35; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_dqt_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx35"; -- --- Name: hmis_dqt_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx36; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_dqt_events_id_seq OWNED BY public.hmis_dqt_events.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx36"; -- --- Name: hmis_dqt_goals; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx37; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_dqt_goals ( - id bigint NOT NULL, - coc_code character varying, - segment_0_name character varying, - segment_0_color character varying, - segment_0_low integer, - segment_0_high integer, - segment_1_name character varying, - segment_1_color character varying, - segment_1_low integer, - segment_1_high integer, - segment_2_name character varying, - segment_2_color character varying, - segment_2_low integer, - segment_2_high integer, - segment_3_name character varying, - segment_3_color character varying, - segment_3_low integer, - segment_3_high integer, - segment_4_name character varying, - segment_4_color character varying, - segment_4_low integer, - segment_4_high integer, - segment_5_name character varying, - segment_5_color character varying, - segment_5_low integer, - segment_5_high integer, - segment_6_name character varying, - segment_6_color character varying, - segment_6_low integer, - segment_6_high integer, - segment_7_name character varying, - segment_7_color character varying, - segment_7_low integer, - segment_7_high integer, - segment_8_name character varying, - segment_8_color character varying, - segment_8_low integer, - segment_8_high integer, - segment_9_name character varying, - segment_9_color character varying, - segment_9_low integer, - segment_9_high integer, - es_stay_length integer, - es_missed_exit_length integer, - so_missed_exit_length integer, - ph_missed_exit_length integer, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - entry_date_entered_length integer DEFAULT 6, - exit_date_entered_length integer DEFAULT 6, - expose_ch_calculations boolean DEFAULT true NOT NULL, - show_annual_assessments boolean DEFAULT true -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx37"; -- --- Name: hmis_dqt_goals_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx38; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_dqt_goals_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx38"; -- --- Name: hmis_dqt_goals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx39; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_dqt_goals_id_seq OWNED BY public.hmis_dqt_goals.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx39"; -- --- Name: hmis_dqt_inventories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx40; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_dqt_inventories ( - id bigint NOT NULL, - inventory_id bigint NOT NULL, - project_id bigint NOT NULL, - report_id bigint NOT NULL, - project_name character varying, - hmis_inventory_id character varying, - data_source_id integer, - project_type integer, - project_operating_start_date date, - project_operating_end_date date, - unit_inventory integer, - bed_inventory integer, - ch_vet_bed_inventory integer, - youth_vet_bed_inventory integer, - vet_bed_inventory integer, - ch_youth_bed_inventory integer, - youth_bed_inventory integer, - ch_bed_inventory integer, - other_bed_inventory integer, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - inventory_start_date date, - inventory_end_date date -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx40"; -- --- Name: hmis_dqt_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx41; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_dqt_inventories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx41"; -- --- Name: hmis_dqt_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx42; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_dqt_inventories_id_seq OWNED BY public.hmis_dqt_inventories.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx42"; -- --- Name: hmis_external_form_publications; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx43; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_external_form_publications ( - id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - definition_id bigint NOT NULL, - object_key character varying NOT NULL, - content_definition jsonb NOT NULL, - content text, - content_digest character varying -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx43"; -- --- Name: hmis_external_form_publications_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx44; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_external_form_publications_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx44"; -- --- Name: hmis_external_form_publications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx45; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_external_form_publications_id_seq OWNED BY public.hmis_external_form_publications.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx45"; -- --- Name: hmis_external_form_submissions; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx46; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_external_form_submissions ( - id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - submitted_at timestamp without time zone, - spam_score double precision, - status character varying DEFAULT 'new'::character varying NOT NULL, - definition_id bigint NOT NULL, - object_key character varying NOT NULL, - raw_data jsonb NOT NULL, - notes text, - enrollment_id bigint -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx46"; -- --- Name: hmis_external_form_submissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx47; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_external_form_submissions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx47"; -- --- Name: hmis_external_form_submissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx48; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_external_form_submissions_id_seq OWNED BY public.hmis_external_form_submissions.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx48"; -- --- Name: hmis_external_referral_household_members; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx49; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_external_referral_household_members ( - id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - relationship_to_hoh integer NOT NULL, - referral_id bigint NOT NULL, - client_id bigint NOT NULL, - mci_id character varying -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx49"; -- --- Name: hmis_external_referral_household_members_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx50; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_external_referral_household_members_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx50"; -- --- Name: hmis_external_referral_household_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx51; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_external_referral_household_members_id_seq OWNED BY public.hmis_external_referral_household_members.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx51"; -- --- Name: hmis_external_referral_postings; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx52; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_external_referral_postings ( - id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - identifier character varying, - status integer NOT NULL, - referral_id bigint NOT NULL, - project_id bigint NOT NULL, - referral_request_id bigint, - unit_type_id bigint, - "HouseholdID" character varying, - resource_coordinator_notes text, - status_updated_at timestamp without time zone NOT NULL, - status_updated_by_id bigint, - status_note text, - status_note_updated_by_id bigint, - denial_reason integer, - referral_result integer, - denial_note text, - status_note_updated_at timestamp without time zone, - data_source_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx52"; -- --- Name: hmis_external_referral_postings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx53; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_external_referral_postings_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx53"; -- --- Name: hmis_external_referral_postings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx54; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_external_referral_postings_id_seq OWNED BY public.hmis_external_referral_postings.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx54"; -- --- Name: hmis_external_referral_requests; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx55; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_external_referral_requests ( - id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - identifier character varying, - project_id bigint NOT NULL, - unit_type_id bigint NOT NULL, - requested_on timestamp without time zone NOT NULL, - needed_by date NOT NULL, - requested_by_id bigint, - requestor_name character varying NOT NULL, - requestor_phone character varying NOT NULL, - requestor_email character varying NOT NULL, - voided_at timestamp without time zone, - voided_by_id bigint -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx55"; -- --- Name: hmis_external_referral_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx56; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_external_referral_requests_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx56"; -- --- Name: hmis_external_referral_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx57; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_external_referral_requests_id_seq OWNED BY public.hmis_external_referral_requests.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx57"; -- --- Name: hmis_external_referrals; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx58; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_external_referrals ( - id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - identifier character varying, - referral_date date NOT NULL, - service_coordinator character varying NOT NULL, - enrollment_id bigint, - referral_notes text, - chronic boolean, - score integer, - needs_wheelchair_accessible_unit boolean -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx58"; -- --- Name: hmis_external_referrals_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx59; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_external_referrals_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx59"; -- --- Name: hmis_external_referrals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx60; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_external_referrals_id_seq OWNED BY public.hmis_external_referrals.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx60"; -- --- Name: hmis_external_unit_availability_syncs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx61; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_external_unit_availability_syncs ( - id bigint NOT NULL, - project_id bigint NOT NULL, - unit_type_id bigint NOT NULL, - user_id bigint NOT NULL, - local_version integer DEFAULT 0 NOT NULL, - synced_version integer DEFAULT 0 NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx61"; -- --- Name: hmis_external_unit_availability_syncs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx62; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_external_unit_availability_syncs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx62"; -- --- Name: hmis_external_unit_availability_syncs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx63; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_external_unit_availability_syncs_id_seq OWNED BY public.hmis_external_unit_availability_syncs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx63"; -- --- Name: hmis_form_definitions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx64; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_form_definitions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx64"; -- --- Name: hmis_form_definitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx65; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_form_definitions_id_seq OWNED BY public.hmis_form_definitions.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx65"; -- --- Name: hmis_form_instances; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx66; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_form_instances ( - id bigint NOT NULL, - entity_type character varying, - entity_id bigint, - definition_identifier character varying NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - custom_service_type_id integer, - custom_service_category_id integer, - funder integer, - project_type integer, - other_funder character varying, - data_collected_about character varying, - system boolean DEFAULT false NOT NULL, - active boolean DEFAULT true NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx66"; -- --- Name: hmis_form_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx67; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_form_instances_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx67"; -- --- Name: hmis_form_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx68; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_form_instances_id_seq OWNED BY public.hmis_form_instances.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx68"; -- --- Name: hmis_form_processors_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx69; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_form_processors_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx69"; -- --- Name: hmis_form_processors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx70; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_form_processors_id_seq OWNED BY public.hmis_form_processors.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx70"; -- --- Name: hmis_forms; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx71; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_forms ( - id integer NOT NULL, - client_id integer, - api_response text, - name character varying, - answers text, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - response_id integer, - subject_id integer, - collected_at timestamp without time zone, - staff character varying, - assessment_type character varying, - collection_location character varying, - assessment_id integer, - data_source_id integer NOT NULL, - site_id integer, - vispdat_score_updated_at timestamp without time zone, - vispdat_total_score double precision, - vispdat_youth_score double precision, - vispdat_family_score double precision, - vispdat_months_homeless double precision, - vispdat_times_homeless double precision, - staff_email character varying, - eto_last_updated timestamp without time zone, - housing_status character varying, - vispdat_pregnant character varying, - vispdat_pregnant_updated_at date, - housing_status_updated_at timestamp without time zone, - pathways_updated_at timestamp without time zone, - assessment_completed_on date, - assessment_score integer, - rrh_desired boolean DEFAULT false NOT NULL, - youth_rrh_desired boolean DEFAULT false NOT NULL, - rrh_assessment_contact_info character varying, - adult_rrh_desired boolean DEFAULT false NOT NULL, - rrh_th_desired boolean DEFAULT false NOT NULL, - income_maximization_assistance_requested boolean DEFAULT false NOT NULL, - income_total_annual integer, - pending_subsidized_housing_placement boolean DEFAULT false NOT NULL, - domestic_violence boolean DEFAULT false NOT NULL, - interested_in_set_asides boolean DEFAULT false NOT NULL, - required_number_of_bedrooms integer, - required_minimum_occupancy integer, - requires_wheelchair_accessibility boolean DEFAULT false NOT NULL, - requires_elevator_access boolean DEFAULT false NOT NULL, - youth_rrh_aggregate character varying, - dv_rrh_aggregate character varying, - veteran_rrh_desired boolean DEFAULT false NOT NULL, - sro_ok boolean DEFAULT false NOT NULL, - other_accessibility boolean DEFAULT false NOT NULL, - disabled_housing boolean DEFAULT false NOT NULL, - evicted boolean DEFAULT false NOT NULL, - neighborhood_interests jsonb DEFAULT '[]'::jsonb, - client_phones character varying, - client_emails character varying, - client_shelters character varying, - client_case_managers character varying, - client_day_shelters character varying, - client_night_shelters character varying, - ssvf_eligible boolean DEFAULT false, - vispdat_physical_disability_answer character varying, - vispdat_physical_disability_updated_at timestamp without time zone, - covid_impact_updated_at timestamp without time zone, - number_of_bedrooms integer, - subsidy_months integer, - total_subsidy integer, - monthly_rent_total integer, - percent_ami integer, - household_type character varying, - household_size integer, - location_processed_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx71"; -- --- Name: hmis_forms_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx72; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_forms_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx72"; -- --- Name: hmis_forms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx73; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_forms_id_seq OWNED BY public.hmis_forms.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx73"; -- --- Name: hmis_group_viewable_entities; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx74; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_group_viewable_entities ( - id bigint NOT NULL, - entity_type character varying NOT NULL, - entity_id bigint NOT NULL, - collection_id bigint NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx74"; -- --- Name: hmis_group_viewable_entities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx75; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_group_viewable_entities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx75"; -- --- Name: hmis_group_viewable_entities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx76; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_group_viewable_entities_id_seq OWNED BY public.hmis_group_viewable_entities.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx76"; -- --- Name: hmis_group_viewable_entity_projects; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx77; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.hmis_group_viewable_entity_projects AS - SELECT hmis_group_viewable_entities.id AS group_viewable_entity_id, - NULL::integer AS organization_id, - hmis_group_viewable_entities.entity_id AS project_id - FROM public.hmis_group_viewable_entities - WHERE (((hmis_group_viewable_entities.entity_type)::text = 'Hmis::Hud::Project'::text) AND (hmis_group_viewable_entities.deleted_at IS NULL)) -UNION - SELECT hmis_group_viewable_entities.id AS group_viewable_entity_id, - "Organization".id AS organization_id, - "Project".id AS project_id - FROM ((public.hmis_group_viewable_entities - JOIN public."Organization" ON ((("Organization"."DateDeleted" IS NULL) AND ("Organization".id = hmis_group_viewable_entities.entity_id)))) - JOIN public."Project" ON ((("Project"."DateDeleted" IS NULL) AND ("Organization".data_source_id = "Project".data_source_id) AND (("Organization"."OrganizationID")::text = ("Project"."OrganizationID")::text)))) - WHERE (((hmis_group_viewable_entities.entity_type)::text = 'Hmis::Hud::Organization'::text) AND (hmis_group_viewable_entities.deleted_at IS NULL)) -UNION - SELECT hmis_group_viewable_entities.id AS group_viewable_entity_id, - "Organization".id AS organization_id, - "Project".id AS project_id - FROM (((public.hmis_group_viewable_entities - JOIN public.data_sources ON (((data_sources.deleted_at IS NULL) AND (data_sources.id = hmis_group_viewable_entities.entity_id)))) - LEFT JOIN public."Project" ON ((("Project"."DateDeleted" IS NULL) AND (data_sources.id = "Project".data_source_id)))) - LEFT JOIN public."Organization" ON ((("Organization"."DateDeleted" IS NULL) AND (data_sources.id = "Organization".data_source_id)))) - WHERE (((hmis_group_viewable_entities.entity_type)::text = 'GrdaWarehouse::DataSource'::text) AND (hmis_group_viewable_entities.deleted_at IS NULL)); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx77"; -- --- Name: hmis_households; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx78; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.hmis_households AS - SELECT concat("Enrollment"."HouseholdID", ':', "Project"."ProjectID", ':', "Project".data_source_id) AS id, - "Enrollment"."HouseholdID", - "Enrollment".project_pk, - "Project"."ProjectID", - "Project".data_source_id, - min("Enrollment"."EntryDate") AS earliest_entry, - CASE - WHEN bool_or(("Exit"."ExitDate" IS NULL)) THEN NULL::date - ELSE max("Exit"."ExitDate") - END AS latest_exit, - bool_or(("Enrollment"."ProjectID" IS NULL)) AS any_wip, - NULL::text AS "DateDeleted", - max("Enrollment"."DateUpdated") AS "DateUpdated", - min("Enrollment"."DateCreated") AS "DateCreated" - FROM ((public."Enrollment" - LEFT JOIN public."Exit" ON (((("Exit"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Exit".data_source_id = "Enrollment".data_source_id) AND ("Exit"."DateDeleted" IS NULL)))) - JOIN public."Project" ON ((("Project"."DateDeleted" IS NULL) AND ("Project".id = "Enrollment".project_pk)))) - WHERE ("Enrollment"."DateDeleted" IS NULL) - GROUP BY "Project".data_source_id, "Project"."ProjectID", "Enrollment".project_pk, "Enrollment"."HouseholdID"; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx78"; -- --- Name: hmis_import_configs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx79; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_import_configs ( - id bigint NOT NULL, - data_source_id bigint NOT NULL, - active boolean DEFAULT false, - s3_access_key_id character varying NOT NULL, - encrypted_s3_secret_access_key character varying NOT NULL, - encrypted_s3_secret_access_key_iv character varying, - s3_region character varying, - s3_bucket_name character varying, - s3_path character varying, - encrypted_zip_file_password character varying, - encrypted_zip_file_password_iv character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - file_count integer DEFAULT 1 NOT NULL, - s3_role_arn character varying, - s3_external_id character varying -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx79"; -- --- Name: hmis_import_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx80; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_import_configs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx80"; -- --- Name: hmis_import_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx81; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_import_configs_id_seq OWNED BY public.hmis_import_configs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx81"; -- --- Name: hmis_project_configs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx82; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_project_configs ( - id bigint NOT NULL, - type character varying NOT NULL, - enabled boolean DEFAULT true NOT NULL, - config_options jsonb, - project_type integer, - organization_id bigint, - project_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx82"; -- --- Name: hmis_project_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx83; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_project_configs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx83"; -- --- Name: hmis_project_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx84; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_project_configs_id_seq OWNED BY public.hmis_project_configs.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx84"; -- --- Name: hmis_project_unit_type_mappings; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx85; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_project_unit_type_mappings ( - id bigint NOT NULL, - project_id bigint NOT NULL, - unit_type_id bigint NOT NULL, - unit_capacity integer, - active boolean NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx85"; -- --- Name: hmis_project_unit_type_mappings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx86; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_project_unit_type_mappings_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx86"; -- --- Name: hmis_project_unit_type_mappings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx87; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_project_unit_type_mappings_id_seq OWNED BY public.hmis_project_unit_type_mappings.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx87"; -- --- Name: hmis_scan_card_codes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx88; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_scan_card_codes ( - id bigint NOT NULL, - client_id bigint NOT NULL, - value character varying NOT NULL, - created_by_id bigint, - deleted_by_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - expires_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx88"; -- --- Name: COLUMN hmis_scan_card_codes.value; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx89; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.hmis_scan_card_codes.value IS 'code to embed in scan card'; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx89"; -- --- Name: COLUMN hmis_scan_card_codes.created_by_id; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx90; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.hmis_scan_card_codes.created_by_id IS 'user that generated code'; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx90"; -- --- Name: COLUMN hmis_scan_card_codes.deleted_by_id; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx91; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.hmis_scan_card_codes.deleted_by_id IS 'user that deleted code'; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx91"; -- --- Name: COLUMN hmis_scan_card_codes.expires_at; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx92; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.hmis_scan_card_codes.expires_at IS 'when scan card should expire'; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx92"; -- --- Name: hmis_scan_card_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx93; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_scan_card_codes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx93"; -- --- Name: hmis_scan_card_codes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx94; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_scan_card_codes_id_seq OWNED BY public.hmis_scan_card_codes.id; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx94"; -- --- Name: hmis_services; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx95; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.hmis_services AS - SELECT (concat('1', ("Services".id)::character varying))::integer AS id, - "Services".id AS owner_id, - 'Hmis::Hud::Service'::text AS owner_type, - "Services"."RecordType", - "Services"."TypeProvided", - NULL::bigint AS custom_service_type_id, - "Services"."EnrollmentID", - "Services"."PersonalID", - "Services"."DateProvided", - ("Services"."UserID")::character varying AS "UserID", - "Services"."DateCreated", - "Services"."DateUpdated", - "Services"."DateDeleted", - "Services".data_source_id - FROM public."Services" - WHERE ("Services"."DateDeleted" IS NULL) -UNION ALL - SELECT (concat('2', ("CustomServices".id)::character varying))::integer AS id, - ("CustomServices".id)::integer AS owner_id, - 'Hmis::Hud::CustomService'::text AS owner_type, - NULL::integer AS "RecordType", - NULL::integer AS "TypeProvided", - "CustomServices".custom_service_type_id, - "CustomServices"."EnrollmentID", - "CustomServices"."PersonalID", - "CustomServices"."DateProvided", - "CustomServices"."UserID", - "CustomServices"."DateCreated", - "CustomServices"."DateUpdated", - "CustomServices"."DateDeleted", - "CustomServices".data_source_id - FROM public."CustomServices" - WHERE ("CustomServices"."DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx95"; -- --- Name: hmis_staff; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx96; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_staff ( - id integer NOT NULL, - site_id integer, - first_name character varying, - last_name character varying, - middle_initial character varying, - work_phone character varying, - cell_phone character varying, - email character varying, - ssn character varying, - source_class character varying, - source_id character varying, - data_source_id integer -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx96"; -- --- Name: hmis_staff_assignment_relationships; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx97; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_staff_assignment_relationships ( - id bigint NOT NULL, - name character varying NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx97"; -- --- Name: COLUMN hmis_staff_assignment_relationships.name; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx98; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.hmis_staff_assignment_relationships.name IS 'name of role, such as "Case Manager" or "Housing Navigator"'; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx98"; -- --- Name: hmis_staff_assignment_relationships_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx99; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_staff_assignment_relationships_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_EnrollmentID_RecordType_Date_idx99"; -- --- Name: hmis_staff_assignment_relationships_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx100; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_staff_assignment_relationships_id_seq OWNED BY public.hmis_staff_assignment_relationships.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx100"; -- --- Name: hmis_staff_assignments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx101; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_staff_assignments ( - id bigint NOT NULL, - user_id bigint NOT NULL, - household_id character varying, - hmis_staff_assignment_relationship_id bigint NOT NULL, - data_source_id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx101"; -- --- Name: hmis_staff_assignments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx102; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_staff_assignments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx102"; -- --- Name: hmis_staff_assignments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx103; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_staff_assignments_id_seq OWNED BY public.hmis_staff_assignments.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx103"; -- --- Name: hmis_staff_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx104; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_staff_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx104"; -- --- Name: hmis_staff_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx105; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_staff_id_seq OWNED BY public.hmis_staff.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx105"; -- --- Name: hmis_staff_x_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx106; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_staff_x_clients ( - id integer NOT NULL, - staff_id integer, - client_id integer, - relationship_id integer, - source_class character varying, - source_id character varying -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx106"; -- --- Name: hmis_staff_x_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx107; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_staff_x_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx107"; -- --- Name: hmis_staff_x_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx108; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_staff_x_clients_id_seq OWNED BY public.hmis_staff_x_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx108"; -- --- Name: hmis_supplemental_data_sets; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx109; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_supplemental_data_sets ( - id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - data_source_id bigint NOT NULL, - remote_credential_id bigint, - owner_type character varying NOT NULL, - object_key character varying NOT NULL, - name character varying NOT NULL, - field_config character varying NOT NULL, - sync_enabled boolean DEFAULT false -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx109"; -- --- Name: hmis_supplemental_data_sets_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx110; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_supplemental_data_sets_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx110"; -- --- Name: hmis_supplemental_data_sets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx111; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_supplemental_data_sets_id_seq OWNED BY public.hmis_supplemental_data_sets.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx111"; -- --- Name: hmis_supplemental_field_values; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx112; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_supplemental_field_values ( - id bigint NOT NULL, - data_set_id bigint NOT NULL, - field_key character varying NOT NULL, - owner_key character varying NOT NULL, - data jsonb NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx112"; -- --- Name: hmis_supplemental_field_values_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx113; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_supplemental_field_values_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx113"; -- --- Name: hmis_supplemental_field_values_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx114; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_supplemental_field_values_id_seq OWNED BY public.hmis_supplemental_field_values.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx114"; -- --- Name: hmis_unit_occupancy; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx115; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_unit_occupancy ( - id bigint NOT NULL, - unit_id bigint NOT NULL, - enrollment_id bigint NOT NULL, - hmis_service_id bigint -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx115"; + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx116; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx116"; -- --- Name: hmis_unit_occupancy_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx117; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_unit_occupancy_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx117"; -- --- Name: hmis_unit_occupancy_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx118; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_unit_occupancy_id_seq OWNED BY public.hmis_unit_occupancy.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx118"; -- --- Name: hmis_unit_types; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx119; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_unit_types ( - id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - description character varying, - bed_type integer, - unit_size integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx119"; -- --- Name: hmis_unit_types_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx120; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_unit_types_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx120"; -- --- Name: hmis_unit_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx121; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_unit_types_id_seq OWNED BY public.hmis_unit_types.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx121"; -- --- Name: hmis_units; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx122; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hmis_units ( - id bigint NOT NULL, - name character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - user_id character varying NOT NULL, - unit_type_id integer, - unit_size integer, - project_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx122"; -- --- Name: hmis_units_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx123; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hmis_units_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx123"; -- --- Name: hmis_units_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx124; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hmis_units_id_seq OWNED BY public.hmis_units.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx124"; -- --- Name: homeless_summary_report_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx125; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.homeless_summary_report_clients ( - id bigint NOT NULL, - client_id bigint, - report_id bigint, - first_name character varying, - last_name character varying, - spm_m1a_es_sh_days integer, - spm_m1a_es_sh_th_days integer, - spm_m1b_es_sh_ph_days integer, - spm_m1b_es_sh_th_ph_days integer, - spm_m2_reentry_days integer, - spm_m7a1_destination integer, - spm_m7b1_destination integer, - spm_m7b2_destination integer, - spm_m7a1_c2 boolean DEFAULT false, - spm_m7a1_c3 boolean DEFAULT false, - spm_m7a1_c4 boolean DEFAULT false, - spm_m7b1_c2 boolean DEFAULT false, - spm_m7b1_c3 boolean DEFAULT false, - spm_m7b2_c2 boolean DEFAULT false, - spm_m7b2_c3 boolean DEFAULT false, - spm_all_persons integer, - spm_without_children integer, - spm_with_children integer, - spm_only_children integer, - spm_without_children_and_fifty_five_plus integer, - spm_adults_with_children_where_parenting_adult_18_to_24 integer, - spm_white_non_hispanic_latino integer, - spm_hispanic_latino integer, - spm_black_african_american integer, - spm_asian integer, - spm_american_indian_alaskan_native integer, - spm_native_hawaiian_other_pacific_islander integer, - spm_multi_racial integer, - spm_fleeing_dv integer, - spm_veteran integer, - spm_has_disability integer, - spm_has_rrh_move_in_date integer, - spm_has_psh_move_in_date integer, - spm_first_time_homeless integer, - spm_returned_to_homelessness_from_permanent_destination integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - spm_exited_from_homeless_system boolean DEFAULT false, - spm_all_persons__all integer, - spm_all_persons__white_non_hispanic_latino integer, - spm_all_persons__hispanic_latino integer, - spm_all_persons__black_african_american integer, - spm_all_persons__asian integer, - spm_all_persons__american_indian_alaskan_native integer, - spm_all_persons__native_hawaiian_other_pacific_islander integer, - spm_all_persons__multi_racial integer, - spm_all_persons__fleeing_dv integer, - spm_all_persons__veteran integer, - spm_all_persons__has_disability integer, - spm_all_persons__has_rrh_move_in_date integer, - spm_all_persons__has_psh_move_in_date integer, - spm_all_persons__first_time_homeless integer, - spm_all_persons__returned_to_homelessness_from_permanent_destin integer, - spm_without_children__all integer, - spm_without_children__white_non_hispanic_latino integer, - spm_without_children__hispanic_latino integer, - spm_without_children__black_african_american integer, - spm_without_children__asian integer, - spm_without_children__american_indian_alaskan_native integer, - spm_without_children__native_hawaiian_other_pacific_islander integer, - spm_without_children__multi_racial integer, - spm_without_children__fleeing_dv integer, - spm_without_children__veteran integer, - spm_without_children__has_disability integer, - spm_without_children__has_rrh_move_in_date integer, - spm_without_children__has_psh_move_in_date integer, - spm_without_children__first_time_homeless integer, - spm_without_children__returned_to_homelessness_from_permanent_d integer, - spm_with_children__all integer, - spm_with_children__white_non_hispanic_latino integer, - spm_with_children__hispanic_latino integer, - spm_with_children__black_african_american integer, - spm_with_children__asian integer, - spm_with_children__american_indian_alaskan_native integer, - spm_with_children__native_hawaiian_other_pacific_islander integer, - spm_with_children__multi_racial integer, - spm_with_children__fleeing_dv integer, - spm_with_children__veteran integer, - spm_with_children__has_disability integer, - spm_with_children__has_rrh_move_in_date integer, - spm_with_children__has_psh_move_in_date integer, - spm_with_children__first_time_homeless integer, - spm_with_children__returned_to_homelessness_from_permanent_dest integer, - spm_only_children__all integer, - spm_only_children__white_non_hispanic_latino integer, - spm_only_children__hispanic_latino integer, - spm_only_children__black_african_american integer, - spm_only_children__asian integer, - spm_only_children__american_indian_alaskan_native integer, - spm_only_children__native_hawaiian_other_pacific_islander integer, - spm_only_children__multi_racial integer, - spm_only_children__fleeing_dv integer, - spm_only_children__veteran integer, - spm_only_children__has_disability integer, - spm_only_children__has_rrh_move_in_date integer, - spm_only_children__has_psh_move_in_date integer, - spm_only_children__first_time_homeless integer, - spm_only_children__returned_to_homelessness_from_permanent_dest integer, - spm_without_children_and_fifty_five_plus__all integer, - spm_without_children_and_fifty_five_plus__white_non_hispanic_la integer, - spm_without_children_and_fifty_five_plus__hispanic_latino integer, - spm_without_children_and_fifty_five_plus__black_african_america integer, - spm_without_children_and_fifty_five_plus__asian integer, - spm_without_children_and_fifty_five_plus__american_indian_alask integer, - spm_without_children_and_fifty_five_plus__native_hawaiian_other integer, - spm_without_children_and_fifty_five_plus__multi_racial integer, - spm_without_children_and_fifty_five_plus__fleeing_dv integer, - spm_without_children_and_fifty_five_plus__veteran integer, - spm_without_children_and_fifty_five_plus__has_disability integer, - spm_without_children_and_fifty_five_plus__has_rrh_move_in_date integer, - spm_without_children_and_fifty_five_plus__has_psh_move_in_date integer, - spm_without_children_and_fifty_five_plus__first_time_homeless integer, - spm_without_children_and_fifty_five_plus__returned_to_homelessn integer, - spm_adults_with_children_where_parenting_adult_18_to_24__all integer, - spm_adults_with_children_where_parenting_adult_18_to_24__white_ integer, - spm_adults_with_children_where_parenting_adult_18_to_24__hispan integer, - spm_adults_with_children_where_parenting_adult_18_to_24__black_ integer, - spm_adults_with_children_where_parenting_adult_18_to_24__asian integer, - spm_adults_with_children_where_parenting_adult_18_to_24__americ integer, - spm_adults_with_children_where_parenting_adult_18_to_24__native integer, - spm_adults_with_children_where_parenting_adult_18_to_24__multi_ integer, - spm_adults_with_children_where_parenting_adult_18_to_24__fleein integer, - spm_adults_with_children_where_parenting_adult_18_to_24__vetera integer, - spm_adults_with_children_where_parenting_adult_18_to_24__has_di integer, - spm_adults_with_children_where_parenting_adult_18_to_24__has_rr integer, - spm_adults_with_children_where_parenting_adult_18_to_24__has_ps integer, - spm_adults_with_children_where_parenting_adult_18_to_24__first_ integer, - spm_adults_with_children_where_parenting_adult_18_to_24__return integer, - spm_all_persons__white integer, - spm_all_persons__race_none integer, - spm_without_children__white integer, - spm_without_children__race_none integer, - spm_with_children__white integer, - spm_with_children__race_none integer, - spm_only_children__white integer, - spm_only_children__race_none integer, - spm_without_children_and_fifty_five_plus__white integer, - spm_without_children_and_fifty_five_plus__race_none integer, - spm_adults_with_children_where_parenting_adult_18_to_24__white integer, - spm_adults_with_children_where_parenting_adult_18_to_24__race_n integer, - spm_all_persons__non_hispanic_latino integer, - spm_all_persons__b_n_h_l integer, - spm_all_persons__a_n_h_l integer, - spm_all_persons__n_n_h_l integer, - spm_all_persons__h_n_h_l integer, - spm_without_children__non_hispanic_latino integer, - spm_without_children__b_n_h_l integer, - spm_without_children__a_n_h_l integer, - spm_without_children__n_n_h_l integer, - spm_without_children__h_n_h_l integer, - spm_with_children__non_hispanic_latino integer, - spm_with_children__b_n_h_l integer, - spm_with_children__a_n_h_l integer, - spm_with_children__n_n_h_l integer, - spm_with_children__h_n_h_l integer, - spm_only_children__non_hispanic_latino integer, - spm_only_children__b_n_h_l integer, - spm_only_children__a_n_h_l integer, - spm_only_children__n_n_h_l integer, - spm_only_children__h_n_h_l integer, - spm_without_children_and_fifty_five_plus__non_hispanic_latino integer, - spm_without_children_and_fifty_five_plus__b_n_h_l integer, - spm_without_children_and_fifty_five_plus__a_n_h_l integer, - spm_without_children_and_fifty_five_plus__n_n_h_l integer, - spm_without_children_and_fifty_five_plus__h_n_h_l integer, - spm_adults_with_children_where_parenting_adult_18_to_24__non_hi integer, - spm_adults_with_children_where_parenting_adult_18_to_24__b_n_h_ integer, - spm_adults_with_children_where_parenting_adult_18_to_24__a_n_h_ integer, - spm_adults_with_children_where_parenting_adult_18_to_24__n_n_h_ integer, - spm_adults_with_children_where_parenting_adult_18_to_24__h_n_h_ integer, - spm_all_persons__mid_east_n_african integer, - spm_all_persons__hispanic_latinaeo integer, - spm_without_children__mid_east_n_african integer, - spm_without_children__hispanic_latinaeo integer, - spm_with_children__mid_east_n_african integer, - spm_with_children__hispanic_latinaeo integer, - spm_only_children__mid_east_n_african integer, - spm_only_children__hispanic_latinaeo integer, - spm_without_children_and_fifty_five_plus__mid_east_n_african integer, - spm_without_children_and_fifty_five_plus__hispanic_latinaeo integer, - spm_adults_with_children_where_parenting_adult_18_to_24__mid_ea integer, - spm_all_persons__am_ind_ak_native integer, - spm_all_persons__am_ind_ak_native_hispanic_latinaeo integer, - spm_all_persons__asian_hispanic_latinaeo integer, - spm_all_persons__black_af_american integer, - spm_all_persons__black_af_american_hispanic_latinaeo integer, - spm_all_persons__mid_east_n_african_hispanic_latinaeo integer, - spm_all_persons__native_hi_pacific integer, - spm_all_persons__native_hi_pacific_hispanic_latinaeo integer, - spm_all_persons__white_hispanic_latinaeo integer, - spm_all_persons__multi_racial_hispanic_latinaeo integer, - spm_all_persons__returned integer, - spm_without_children__am_ind_ak_native integer, - spm_without_children__am_ind_ak_native_hispanic_latinaeo integer, - spm_without_children__asian_hispanic_latinaeo integer, - spm_without_children__black_af_american integer, - spm_without_children__black_af_american_hispanic_latinaeo integer, - spm_without_children__mid_east_n_african_hispanic_latinaeo integer, - spm_without_children__native_hi_pacific integer, - spm_without_children__native_hi_pacific_hispanic_latinaeo integer, - spm_without_children__white_hispanic_latinaeo integer, - spm_without_children__multi_racial_hispanic_latinaeo integer, - spm_without_children__returned integer, - spm_with_children__am_ind_ak_native integer, - spm_with_children__am_ind_ak_native_hispanic_latinaeo integer, - spm_with_children__asian_hispanic_latinaeo integer, - spm_with_children__black_af_american integer, - spm_with_children__black_af_american_hispanic_latinaeo integer, - spm_with_children__mid_east_n_african_hispanic_latinaeo integer, - spm_with_children__native_hi_pacific integer, - spm_with_children__native_hi_pacific_hispanic_latinaeo integer, - spm_with_children__white_hispanic_latinaeo integer, - spm_with_children__multi_racial_hispanic_latinaeo integer, - spm_with_children__returned integer, - spm_only_children__am_ind_ak_native integer, - spm_only_children__am_ind_ak_native_hispanic_latinaeo integer, - spm_only_children__asian_hispanic_latinaeo integer, - spm_only_children__black_af_american integer, - spm_only_children__black_af_american_hispanic_latinaeo integer, - spm_only_children__mid_east_n_african_hispanic_latinaeo integer, - spm_only_children__native_hi_pacific integer, - spm_only_children__native_hi_pacific_hispanic_latinaeo integer, - spm_only_children__white_hispanic_latinaeo integer, - spm_only_children__multi_racial_hispanic_latinaeo integer, - spm_only_children__returned integer, - spm_without_children_and_fifty_five_plus__am_ind_ak_native integer, - spm_nc_55__am_ind_ak_native_hispanic_latinaeo integer, - spm_nc_55__asian_hispanic_latinaeo integer, - spm_without_children_and_fifty_five_plus__black_af_american integer, - spm_nc_55__black_af_american_hispanic_latinaeo integer, - spm_nc_55__mid_east_n_african_hispanic_latinaeo integer, - spm_without_children_and_fifty_five_plus__native_hi_pacific integer, - spm_nc_55__native_hi_pacific_hispanic_latinaeo integer, - spm_nc_55__white_hispanic_latinaeo integer, - spm_nc_55__multi_racial_hispanic_latinaeo integer, - spm_nc_55__returned_to_homelessness_from_permanent_destination integer, - spm_wc_18_to_24__am_ind_ak_native integer, - spm_wc_18_to_24__am_ind_ak_native_hispanic_latinaeo integer, - spm_wc_18_to_24__asian_hispanic_latinaeo integer, - spm_wc_18_to_24__black_af_american integer, - spm_wc_18_to_24__black_af_american_hispanic_latinaeo integer, - spm_wc_18_to_24__hispanic_latinaeo integer, - spm_wc_18_to_24__mid_east_n_african integer, - spm_wc_18_to_24__mid_east_n_african_hispanic_latinaeo integer, - spm_wc_18_to_24__native_hi_pacific integer, - spm_wc_18_to_24__native_hi_pacific_hispanic_latinaeo integer, - spm_wc_18_to_24__white_hispanic_latinaeo integer, - spm_wc_18_to_24__multi_racial integer, - spm_wc_18_to_24__multi_racial_hispanic_latinaeo integer, - spm_wc_18_to_24__race_none integer, - spm_wc_18_to_24__fleeing_dv integer, - spm_wc_18_to_24__veteran integer, - spm_wc_18_to_24__has_disability integer, - spm_wc_18_to_24__has_rrh_move_in_date integer, - spm_wc_18_to_24__has_psh_move_in_date integer, - spm_wc_18_to_24__first_time_homeless integer, - spm_wc_18_to_24__returned integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx125"; -- --- Name: homeless_summary_report_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx126; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.homeless_summary_report_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx126"; -- --- Name: homeless_summary_report_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx127; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.homeless_summary_report_clients_id_seq OWNED BY public.homeless_summary_report_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx127"; -- --- Name: homeless_summary_report_results; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx128; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.homeless_summary_report_results ( - id bigint NOT NULL, - report_id bigint, - section character varying, - household_category character varying, - demographic_category character varying, - field character varying, - destination character varying, - characteristic character varying, - calculation character varying, - value double precision, - format character varying, - details jsonb, - detail_link_slug character varying, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx128"; -- --- Name: homeless_summary_report_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx129; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.homeless_summary_report_results_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx129"; -- --- Name: homeless_summary_report_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx130; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.homeless_summary_report_results_id_seq OWNED BY public.homeless_summary_report_results.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx130"; -- --- Name: hopwa_caper_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx131; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hopwa_caper_enrollments ( - id bigint NOT NULL, - report_instance_id bigint NOT NULL, - destination_client_id bigint NOT NULL, - enrollment_id bigint NOT NULL, - report_household_id character varying NOT NULL, - first_name character varying, - last_name character varying, - personal_id character varying NOT NULL, - age integer, - dob date, - dob_quality integer, - genders integer[], - races integer[], - veteran boolean DEFAULT false NOT NULL, - entry_date date, - exit_date date, - relationship_to_hoh integer NOT NULL, - project_funders integer[], - project_type character varying, - income_benefit_source_types character varying[], - medical_insurance_types character varying[], - hiv_positive boolean DEFAULT false NOT NULL, - hopwa_eligible boolean DEFAULT false NOT NULL, - chronically_homeless boolean DEFAULT false NOT NULL, - prior_living_situation integer, - rental_subsidy_type integer, - exit_destination integer, - housing_assessment_at_exit integer, - subsidy_information integer, - ever_prescribed_anti_retroviral_therapy boolean DEFAULT false NOT NULL, - viral_load_suppression boolean DEFAULT false NOT NULL, - percent_ami numeric -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx131"; -- --- Name: hopwa_caper_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx132; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hopwa_caper_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx132"; -- --- Name: hopwa_caper_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx133; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hopwa_caper_enrollments_id_seq OWNED BY public.hopwa_caper_enrollments.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx133"; -- --- Name: hopwa_caper_services; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx134; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hopwa_caper_services ( - id bigint NOT NULL, - report_instance_id bigint NOT NULL, - destination_client_id bigint NOT NULL, - enrollment_id bigint NOT NULL, - service_id bigint NOT NULL, - report_household_id character varying NOT NULL, - personal_id character varying NOT NULL, - date_provided date, - record_type integer, - type_provided integer, - fa_amount numeric -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx134"; -- --- Name: hopwa_caper_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx135; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hopwa_caper_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx135"; -- --- Name: hopwa_caper_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx136; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hopwa_caper_services_id_seq OWNED BY public.hopwa_caper_services.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx136"; -- --- Name: housing_resolution_plans; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx137; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.housing_resolution_plans ( - id bigint NOT NULL, - client_id bigint, - user_id bigint, - pronouns character varying, - planned_on date, - staff_name character varying, - location character varying, - chosen_resolution character varying, - temporary_resolution character varying, - plan_description character varying, - action_steps character varying, - backup_plan character varying, - next_checkin date, - how_to_contact character varying, - psc_attempted character varying, - psc_why_not character varying, - resolution_achieved character varying, - resolution_why_not character varying, - problem_solving_point character varying, - housing_crisis_causes jsonb, - housing_crisis_cause_other character varying, - factor_employment_income character varying, - factor_family_supports character varying, - factor_social_supports character varying, - factor_life_skills character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx137"; -- --- Name: housing_resolution_plans_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx138; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.housing_resolution_plans_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx138"; -- --- Name: housing_resolution_plans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx139; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.housing_resolution_plans_id_seq OWNED BY public.housing_resolution_plans.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx139"; -- --- Name: hud_chronics; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx140; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_chronics ( - id integer NOT NULL, - date date, - client_id integer, - months_in_last_three_years integer, - individual boolean, - age integer, - homeless_since date, - dmh boolean, - trigger character varying, - project_names character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - days_in_last_three_years integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx140"; -- --- Name: hud_chronics_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx141; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_chronics_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx141"; -- --- Name: hud_chronics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx142; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_chronics_id_seq OWNED BY public.hud_chronics.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx142"; -- --- Name: hud_create_logs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx143; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_create_logs ( - id integer NOT NULL, - hud_key character varying NOT NULL, - personal_id character varying NOT NULL, - type character varying NOT NULL, - imported_at timestamp without time zone NOT NULL, - effective_date date NOT NULL, - data_source_id integer NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx143"; -- --- Name: hud_create_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx144; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_create_logs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx144"; -- --- Name: hud_create_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx145; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_create_logs_id_seq OWNED BY public.hud_create_logs.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx145"; -- --- Name: hud_lsa_summary_results; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx146; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_lsa_summary_results ( - id bigint NOT NULL, - hud_report_instance_id bigint, - summary jsonb, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx146"; -- --- Name: hud_lsa_summary_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx147; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_lsa_summary_results_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx147"; -- --- Name: hud_lsa_summary_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx148; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_lsa_summary_results_id_seq OWNED BY public.hud_lsa_summary_results.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx148"; -- --- Name: hud_report_apr_ce_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx149; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_apr_ce_assessments ( - id bigint NOT NULL, - hud_report_apr_client_id bigint, - project_id bigint, - assessment_date date, - assessment_level integer, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx149"; -- --- Name: hud_report_apr_ce_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx150; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_apr_ce_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx150"; -- --- Name: hud_report_apr_ce_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx151; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_apr_ce_assessments_id_seq OWNED BY public.hud_report_apr_ce_assessments.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx151"; -- --- Name: hud_report_apr_ce_events; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx152; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_apr_ce_events ( - id bigint NOT NULL, - hud_report_apr_client_id bigint, - project_id bigint, - event_date date, - event integer, - problem_sol_div_rr_result integer, - referral_case_manage_after integer, - referral_result integer, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx152"; -- --- Name: hud_report_apr_ce_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx153; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_apr_ce_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx153"; -- --- Name: hud_report_apr_ce_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx154; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_apr_ce_events_id_seq OWNED BY public.hud_report_apr_ce_events.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx154"; -- --- Name: hud_report_apr_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx155; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_apr_clients ( - id bigint NOT NULL, - age integer, - head_of_household boolean, - head_of_household_id character varying, - parenting_youth boolean, - first_date_in_program date, - last_date_in_program date, - veteran_status integer, - length_of_stay integer, - chronically_homeless boolean, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - first_name character varying, - last_name character varying, - name_quality integer, - ssn character varying, - ssn_quality integer, - dob date, - dob_quality integer, - enrollment_created date, - ethnicity integer, - gender integer, - overlapping_enrollments jsonb, - relationship_to_hoh integer, - household_id character varying, - enrollment_coc character varying, - disabling_condition integer, - developmental_disability boolean, - hiv_aids boolean, - physical_disability boolean, - chronic_disability boolean, - mental_health_problem boolean, - substance_abuse boolean, - indefinite_and_impairs boolean, - client_id integer, - data_source_id integer, - report_instance_id integer, - destination integer, - income_date_at_start date, - income_from_any_source_at_start integer, - income_sources_at_start jsonb, - annual_assessment_expected boolean, - income_date_at_annual_assessment date, - income_from_any_source_at_annual_assessment integer, - income_sources_at_annual_assessment jsonb, - income_date_at_exit date, - income_from_any_source_at_exit integer, - income_sources_at_exit jsonb, - project_type integer, - prior_living_situation integer, - prior_length_of_stay integer, - date_homeless date, - times_homeless integer, - months_homeless integer, - came_from_street_last_night integer, - exit_created date, - project_tracking_method integer, - date_of_last_bed_night date, - other_clients_over_25 boolean, - move_in_date date, - household_type character varying, - race integer, - developmental_disability_entry integer, - hiv_aids_entry integer, - physical_disability_entry integer, - chronic_disability_entry integer, - mental_health_problem_entry integer, - substance_abuse_entry integer, - alcohol_abuse_entry boolean, - drug_abuse_entry boolean, - developmental_disability_exit integer, - hiv_aids_exit integer, - physical_disability_exit integer, - chronic_disability_exit integer, - mental_health_problem_exit integer, - substance_abuse_exit integer, - alcohol_abuse_exit boolean, - drug_abuse_exit boolean, - developmental_disability_latest integer, - hiv_aids_latest integer, - physical_disability_latest integer, - chronic_disability_latest integer, - mental_health_problem_latest integer, - substance_abuse_latest integer, - alcohol_abuse_latest boolean, - drug_abuse_latest boolean, - domestic_violence integer, - currently_fleeing integer, - income_total_at_start double precision, - income_total_at_annual_assessment double precision, - income_total_at_exit double precision, - non_cash_benefits_from_any_source_at_start integer, - non_cash_benefits_from_any_source_at_annual_assessment integer, - non_cash_benefits_from_any_source_at_exit integer, - insurance_from_any_source_at_start integer, - insurance_from_any_source_at_annual_assessment integer, - insurance_from_any_source_at_exit integer, - time_to_move_in integer, - approximate_length_of_stay integer, - approximate_time_to_move_in integer, - date_to_street date, - housing_assessment integer, - subsidy_information integer, - date_of_engagement date, - household_members jsonb, - parenting_juvenile boolean, - deleted_at timestamp without time zone, - destination_client_id integer, - annual_assessment_in_window boolean, - chronically_homeless_detail character varying, - ce_assessment_date date, - ce_assessment_type integer, - ce_assessment_prioritization_status integer, - ce_event_date date, - ce_event_event integer, - ce_event_problem_sol_div_rr_result integer, - ce_event_referral_case_manage_after integer, - ce_event_referral_result integer, - gender_multi character varying, - bed_nights integer, - pit_enrollments jsonb DEFAULT '[]'::jsonb, - source_enrollment_id integer, - los_under_threshold integer, - project_id integer, - client_created_at timestamp without time zone, - personal_id character varying, - race_multi character varying, - exit_destination_subsidy_type integer, - domestic_violence_occurred integer, - translation_needed integer, - preferred_language integer, - preferred_language_different character varying, - sexual_orientation integer, - move_on_assistance_provided integer, - current_school_attend_at_entry integer, - most_recent_ed_status_at_entry integer, - current_ed_status_at_entry integer, - current_school_attend_at_exit integer, - most_recent_ed_status_at_exit integer, - current_ed_status_at_exit integer, - pay_for_success boolean DEFAULT false, - race_multi_include_race_none jsonb, - hoh_move_in_date date, - adjusted_move_in_date date -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx155"; -- --- Name: hud_report_apr_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx156; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_apr_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx156"; -- --- Name: hud_report_apr_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx157; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_apr_clients_id_seq OWNED BY public.hud_report_apr_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx157"; -- --- Name: hud_report_apr_living_situations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx158; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_apr_living_situations ( - id bigint NOT NULL, - hud_report_apr_client_id bigint, - information_date date, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - living_situation integer, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx158"; -- --- Name: hud_report_apr_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx159; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_apr_living_situations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx159"; -- --- Name: hud_report_apr_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx160; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_apr_living_situations_id_seq OWNED BY public.hud_report_apr_living_situations.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx160"; -- --- Name: hud_report_cells; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx161; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_cells ( - id bigint NOT NULL, - report_instance_id bigint, - question character varying NOT NULL, - cell_name character varying, - universe boolean DEFAULT false, - metadata json, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - summary json, - status character varying, - error_messages text, - deleted_at timestamp without time zone, - any_members boolean DEFAULT false NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx161"; -- --- Name: hud_report_cells_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx162; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_cells_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx162"; -- --- Name: hud_report_cells_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx163; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_cells_id_seq OWNED BY public.hud_report_cells.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx163"; -- --- Name: hud_report_dq_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx164; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_dq_clients ( - id bigint NOT NULL, - client_id integer, - data_source_id integer, - report_instance_id integer, - destination_client_id integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - age integer, - alcohol_abuse_entry boolean, - alcohol_abuse_exit boolean, - alcohol_abuse_latest boolean, - annual_assessment_expected boolean, - approximate_length_of_stay integer, - approximate_time_to_move_in integer, - came_from_street_last_night integer, - chronic_disability boolean, - chronic_disability_entry integer, - chronic_disability_exit integer, - chronic_disability_latest integer, - chronically_homeless boolean, - currently_fleeing integer, - date_homeless date, - date_of_engagement date, - date_of_last_bed_night date, - date_to_street date, - destination integer, - developmental_disability boolean, - developmental_disability_entry integer, - developmental_disability_exit integer, - developmental_disability_latest integer, - disabling_condition integer, - dob date, - dob_quality integer, - domestic_violence integer, - drug_abuse_entry boolean, - drug_abuse_exit boolean, - drug_abuse_latest boolean, - enrollment_coc character varying, - enrollment_created date, - ethnicity integer, - exit_created date, - first_date_in_program date, - first_name character varying, - gender integer, - head_of_household boolean, - head_of_household_id character varying, - hiv_aids boolean, - hiv_aids_entry integer, - hiv_aids_exit integer, - hiv_aids_latest integer, - household_id character varying, - household_members jsonb, - household_type character varying, - housing_assessment integer, - income_date_at_annual_assessment date, - income_date_at_exit date, - income_date_at_start date, - income_from_any_source_at_annual_assessment integer, - income_from_any_source_at_exit integer, - income_from_any_source_at_start integer, - income_sources_at_annual_assessment jsonb, - income_sources_at_exit jsonb, - income_sources_at_start jsonb, - income_total_at_annual_assessment integer, - income_total_at_exit integer, - income_total_at_start integer, - indefinite_and_impairs boolean, - insurance_from_any_source_at_annual_assessment integer, - insurance_from_any_source_at_exit integer, - insurance_from_any_source_at_start integer, - last_date_in_program date, - last_name character varying, - length_of_stay integer, - mental_health_problem boolean, - mental_health_problem_entry integer, - mental_health_problem_exit integer, - mental_health_problem_latest integer, - months_homeless integer, - move_in_date date, - name_quality integer, - non_cash_benefits_from_any_source_at_annual_assessment integer, - non_cash_benefits_from_any_source_at_exit integer, - non_cash_benefits_from_any_source_at_start integer, - other_clients_over_25 boolean, - overlapping_enrollments jsonb, - parenting_juvenil boolean, - parenting_youth boolean, - physical_disability boolean, - physical_disability_entry integer, - physical_disability_exit integer, - physical_disability_latest integer, - prior_length_of_stay integer, - prior_living_situation integer, - project_tracking_method integer, - project_type integer, - race integer, - relationship_to_hoh integer, - ssn character varying, - ssn_quality integer, - subsidy_information integer, - substance_abuse boolean, - substance_abuse_entry integer, - substance_abuse_exit integer, - substance_abuse_latest integer, - time_to_move_in integer, - times_homeless integer, - veteran_status integer, - annual_assessment_in_window boolean, - gender_multi character varying, - personal_id character varying -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx164"; -- --- Name: hud_report_dq_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx165; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_dq_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx165"; -- --- Name: hud_report_dq_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx166; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_dq_clients_id_seq OWNED BY public.hud_report_dq_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx166"; -- --- Name: hud_report_dq_living_situations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx167; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_dq_living_situations ( - id bigint NOT NULL, - hud_report_dq_client_id bigint, - living_situation integer, - information_date date, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx167"; -- --- Name: hud_report_dq_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx168; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_dq_living_situations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx168"; -- --- Name: hud_report_dq_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx169; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_dq_living_situations_id_seq OWNED BY public.hud_report_dq_living_situations.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx169"; -- --- Name: hud_report_hic_funders; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx170; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_hic_funders ( - id bigint NOT NULL, - "FunderID" character varying, - "ProjectID" character varying, - "Funder" integer, - "OtherFunder" character varying, - "GrantID" character varying, - "StartDate" date, - "EndDate" date, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - report_instance_id integer NOT NULL, - data_source_id integer NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx170"; -- --- Name: hud_report_hic_funders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx171; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_hic_funders_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx171"; -- --- Name: hud_report_hic_funders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx172; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_hic_funders_id_seq OWNED BY public.hud_report_hic_funders.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx172"; -- --- Name: hud_report_hic_inventories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx173; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_hic_inventories ( - id bigint NOT NULL, - "InventoryID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "HouseholdType" integer, - "Availability" integer, - "UnitInventory" integer, - "BedInventory" integer, - "CHVetBedInventory" integer, - "YouthVetBedInventory" integer, - "VetBedInventory" integer, - "CHYouthBedInventory" integer, - "YouthBedInventory" integer, - "CHBedInventory" integer, - "OtherBedInventory" integer, - "ESBedType" integer, - "InventoryStartDate" date, - "InventoryEndDate" date, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - report_instance_id integer NOT NULL, - data_source_id integer NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx173"; -- --- Name: hud_report_hic_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx174; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_hic_inventories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx174"; -- --- Name: hud_report_hic_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx175; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_hic_inventories_id_seq OWNED BY public.hud_report_hic_inventories.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx175"; -- --- Name: hud_report_hic_organizations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx176; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_hic_organizations ( - id bigint NOT NULL, - "OrganizationID" character varying, - "OrganizationName" character varying, - "VictimServiceProvider" integer, - "OrganizationCommonName" character varying, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - report_instance_id integer NOT NULL, - data_source_id integer NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx176"; -- --- Name: hud_report_hic_organizations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx177; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_hic_organizations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx177"; -- --- Name: hud_report_hic_organizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx178; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_hic_organizations_id_seq OWNED BY public.hud_report_hic_organizations.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx178"; -- --- Name: hud_report_hic_project_cocs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx179; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_hic_project_cocs ( - id bigint NOT NULL, - "ProjectCoCID" character varying, - "ProjectID" character varying, - "CoCCode" character varying, - "Geocode" character varying, - "Address1" character varying, - "Address2" character varying, - "City" character varying, - "State" character varying, - "Zip" character varying, - "GeographyType" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - report_instance_id integer NOT NULL, - data_source_id integer NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx179"; + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx180; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx180"; -- --- Name: hud_report_hic_project_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx181; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_hic_project_cocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx181"; -- --- Name: hud_report_hic_project_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx182; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_hic_project_cocs_id_seq OWNED BY public.hud_report_hic_project_cocs.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx182"; -- --- Name: hud_report_hic_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx183; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_hic_projects ( - id bigint NOT NULL, - "ProjectID" character varying, - "OrganizationID" character varying, - "ProjectName" character varying, - "ProjectCommonName" character varying, - "OperatingStartDate" date, - "OperatingEndDate" date, - "ContinuumProject" integer, - "ProjectType" integer, - "HousingType" integer, - "ResidentialAffiliation" integer, - "TrackingMethod" integer, - "HMISParticipatingProject" integer, - "TargetPopulation" integer, - "HOPWAMedAssistedLivingFac" integer, - "PITCount" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying, - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - report_instance_id integer NOT NULL, - data_source_id integer NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx183"; -- --- Name: hud_report_hic_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx184; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_hic_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx184"; -- --- Name: hud_report_hic_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx185; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_hic_projects_id_seq OWNED BY public.hud_report_hic_projects.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx185"; -- --- Name: hud_report_instances; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx186; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_instances ( - id bigint NOT NULL, - user_id bigint, - coc_code character varying, - report_name character varying, - start_date date, - end_date date, - options json, - state character varying, - started_at timestamp without time zone, - completed_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - project_ids json, - question_names json NOT NULL, - zip_file bytea, - deleted_at timestamp without time zone, - build_for_questions jsonb, - remaining_questions jsonb, - coc_codes jsonb, - manual boolean DEFAULT true NOT NULL, - failed_at timestamp without time zone, - percent_complete double precision, - export_id bigint, - type character varying DEFAULT 'HudReports::ReportInstance'::character varying NOT NULL, - error_details text -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx186"; -- --- Name: hud_report_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx187; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_instances_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx187"; -- --- Name: hud_report_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx188; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_instances_id_seq OWNED BY public.hud_report_instances.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx188"; -- --- Name: hud_report_path_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx189; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_path_clients ( - id bigint NOT NULL, - client_id bigint, - data_source_id bigint, - report_instance_id bigint, - first_name character varying, - last_name character varying, - age integer, - dob date, - dob_quality integer, - gender integer, - am_ind_ak_native integer, - asian integer, - black_af_american integer, - native_hi_other_pacific integer, - white integer, - race_none integer, - ethnicity integer, - veteran integer, - substance_use_disorder integer, - soar integer, - prior_living_situation integer, - length_of_stay integer, - chronically_homeless character varying, - domestic_violence integer, - active_client boolean, - new_client boolean, - enrolled_client boolean, - date_of_determination date, - reason_not_enrolled integer, - project_type integer, - first_date_in_program date, - last_date_in_program date, - contacts date[], - services jsonb, - referrals jsonb, - income_from_any_source_entry integer, - incomes_at_entry jsonb, - income_from_any_source_exit integer, - incomes_at_exit jsonb, - income_from_any_source_report_end integer, - incomes_at_report_end jsonb, - benefits_from_any_source_entry integer, - benefits_from_any_source_exit integer, - benefits_from_any_source_report_end integer, - insurance_from_any_source_entry integer, - insurance_from_any_source_exit integer, - insurance_from_any_source_report_end integer, - destination integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - gender_multi character varying, - destination_client_id integer, - personal_id character varying, - race_multi character varying, - newly_enrolled_client boolean DEFAULT false, - cmh_service_provided boolean DEFAULT false NOT NULL, - cmh_referral_provided_and_attained boolean DEFAULT false NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx189"; -- --- Name: hud_report_path_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx190; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_path_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx190"; -- --- Name: hud_report_path_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx191; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_path_clients_id_seq OWNED BY public.hud_report_path_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx191"; -- --- Name: hud_report_pit_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx192; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_pit_clients ( - id bigint NOT NULL, - client_id bigint, - data_source_id bigint, - report_instance_id bigint, - first_name character varying, - last_name character varying, - destination_client_id integer, - age integer, - dob date, - household_type character varying, - max_age integer, - hoh_veteran boolean, - head_of_household boolean, - relationship_to_hoh integer, - female integer, - male integer, - no_single_gender integer, - transgender integer, - questioning integer, - gender_none integer, - pit_gender character varying, - am_ind_ak_native integer, - asian integer, - black_af_american integer, - native_hi_other_pacific integer, - white integer, - race_none integer, - pit_race character varying, - ethnicity integer, - veteran integer, - chronically_homeless boolean, - chronically_homeless_household boolean, - substance_use integer, - substance_use_indefinite_impairing integer, - domestic_violence integer, - domestic_violence_currently_fleeing integer, - hiv_aids integer, - hiv_aids_indefinite_impairing integer, - mental_illness integer, - mental_illness_indefinite_impairing integer, - project_id integer, - project_type integer, - project_name character varying, - project_hmis_pit_count integer, - entry_date date, - exit_date date, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - personal_id character varying, - hoh_age integer, - household_member_count integer, - culturally_specific integer, - different_identity integer, - non_binary integer, - more_than_one_gender boolean, - mid_east_n_african integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx192"; -- --- Name: hud_report_pit_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx193; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_pit_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx193"; -- --- Name: hud_report_pit_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx194; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_pit_clients_id_seq OWNED BY public.hud_report_pit_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx194"; -- --- Name: hud_report_spm_bed_nights; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx195; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_spm_bed_nights ( - id bigint NOT NULL, - date date, - episode_id bigint, - service_id bigint, - enrollment_id bigint, - client_id bigint -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx195"; -- --- Name: hud_report_spm_bed_nights_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx196; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_spm_bed_nights_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx196"; -- --- Name: hud_report_spm_bed_nights_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx197; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_spm_bed_nights_id_seq OWNED BY public.hud_report_spm_bed_nights.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx197"; -- --- Name: hud_report_spm_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx198; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_spm_clients ( - id bigint NOT NULL, - client_id integer NOT NULL, - data_source_id integer NOT NULL, - report_instance_id integer NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - dob date, - first_name character varying, - last_name character varying, - m1a_es_sh_days integer, - m1a_es_sh_th_days integer, - m1b_es_sh_ph_days integer, - m1b_es_sh_th_ph_days integer, - m1_history jsonb, - m2_exit_from_project_type integer, - m2_exit_to_destination integer, - m2_reentry_days integer, - m2_history jsonb, - m3_active_project_types integer[], - m4_stayer boolean, - m4_latest_income numeric, - m4_latest_earned_income numeric, - m4_latest_non_earned_income numeric, - m4_earliest_income numeric, - m4_earliest_earned_income numeric, - m4_earliest_non_earned_income numeric, - m4_history jsonb, - m5_active_project_types integer[], - m5_recent_project_types integer[], - m5_history jsonb, - m6_exit_from_project_type integer, - m6_exit_to_destination integer, - m6_reentry_days integer, - m6c1_destination integer, - m6c2_destination integer, - m6_history jsonb, - m7a1_destination integer, - m7b1_destination integer, - m7b2_destination integer, - m7_history jsonb, - m3_history jsonb, - veteran boolean DEFAULT false NOT NULL, - m1_head_of_household boolean DEFAULT false NOT NULL, - m1_reporting_age integer, - m2_head_of_household boolean DEFAULT false NOT NULL, - m2_reporting_age integer, - m3_head_of_household boolean DEFAULT false NOT NULL, - m3_reporting_age integer, - m4_head_of_household boolean DEFAULT false NOT NULL, - m4_reporting_age integer, - m5_head_of_household boolean DEFAULT false NOT NULL, - m5_reporting_age integer, - m6_head_of_household boolean DEFAULT false NOT NULL, - m6_reporting_age integer, - m7_head_of_household boolean DEFAULT false NOT NULL, - m7_reporting_age integer, - m7b_history jsonb, - m2_project_id integer, - m3_project_id integer, - m4_project_id integer, - m5_project_id integer, - m7a1_project_id integer, - m7b_project_id integer, - personal_id character varying, - data_lab_public_id character varying, - source_client_personal_ids character varying -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx198"; -- --- Name: hud_report_spm_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx199; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_spm_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx199"; -- --- Name: hud_report_spm_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx200; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_spm_clients_id_seq OWNED BY public.hud_report_spm_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx200"; -- --- Name: hud_report_spm_enrollment_links; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx201; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_spm_enrollment_links ( - id bigint NOT NULL, - enrollment_id bigint, - episode_id bigint -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx201"; -- --- Name: hud_report_spm_enrollment_links_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx202; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_spm_enrollment_links_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx202"; -- --- Name: hud_report_spm_enrollment_links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx203; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_spm_enrollment_links_id_seq OWNED BY public.hud_report_spm_enrollment_links.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx203"; -- --- Name: hud_report_spm_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx204; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_spm_enrollments ( - id bigint NOT NULL, - first_name character varying, - last_name character varying, - personal_id character varying, - data_source_id integer, - start_of_homelessness date, - entry_date date, - exit_date date, - move_in_date date, - project_type integer, - eligible_funding boolean, - prior_living_situation integer, - length_of_stay integer, - los_under_threshold boolean, - previous_street_essh boolean, - destination integer, - age integer, - previous_earned_income numeric, - previous_non_employment_income numeric, - previous_total_income numeric, - current_earned_income numeric, - current_non_employment_income numeric, - current_total_income numeric, - report_instance_id bigint, - client_id bigint, - previous_income_benefits_id bigint, - current_income_benefits_id bigint, - enrollment_id bigint, - days_enrolled integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx204"; -- --- Name: hud_report_spm_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx205; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_spm_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx205"; -- --- Name: hud_report_spm_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx206; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_spm_enrollments_id_seq OWNED BY public.hud_report_spm_enrollments.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx206"; -- --- Name: hud_report_spm_episodes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx207; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_spm_episodes ( - id bigint NOT NULL, - first_date date, - last_date date, - days_homeless integer, - literally_homeless_at_entry boolean, - client_id bigint -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx207"; -- --- Name: hud_report_spm_episodes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx208; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_spm_episodes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx208"; -- --- Name: hud_report_spm_episodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx209; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_spm_episodes_id_seq OWNED BY public.hud_report_spm_episodes.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx209"; -- --- Name: hud_report_spm_returns; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx210; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_spm_returns ( - id bigint NOT NULL, - exit_date date, - return_date date, - exit_destination integer, - exit_enrollment_id bigint, - return_enrollment_id bigint, - client_id bigint, - report_instance_id bigint, - days_to_return integer, - project_type integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx210"; -- --- Name: hud_report_spm_returns_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx211; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_spm_returns_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx211"; -- --- Name: hud_report_spm_returns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx212; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_spm_returns_id_seq OWNED BY public.hud_report_spm_returns.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx212"; -- --- Name: hud_report_universe_members; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx213; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.hud_report_universe_members ( - id bigint NOT NULL, - report_cell_id bigint, - universe_membership_type character varying, - universe_membership_id bigint, - client_id bigint, - first_name character varying, - last_name character varying, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx213"; -- --- Name: hud_report_universe_members_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx214; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.hud_report_universe_members_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx214"; -- --- Name: hud_report_universe_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx215; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.hud_report_universe_members_id_seq OWNED BY public.hud_report_universe_members.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx215"; -- --- Name: identify_duplicates_log; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx216; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.identify_duplicates_log ( - id integer NOT NULL, - started_at timestamp without time zone, - completed_at timestamp without time zone, - to_match integer, - matched integer, - new_created integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx216"; -- --- Name: identify_duplicates_log_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx217; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.identify_duplicates_log_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx217"; -- --- Name: identify_duplicates_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx218; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.identify_duplicates_log_id_seq OWNED BY public.identify_duplicates_log.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx218"; -- --- Name: import_logs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx219; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.import_logs ( - id integer NOT NULL, - data_source_id integer, - files character varying, - import_errors text, - summary character varying, - completed_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - zip character varying, - upload_id integer, - encrypted_import_errors text, - encrypted_import_errors_iv character varying, - type character varying DEFAULT 'GrdaWarehouse::ImportLog'::character varying, - loader_log_id bigint, - importer_log_id bigint -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx219"; -- --- Name: import_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx220; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.import_logs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx220"; -- --- Name: import_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx221; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.import_logs_id_seq OWNED BY public.import_logs.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx221"; -- --- Name: import_overrides; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx222; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.import_overrides ( - id bigint NOT NULL, - file_name character varying NOT NULL, - matched_hud_key character varying, - replaces_column character varying NOT NULL, - replaces_value character varying, - replacement_value character varying NOT NULL, - data_source_id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - description character varying -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx222"; -- --- Name: import_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx223; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.import_overrides_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx223"; -- --- Name: import_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx224; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.import_overrides_id_seq OWNED BY public.import_overrides.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx224"; -- --- Name: inbound_api_configurations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx225; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.inbound_api_configurations ( - id bigint NOT NULL, - external_system_name character varying NOT NULL, - hashed_api_key character varying NOT NULL, - plain_text_reminder character varying NOT NULL, - version integer DEFAULT 0 NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - internal_system_id bigint -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx225"; -- --- Name: inbound_api_configurations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx226; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.inbound_api_configurations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx226"; -- --- Name: inbound_api_configurations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx227; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.inbound_api_configurations_id_seq OWNED BY public.inbound_api_configurations.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx227"; -- --- Name: income_benefits_report_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx228; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.income_benefits_report_clients ( - id bigint NOT NULL, - report_id bigint NOT NULL, - client_id bigint NOT NULL, - date_range character varying NOT NULL, - first_name character varying, - middle_name character varying, - last_name character varying, - ethnicity integer, - race character varying, - dob date, - age integer, - gender integer, - household_id character varying, - head_of_household boolean, - enrollment_id bigint NOT NULL, - entry_date date, - exit_date date, - move_in_date date, - project_name character varying, - project_id bigint, - earlier_income_record_id bigint, - later_income_record_id bigint, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx228"; -- --- Name: income_benefits_report_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx229; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.income_benefits_report_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx229"; -- --- Name: income_benefits_report_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx230; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.income_benefits_report_clients_id_seq OWNED BY public.income_benefits_report_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx230"; -- --- Name: income_benefits_report_incomes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx231; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.income_benefits_report_incomes ( - id bigint NOT NULL, - report_id bigint NOT NULL, - client_id bigint NOT NULL, - income_benefits_id bigint NOT NULL, - stage character varying NOT NULL, - date_range character varying NOT NULL, - "InformationDate" date NOT NULL, - "IncomeFromAnySource" integer, - "TotalMonthlyIncome" numeric, - "Earned" integer, - "EarnedAmount" numeric, - "Unemployment" integer, - "UnemploymentAmount" numeric, - "SSI" integer, - "SSIAmount" numeric, - "SSDI" integer, - "SSDIAmount" numeric, - "VADisabilityService" integer, - "VADisabilityServiceAmount" numeric, - "VADisabilityNonService" integer, - "VADisabilityNonServiceAmount" numeric, - "PrivateDisability" integer, - "PrivateDisabilityAmount" numeric, - "WorkersComp" integer, - "WorkersCompAmount" numeric, - "TANF" integer, - "TANFAmount" numeric, - "GA" integer, - "GAAmount" numeric, - "SocSecRetirement" integer, - "SocSecRetirementAmount" numeric, - "Pension" integer, - "PensionAmount" numeric, - "ChildSupport" integer, - "ChildSupportAmount" numeric, - "Alimony" integer, - "AlimonyAmount" numeric, - "OtherIncomeSource" integer, - "OtherIncomeAmount" numeric, - "OtherIncomeSourceIdentify" character varying, - "BenefitsFromAnySource" integer, - "SNAP" integer, - "WIC" integer, - "TANFChildCare" integer, - "TANFTransportation" integer, - "OtherTANF" integer, - "OtherBenefitsSource" integer, - "OtherBenefitsSourceIdentify" character varying, - "InsuranceFromAnySource" integer, - "Medicaid" integer, - "NoMedicaidReason" integer, - "Medicare" integer, - "NoMedicareReason" integer, - "SCHIP" integer, - "NoSCHIPReason" integer, - "VAMedicalServices" integer, - "NoVAMedReason" integer, - "EmployerProvided" integer, - "NoEmployerProvidedReason" integer, - "COBRA" integer, - "NoCOBRAReason" integer, - "PrivatePay" integer, - "NoPrivatePayReason" integer, - "StateHealthIns" integer, - "NoStateHealthInsReason" integer, - "IndianHealthServices" integer, - "NoIndianHealthServicesReason" integer, - "OtherInsurance" integer, - "OtherInsuranceIdentify" character varying, - "HIVAIDSAssistance" integer, - "NoHIVAIDSAssistanceReason" integer, - "ADAP" integer, - "NoADAPReason" integer, - "ConnectionWithSOAR" integer, - "DataCollectionStage" integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx231"; -- --- Name: income_benefits_report_incomes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx232; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.income_benefits_report_incomes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx232"; -- --- Name: income_benefits_report_incomes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx233; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.income_benefits_report_incomes_id_seq OWNED BY public.income_benefits_report_incomes.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx233"; -- --- Name: income_benefits_reports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx234; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.income_benefits_reports ( - id bigint NOT NULL, - user_id bigint, - options jsonb, - report_date_range character varying NOT NULL, - comparison_date_range character varying NOT NULL, - processing_errors character varying, - started_at timestamp without time zone, - completed_at timestamp without time zone, - failed_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx234"; -- --- Name: income_benefits_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx235; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.income_benefits_reports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx235"; -- --- Name: income_benefits_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx236; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.income_benefits_reports_id_seq OWNED BY public.income_benefits_reports.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx236"; -- --- Name: index_stats; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx237; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.index_stats AS - WITH table_stats AS ( - SELECT psut.relname, - psut.n_live_tup, - ((1.0 * (psut.idx_scan)::numeric) / (GREATEST((1)::bigint, (psut.seq_scan + psut.idx_scan)))::numeric) AS index_use_ratio - FROM pg_stat_user_tables psut - ORDER BY psut.n_live_tup DESC - ), table_io AS ( - SELECT psiut.relname, - sum(psiut.heap_blks_read) AS table_page_read, - sum(psiut.heap_blks_hit) AS table_page_hit, - (sum(psiut.heap_blks_hit) / GREATEST((1)::numeric, (sum(psiut.heap_blks_hit) + sum(psiut.heap_blks_read)))) AS table_hit_ratio - FROM pg_statio_user_tables psiut - GROUP BY psiut.relname - ORDER BY (sum(psiut.heap_blks_read)) DESC - ), index_io AS ( - SELECT psiui.relname, - psiui.indexrelname, - sum(psiui.idx_blks_read) AS idx_page_read, - sum(psiui.idx_blks_hit) AS idx_page_hit, - ((1.0 * sum(psiui.idx_blks_hit)) / GREATEST(1.0, (sum(psiui.idx_blks_hit) + sum(psiui.idx_blks_read)))) AS idx_hit_ratio - FROM pg_statio_user_indexes psiui - GROUP BY psiui.relname, psiui.indexrelname - ORDER BY (sum(psiui.idx_blks_read)) DESC - ) - SELECT ts.relname, - ts.n_live_tup, - ts.index_use_ratio, - ti.table_page_read, - ti.table_page_hit, - ti.table_hit_ratio, - ii.indexrelname, - ii.idx_page_read, - ii.idx_page_hit, - ii.idx_hit_ratio - FROM ((table_stats ts - LEFT JOIN table_io ti ON ((ti.relname = ts.relname))) - LEFT JOIN index_io ii ON ((ii.relname = ts.relname))) - ORDER BY ti.table_page_read DESC, ii.idx_page_read DESC; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx237"; -- --- Name: internal_systems; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx238; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.internal_systems ( - id bigint NOT NULL, - name character varying NOT NULL, - active boolean DEFAULT true NOT NULL, - auth_type character varying DEFAULT 'apikey'::character varying NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx238"; -- --- Name: internal_systems_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx239; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.internal_systems_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx239"; -- --- Name: internal_systems_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx240; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.internal_systems_id_seq OWNED BY public.internal_systems.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx240"; -- --- Name: involved_in_imports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx241; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.involved_in_imports ( - id bigint NOT NULL, - importer_log_id bigint, - record_type character varying NOT NULL, - record_id bigint NOT NULL, - hud_key character varying NOT NULL, - record_action public.record_action -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx241"; -- --- Name: involved_in_imports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx242; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.involved_in_imports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx242"; -- --- Name: involved_in_imports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx243; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.involved_in_imports_id_seq OWNED BY public.involved_in_imports.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx243"; -- --- Name: lftp_s3_syncs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx244; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.lftp_s3_syncs ( - id bigint NOT NULL, - data_source_id bigint NOT NULL, - ftp_host character varying NOT NULL, - ftp_user character varying NOT NULL, - encrypted_ftp_pass character varying NOT NULL, - encrypted_ftp_pass_iv character varying NOT NULL, - ftp_path character varying NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx244"; -- --- Name: lftp_s3_syncs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx245; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.lftp_s3_syncs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx245"; -- --- Name: lftp_s3_syncs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx246; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.lftp_s3_syncs_id_seq OWNED BY public.lftp_s3_syncs.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx246"; -- --- Name: longitudinal_spm_results; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx247; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.longitudinal_spm_results ( - id bigint NOT NULL, - report_id bigint NOT NULL, - spm_id bigint NOT NULL, - start_date date, - end_date date, - measure character varying, - "table" character varying, - cell character varying, - value double precision, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx247"; -- --- Name: longitudinal_spm_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx248; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.longitudinal_spm_results_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx248"; -- --- Name: longitudinal_spm_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx249; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.longitudinal_spm_results_id_seq OWNED BY public.longitudinal_spm_results.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx249"; -- --- Name: longitudinal_spm_spms; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx250; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.longitudinal_spm_spms ( - id bigint NOT NULL, - report_id bigint NOT NULL, - spm_id bigint NOT NULL, - start_date date, - end_date date, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx250"; -- --- Name: longitudinal_spm_spms_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx251; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.longitudinal_spm_spms_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx251"; -- --- Name: longitudinal_spm_spms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx252; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.longitudinal_spm_spms_id_seq OWNED BY public.longitudinal_spm_spms.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx252"; -- --- Name: longitudinal_spms; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx253; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.longitudinal_spms ( - id bigint NOT NULL, - user_id bigint, - options jsonb, - processing_errors character varying, - started_at timestamp without time zone, - completed_at timestamp without time zone, - failed_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx253"; -- --- Name: longitudinal_spms_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx254; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.longitudinal_spms_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx254"; -- --- Name: longitudinal_spms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx255; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.longitudinal_spms_id_seq OWNED BY public.longitudinal_spms.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx255"; -- --- Name: lookups_ethnicities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx256; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.lookups_ethnicities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx256"; -- --- Name: lookups_ethnicities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx257; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.lookups_ethnicities_id_seq OWNED BY public.lookups_ethnicities.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx257"; -- --- Name: lookups_funding_sources_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx258; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.lookups_funding_sources_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx258"; -- --- Name: lookups_funding_sources_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx259; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.lookups_funding_sources_id_seq OWNED BY public.lookups_funding_sources.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx259"; -- --- Name: lookups_genders_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx260; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.lookups_genders_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx260"; -- --- Name: lookups_genders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx261; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.lookups_genders_id_seq OWNED BY public.lookups_genders.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx261"; -- --- Name: lookups_living_situations_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx262; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.lookups_living_situations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx262"; -- --- Name: lookups_living_situations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx263; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.lookups_living_situations_id_seq OWNED BY public.lookups_living_situations.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx263"; -- --- Name: lookups_project_types_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx264; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.lookups_project_types_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx264"; -- --- Name: lookups_project_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx265; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.lookups_project_types_id_seq OWNED BY public.lookups_project_types.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx265"; -- --- Name: lookups_relationships_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx266; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.lookups_relationships_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx266"; -- --- Name: lookups_relationships_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx267; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.lookups_relationships_id_seq OWNED BY public.lookups_relationships.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx267"; -- --- Name: lookups_tracking_methods; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx268; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.lookups_tracking_methods ( - id bigint NOT NULL, - value integer, - text character varying NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx268"; -- --- Name: lookups_tracking_methods_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx269; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.lookups_tracking_methods_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx269"; -- --- Name: lookups_tracking_methods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx270; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.lookups_tracking_methods_id_seq OWNED BY public.lookups_tracking_methods.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx270"; -- --- Name: lookups_yes_no_etcs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx271; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.lookups_yes_no_etcs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx271"; -- --- Name: lookups_yes_no_etcs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx272; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.lookups_yes_no_etcs_id_seq OWNED BY public.lookups_yes_no_etcs.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx272"; -- --- Name: lsa_rds_state_logs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx273; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.lsa_rds_state_logs ( - id bigint NOT NULL, - state character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx273"; -- --- Name: lsa_rds_state_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx274; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.lsa_rds_state_logs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx274"; -- --- Name: lsa_rds_state_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx275; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.lsa_rds_state_logs_id_seq OWNED BY public.lsa_rds_state_logs.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx275"; -- --- Name: ma_monthly_performance_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx276; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ma_monthly_performance_enrollments ( - id bigint NOT NULL, - report_id bigint, - client_id bigint, - enrollment_id bigint, - project_id bigint, - project_coc_id bigint, - personal_id character varying, - city character varying, - coc_code character varying, - entry_date date NOT NULL, - exit_date date, - latest_for_client boolean, - chronically_homeless_at_entry boolean, - stay_length_in_days integer, - am_ind_ak_native boolean, - asian boolean, - black_af_american boolean, - native_hi_pacific boolean, - ethnicity boolean, - white boolean, - male boolean, - female boolean, - gender_other boolean, - transgender boolean, - questioning boolean, - no_single_gender boolean, - disabling_condition boolean, - reporting_age integer, - relationship_to_hoh integer, - household_id character varying, - household_type character varying, - household_members jsonb, - prior_living_situation integer, - months_homeless_past_three_years integer, - times_homeless_past_three_years integer, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - first_name character varying, - last_name character varying, - woman boolean, - man boolean, - culturally_specific boolean, - different_identity boolean, - non_binary boolean, - hispanic_latinaeo boolean, - mid_east_n_african boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx276"; -- --- Name: ma_monthly_performance_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx277; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ma_monthly_performance_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx277"; -- --- Name: ma_monthly_performance_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx278; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ma_monthly_performance_enrollments_id_seq OWNED BY public.ma_monthly_performance_enrollments.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx278"; -- --- Name: ma_monthly_performance_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx279; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ma_monthly_performance_projects ( - id bigint NOT NULL, - report_id bigint, - project_id bigint, - project_coc_id bigint, - project_name character varying, - organization_name character varying, - coc_code character varying, - month_start date, - available_beds integer, - average_length_of_stay_in_days integer, - number_chronically_homeless_at_entry integer, - city character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - enrolled_client_count integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx279"; + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx280; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx280"; + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx281; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx281"; + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx282; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx282"; + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx283; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx283"; -- --- Name: ma_monthly_performance_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx284; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ma_monthly_performance_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx284"; -- --- Name: ma_monthly_performance_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx285; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ma_monthly_performance_projects_id_seq OWNED BY public.ma_monthly_performance_projects.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx285"; -- --- Name: ma_yya_report_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx286; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.ma_yya_report_clients ( - id bigint NOT NULL, - client_id bigint, - service_history_enrollment_id bigint, - entry_date date, - referral_source integer, - currently_homeless boolean, - at_risk_of_homelessness boolean, - initial_contact boolean, - direct_assistance boolean, - current_school_attendance integer, - current_educational_status integer, - age integer, - gender integer, - race integer, - ethnicity integer, - mental_health_disorder boolean, - substance_use_disorder boolean, - physical_disability boolean, - developmental_disability boolean, - pregnant boolean, - due_date date, - head_of_household boolean, - household_ages jsonb, - sexual_orientation integer, - most_recent_education_status integer, - health_insurance boolean, - subsequent_current_living_situations jsonb, - reported_previous_period boolean, - deleted_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - education_status_date date, - rehoused_on date, - flex_funds jsonb DEFAULT '[]'::jsonb, - zip_codes jsonb DEFAULT '[]'::jsonb, - language character varying, - followup_previous_period boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx286"; -- --- Name: ma_yya_report_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx287; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.ma_yya_report_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx287"; -- --- Name: ma_yya_report_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx288; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.ma_yya_report_clients_id_seq OWNED BY public.ma_yya_report_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx288"; -- --- Name: new_service_history; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx289; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.new_service_history ( - id integer NOT NULL, - client_id integer NOT NULL, - data_source_id integer, - date date NOT NULL, - first_date_in_program date NOT NULL, - last_date_in_program date, - enrollment_group_id character varying(50), - age smallint, - destination integer, - head_of_household_id character varying(50), - household_id character varying(50), - project_id character varying(50), - project_name character varying(150), - project_type smallint, - project_tracking_method integer, - organization_id character varying(50), - record_type character varying(50) NOT NULL, - housing_status_at_entry integer, - housing_status_at_exit integer, - service_type smallint, - computed_project_type smallint, - presented_as_individual boolean, - other_clients_over_25 smallint DEFAULT 0 NOT NULL, - other_clients_under_18 smallint DEFAULT 0 NOT NULL, - other_clients_between_18_and_25 smallint DEFAULT 0 NOT NULL, - unaccompanied_youth boolean DEFAULT false NOT NULL, - parenting_youth boolean DEFAULT false NOT NULL, - parenting_juvenile boolean DEFAULT false NOT NULL, - children_only boolean DEFAULT false NOT NULL, - individual_adult boolean DEFAULT false NOT NULL, - individual_elder boolean DEFAULT false NOT NULL, - head_of_household boolean DEFAULT false NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx289"; -- --- Name: new_service_history_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx290; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.new_service_history_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx290"; -- --- Name: new_service_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx291; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.new_service_history_id_seq OWNED BY public.new_service_history.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx291"; -- --- Name: nightly_census_by_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx292; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.nightly_census_by_projects ( - id bigint NOT NULL, - date date NOT NULL, - project_id integer NOT NULL, - veterans integer DEFAULT 0, - non_veterans integer DEFAULT 0, - children integer DEFAULT 0, - adults integer DEFAULT 0, - youth integer DEFAULT 0, - families integer DEFAULT 0, - individuals integer DEFAULT 0, - parenting_youth integer DEFAULT 0, - parenting_juveniles integer DEFAULT 0, - all_clients integer DEFAULT 0, - beds integer DEFAULT 0, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - juveniles integer DEFAULT 0, - unaccompanied_minors integer DEFAULT 0, - youth_families integer DEFAULT 0, - family_parents integer DEFAULT 0 -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx292"; -- --- Name: nightly_census_by_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx293; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.nightly_census_by_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx293"; -- --- Name: nightly_census_by_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx294; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.nightly_census_by_projects_id_seq OWNED BY public.nightly_census_by_projects.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx294"; -- --- Name: non_hmis_uploads; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx295; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.non_hmis_uploads ( - id integer NOT NULL, - data_source_id integer, - user_id integer, - delayed_job_id integer, - file character varying NOT NULL, - percent_complete double precision, - import_errors json, - content_type character varying, - content bytea, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - started_at timestamp without time zone, - completed_at timestamp without time zone, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx295"; -- --- Name: non_hmis_uploads_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx296; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.non_hmis_uploads_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx296"; -- --- Name: non_hmis_uploads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx297; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.non_hmis_uploads_id_seq OWNED BY public.non_hmis_uploads.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx297"; -- --- Name: organization_47_tes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx298; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.organization_47_tes ( - source_id integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx298"; -- --- Name: organization_48_tes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx299; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.organization_48_tes ( - source_id integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx299"; -- --- Name: organization_49_tes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx300; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.organization_49_tes ( - source_id integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx300"; -- --- Name: performance_measurement_goals; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx301; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.performance_measurement_goals ( - id bigint NOT NULL, - coc_code character varying NOT NULL, - people integer DEFAULT 3 NOT NULL, - capacity integer DEFAULT 90 NOT NULL, - time_time integer DEFAULT 90 NOT NULL, - time_stay integer DEFAULT 60 NOT NULL, - time_move_in integer DEFAULT 30 NOT NULL, - destination integer DEFAULT 85 NOT NULL, - recidivism_6_months integer DEFAULT 15 NOT NULL, - recidivism_24_months integer DEFAULT 25 NOT NULL, - income integer DEFAULT 3 NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - always_run_for_coc boolean DEFAULT false, - recidivism_12_months integer DEFAULT 20 NOT NULL, - active boolean DEFAULT true NOT NULL, - label character varying, - destination_so integer DEFAULT 85 NOT NULL, - destination_homeless_plus integer DEFAULT 85 NOT NULL, - destination_permanent integer DEFAULT 85 NOT NULL, - time_time_homeless_and_ph integer DEFAULT 90 NOT NULL, - equity_analysis_visible boolean DEFAULT false NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx301"; -- --- Name: performance_measurement_goals_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx302; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.performance_measurement_goals_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx302"; -- --- Name: performance_measurement_goals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx303; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.performance_measurement_goals_id_seq OWNED BY public.performance_measurement_goals.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx303"; -- --- Name: performance_metrics_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx304; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.performance_metrics_clients ( - id bigint NOT NULL, - client_id bigint, - report_id bigint, - include_in_current_period boolean, - current_period_age integer, - current_period_earned_income_at_start integer, - current_period_earned_income_at_exit integer, - current_period_other_income_at_start integer, - current_period_other_income_at_exit integer, - current_caper_leaver boolean, - current_period_days_in_es integer, - current_period_days_in_rrh integer, - current_period_days_in_psh integer, - current_period_days_to_return integer, - current_period_spm_leaver boolean, - current_period_first_time boolean, - current_period_reentering boolean, - current_period_in_outflow boolean, - current_period_entering_housing boolean, - current_period_inactive boolean, - current_period_caper_id bigint, - current_period_spm_id bigint, - include_in_prior_period boolean, - prior_period_age integer, - prior_period_earned_income_at_start integer, - prior_period_earned_income_at_exit integer, - prior_period_other_income_at_start integer, - prior_period_other_income_at_exit integer, - prior_caper_leaver boolean, - prior_period_days_in_es integer, - prior_period_days_in_rrh integer, - prior_period_days_in_psh integer, - prior_period_days_to_return integer, - prior_period_spm_leaver boolean, - prior_period_first_time boolean, - prior_period_reentering boolean, - prior_period_in_outflow boolean, - prior_period_entering_housing boolean, - prior_period_inactive boolean, - prior_period_caper_id bigint, - prior_period_spm_id bigint, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - first_name character varying, - last_name character varying -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx304"; -- --- Name: performance_metrics_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx305; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.performance_metrics_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx305"; -- --- Name: performance_metrics_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx306; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.performance_metrics_clients_id_seq OWNED BY public.performance_metrics_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx306"; -- --- Name: places; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx307; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.places ( - id bigint NOT NULL, - location character varying NOT NULL, - lat_lon jsonb, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - city character varying, - state character varying, - zipcode character varying, - lat double precision, - lon double precision -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx307"; -- --- Name: places_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx308; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.places_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx308"; -- --- Name: places_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx309; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.places_id_seq OWNED BY public.places.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx309"; -- --- Name: pm_client_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx310; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.pm_client_projects ( - id bigint NOT NULL, - client_id bigint, - project_id bigint, - deleted_at timestamp without time zone, - report_id integer, - for_question character varying, - period character varying, - household_type integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx310"; -- --- Name: COLUMN pm_client_projects.household_type; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx311; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.pm_client_projects.household_type IS '2.07.4'; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx311"; -- --- Name: pm_client_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx312; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.pm_client_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx312"; -- --- Name: pm_client_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx313; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.pm_client_projects_id_seq OWNED BY public.pm_client_projects.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx313"; -- --- Name: pm_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx314; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.pm_clients ( - id bigint NOT NULL, - report_id bigint, - client_id bigint, - dob date, - veteran boolean DEFAULT false NOT NULL, - reporting_age integer, - reporting_hoh boolean DEFAULT false NOT NULL, - reporting_stayer boolean DEFAULT false NOT NULL, - reporting_leaver boolean DEFAULT false NOT NULL, - reporting_first_time boolean DEFAULT false NOT NULL, - reporting_days_homeless_es_sh_th integer, - reporting_days_homeless_before_move_in integer, - reporting_destination integer, - reporting_days_to_return integer, - reporting_increased_income boolean DEFAULT false NOT NULL, - reporting_pit_project_id integer, - reporting_pit_project_type integer, - reporting_served_on_pit_date boolean DEFAULT false NOT NULL, - reporting_served_in_so boolean DEFAULT false NOT NULL, - reporting_current_project_types integer[], - reporting_prior_project_types integer[], - reporting_so_destination integer, - reporting_es_sh_th_rrh_destination integer, - reporting_moved_in_destination integer, - reporting_moved_in_stayer integer, - reporting_so_es_sh_th_2_yr_permanent_dest boolean DEFAULT false NOT NULL, - reporting_so_es_sh_th_return_6_mo boolean DEFAULT false NOT NULL, - reporting_so_es_sh_th_return_2_yr boolean DEFAULT false NOT NULL, - reporting_prior_living_situation integer, - reporting_prevention_tool_score integer, - reporting_ce_enrollment boolean DEFAULT false NOT NULL, - reporting_ce_diversion boolean DEFAULT false NOT NULL, - reporting_days_in_ce integer, - reporting_days_since_assessment integer, - reporting_days_ce_to_assessment integer, - reporting_days_ce_to_referral integer, - reporting_days_referral_to_ph_entry integer, - reporting_ce_assessment_score integer, - comparison_age integer, - comparison_hoh boolean DEFAULT false NOT NULL, - comparison_stayer boolean DEFAULT false NOT NULL, - comparison_leaver boolean DEFAULT false NOT NULL, - comparison_first_time boolean DEFAULT false NOT NULL, - comparison_days_homeless_es_sh_th integer, - comparison_days_homeless_before_move_in integer, - comparison_destination integer, - comparison_days_to_return integer, - comparison_increased_income boolean DEFAULT false NOT NULL, - comparison_pit_project_id integer, - comparison_pit_project_type integer, - comparison_served_on_pit_date boolean DEFAULT false NOT NULL, - comparison_served_in_so boolean DEFAULT false NOT NULL, - comparison_current_project_types integer[], - comparison_prior_project_types integer[], - comparison_so_destination integer, - comparison_es_sh_th_rrh_destination integer, - comparison_moved_in_destination integer, - comparison_moved_in_stayer integer, - comparison_so_es_sh_th_2_yr_permanent_dest boolean DEFAULT false NOT NULL, - comparison_so_es_sh_th_return_6_mo boolean DEFAULT false NOT NULL, - comparison_so_es_sh_th_return_2_yr boolean DEFAULT false NOT NULL, - comparison_prior_living_situation integer, - comparison_prevention_tool_score integer, - comparison_ce_enrollment boolean DEFAULT false NOT NULL, - comparison_ce_diversion boolean DEFAULT false NOT NULL, - comparison_days_in_ce integer, - comparison_days_since_assessment integer, - comparison_days_ce_to_assessment integer, - comparison_days_ce_to_referral integer, - comparison_days_referral_to_ph_entry integer, - comparison_ce_assessment_score integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - reporting_spm_id integer, - comparison_spm_id integer, - reporting_days_homeless_es_sh_th_ph integer, - reporting_income_stayer boolean, - comparison_income_stayer boolean, - reporting_income_leaver boolean, - comparison_income_leaver boolean, - reporting_served_on_pit_date_sheltered boolean DEFAULT false NOT NULL, - comparison_served_on_pit_date_sheltered boolean DEFAULT false NOT NULL, - reporting_served_on_pit_date_unsheltered boolean DEFAULT false NOT NULL, - comparison_served_on_pit_date_unsheltered boolean DEFAULT false NOT NULL, - comparison_days_homeless_es_sh_th_ph integer, - reporting_days_in_es_bed integer, - reporting_days_in_es_bed_details jsonb, - reporting_days_in_es_bed_in_period integer, - reporting_days_in_es_bed_details_in_period jsonb, - reporting_days_in_sh_bed integer, - reporting_days_in_sh_bed_details jsonb, - reporting_days_in_sh_bed_in_period integer, - reporting_days_in_sh_bed_details_in_period jsonb, - reporting_days_in_so_bed integer, - reporting_days_in_so_bed_details jsonb, - reporting_days_in_so_bed_in_period integer, - reporting_days_in_so_bed_details_in_period jsonb, - reporting_days_in_th_bed integer, - reporting_days_in_th_bed_details jsonb, - reporting_days_in_th_bed_in_period integer, - reporting_days_in_th_bed_details_in_period jsonb, - comparison_days_in_es_bed integer, - comparison_days_in_es_bed_details jsonb, - comparison_days_in_es_bed_in_period integer, - comparison_days_in_es_bed_details_in_period jsonb, - comparison_days_in_sh_bed integer, - comparison_days_in_sh_bed_details jsonb, - comparison_days_in_sh_bed_in_period integer, - comparison_days_in_sh_bed_details_in_period jsonb, - comparison_days_in_so_bed integer, - comparison_days_in_so_bed_details jsonb, - comparison_days_in_so_bed_in_period integer, - comparison_days_in_so_bed_details_in_period jsonb, - comparison_days_in_th_bed integer, - comparison_days_in_th_bed_details jsonb, - comparison_days_in_th_bed_in_period integer, - comparison_days_in_th_bed_details_in_period jsonb, - reporting_days_in_homeless_bed integer, - reporting_days_in_homeless_bed_details jsonb, - reporting_days_in_homeless_bed_in_period integer, - reporting_days_in_homeless_bed_details_in_period jsonb, - comparison_days_in_homeless_bed integer, - comparison_days_in_homeless_bed_details jsonb, - comparison_days_in_homeless_bed_in_period integer, - comparison_days_in_homeless_bed_details_in_period jsonb, - reporting_days_in_psh_bed integer, - reporting_days_in_psh_bed_details jsonb, - reporting_days_in_psh_bed_in_period integer, - reporting_days_in_psh_bed_details_in_period jsonb, - reporting_days_in_oph_bed integer, - reporting_days_in_oph_bed_details jsonb, - reporting_days_in_oph_bed_in_period integer, - reporting_days_in_oph_bed_details_in_period jsonb, - reporting_days_in_rrh_bed integer, - reporting_days_in_rrh_bed_details jsonb, - reporting_days_in_rrh_bed_in_period integer, - reporting_days_in_rrh_bed_details_in_period jsonb, - comparison_days_in_psh_bed integer, - comparison_days_in_psh_bed_details jsonb, - comparison_days_in_psh_bed_in_period integer, - comparison_days_in_psh_bed_details_in_period jsonb, - comparison_days_in_oph_bed integer, - comparison_days_in_oph_bed_details jsonb, - comparison_days_in_oph_bed_in_period integer, - comparison_days_in_oph_bed_details_in_period jsonb, - comparison_days_in_rrh_bed integer, - comparison_days_in_rrh_bed_details jsonb, - comparison_days_in_rrh_bed_in_period integer, - comparison_days_in_rrh_bed_details_in_period jsonb, - reporting_seen_in_range boolean DEFAULT false NOT NULL, - reporting_retention_or_positive_destination boolean DEFAULT false NOT NULL, - reporting_earned_income_stayer boolean DEFAULT false NOT NULL, - reporting_earned_income_leaver boolean DEFAULT false NOT NULL, - reporting_non_employment_income_stayer boolean DEFAULT false NOT NULL, - reporting_non_employment_income_leaver boolean DEFAULT false NOT NULL, - comparison_seen_in_range boolean DEFAULT false NOT NULL, - comparison_retention_or_positive_destination boolean DEFAULT false NOT NULL, - comparison_earned_income_stayer boolean DEFAULT false NOT NULL, - comparison_earned_income_leaver boolean DEFAULT false NOT NULL, - comparison_non_employment_income_stayer boolean DEFAULT false NOT NULL, - comparison_non_employment_income_leaver boolean DEFAULT false NOT NULL, - source_client_personal_ids character varying, - reporting_prior_destination integer, - comparison_prior_destination integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx314"; -- --- Name: pm_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx315; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.pm_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx315"; -- --- Name: pm_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx316; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.pm_clients_id_seq OWNED BY public.pm_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx316"; -- --- Name: pm_coc_static_spms; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx317; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.pm_coc_static_spms ( - id bigint NOT NULL, - goal_id bigint NOT NULL, - report_start date NOT NULL, - report_end date NOT NULL, - data jsonb DEFAULT '{}'::jsonb NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp(6) without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx317"; -- --- Name: pm_coc_static_spms_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx318; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.pm_coc_static_spms_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx318"; -- --- Name: pm_coc_static_spms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx319; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.pm_coc_static_spms_id_seq OWNED BY public.pm_coc_static_spms.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx319"; -- --- Name: pm_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx320; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.pm_projects ( - id bigint NOT NULL, - report_id bigint, - reporting_ave_bed_capacity_per_night double precision, - reporting_ave_clients_per_night double precision, - comparison_ave_bed_capacity_per_night double precision, - comparison_ave_clients_per_night double precision, - deleted_at timestamp without time zone, - project_id integer, - period character varying -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx320"; -- --- Name: pm_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx321; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.pm_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx321"; -- --- Name: pm_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx322; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.pm_projects_id_seq OWNED BY public.pm_projects.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx322"; -- --- Name: pm_results; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx323; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.pm_results ( - id bigint NOT NULL, - report_id bigint, - field character varying NOT NULL, - title character varying NOT NULL, - passed boolean DEFAULT false NOT NULL, - direction character varying, - primary_value integer, - primary_unit character varying, - secondary_value integer, - secondary_unit character varying, - value_label character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - comparison_primary_value integer, - system_level boolean DEFAULT false NOT NULL, - project_id integer, - goal double precision, - goal_progress double precision, - reporting_numerator integer, - reporting_denominator integer, - comparison_numerator integer, - comparison_denominator integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx323"; -- --- Name: pm_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx324; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.pm_results_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx324"; -- --- Name: pm_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx325; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.pm_results_id_seq OWNED BY public.pm_results.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx325"; -- --- Name: project_access_group_members; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx326; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.project_access_group_members AS - SELECT targets.project_id, - group_viewable_entities.access_group_id - FROM (public.group_viewable_entities - JOIN ( SELECT "Project".data_source_id, - "Project".id AS project_id, - "Organization".id AS organization_id, - project_groups.id AS project_group_id - FROM (((public."Project" - LEFT JOIN public."Organization" ON ((("Organization"."DateDeleted" IS NULL) AND ("Organization".data_source_id = "Project".data_source_id) AND (("Organization"."OrganizationID")::text = ("Project"."OrganizationID")::text)))) - LEFT JOIN public.project_project_groups ON ((project_project_groups.project_id = "Project".id))) - LEFT JOIN public.project_groups ON (((project_groups.deleted_at IS NULL) AND (project_groups.id = project_project_groups.project_group_id)))) - WHERE ("Project"."DateDeleted" IS NULL)) targets ON (((group_viewable_entities.deleted_at IS NULL) AND ((((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::DataSource'::text) AND (group_viewable_entities.entity_id = targets.data_source_id)) OR (((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::Hud::Project'::text) AND (group_viewable_entities.entity_id = targets.project_id)) OR (((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::Hud::Organization'::text) AND (group_viewable_entities.entity_id = targets.organization_id)) OR ((((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::ProjectAccessGroup'::text) OR ((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::ProjectGroup'::text)) AND (group_viewable_entities.entity_id = targets.project_group_id)))))) - WHERE ((group_viewable_entities.deleted_at IS NULL) AND (group_viewable_entities.collection_id IS NULL)) - GROUP BY targets.project_id, group_viewable_entities.access_group_id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx326"; -- --- Name: project_collection_members; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx327; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.project_collection_members AS - SELECT targets.project_id, - group_viewable_entities.collection_id - FROM (public.group_viewable_entities - JOIN ( SELECT "Project".data_source_id, - "Project".id AS project_id, - "Organization".id AS organization_id, - project_groups.id AS project_group_id - FROM (((public."Project" - LEFT JOIN public."Organization" ON ((("Organization"."DateDeleted" IS NULL) AND ("Organization".data_source_id = "Project".data_source_id) AND (("Organization"."OrganizationID")::text = ("Project"."OrganizationID")::text)))) - LEFT JOIN public.project_project_groups ON ((project_project_groups.project_id = "Project".id))) - LEFT JOIN public.project_groups ON (((project_groups.deleted_at IS NULL) AND (project_groups.id = project_project_groups.project_group_id)))) - WHERE ("Project"."DateDeleted" IS NULL)) targets ON (((group_viewable_entities.deleted_at IS NULL) AND ((((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::DataSource'::text) AND (group_viewable_entities.entity_id = targets.data_source_id)) OR (((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::Hud::Project'::text) AND (group_viewable_entities.entity_id = targets.project_id)) OR (((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::Hud::Organization'::text) AND (group_viewable_entities.entity_id = targets.organization_id)) OR ((((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::ProjectAccessGroup'::text) OR ((group_viewable_entities.entity_type)::text = 'GrdaWarehouse::ProjectGroup'::text)) AND (group_viewable_entities.entity_id = targets.project_group_id)))))) - WHERE ((group_viewable_entities.deleted_at IS NULL) AND (group_viewable_entities.collection_id IS NOT NULL)) - GROUP BY targets.project_id, group_viewable_entities.collection_id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx327"; -- --- Name: project_data_quality; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx328; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.project_data_quality ( - id integer NOT NULL, - project_id integer, - type character varying, - start date, - "end" date, - report json, - sent_at timestamp without time zone, - started_at timestamp without time zone, - completed_at timestamp without time zone, - deleted_at timestamp without time zone, - created_at timestamp without time zone, - updated_at timestamp without time zone, - processing_errors text, - project_group_id integer, - support json, - requestor_id integer, - notify_contacts boolean DEFAULT false -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx328"; -- --- Name: project_data_quality_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx329; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.project_data_quality_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx329"; -- --- Name: project_data_quality_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx330; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.project_data_quality_id_seq OWNED BY public.project_data_quality.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx330"; -- --- Name: project_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx331; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.project_groups_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx331"; -- --- Name: project_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx332; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.project_groups_id_seq OWNED BY public.project_groups.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx332"; -- --- Name: project_pass_fails; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx333; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.project_pass_fails ( - id bigint NOT NULL, - user_id bigint, - options jsonb DEFAULT '{}'::jsonb, - started_at timestamp without time zone, - completed_at timestamp without time zone, - failed_at timestamp without time zone, - processing_errors text, - utilization_rate double precision, - projects_failing_universal_data_elements integer, - average_days_to_enter_entry_date double precision, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - thresholds jsonb DEFAULT '{}'::jsonb, - unit_utilization_rate double precision -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx333"; -- --- Name: project_pass_fails_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx334; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.project_pass_fails_clients ( - id bigint NOT NULL, - project_pass_fail_id bigint, - project_id bigint, - client_id bigint, - first_name character varying, - last_name character varying, - first_date_in_program date, - last_date_in_program date, - disabling_condition integer, - dob_quality integer, - dob date, - ethnicity integer, - gender integer, - name_quality integer, - race integer, - ssn_quality integer, - ssn character varying, - veteran_status integer, - relationship_to_hoh integer, - enrollment_created date, - enrollment_coc character varying, - days_to_enter_entry_date integer, - days_served integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - income_at_entry integer, - gender_multi character varying, - household_id character varying -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx334"; -- --- Name: project_pass_fails_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx335; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.project_pass_fails_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx335"; -- --- Name: project_pass_fails_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx336; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.project_pass_fails_clients_id_seq OWNED BY public.project_pass_fails_clients.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx336"; -- --- Name: project_pass_fails_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx337; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.project_pass_fails_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx337"; -- --- Name: project_pass_fails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx338; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.project_pass_fails_id_seq OWNED BY public.project_pass_fails.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx338"; -- --- Name: project_pass_fails_projects; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx339; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.project_pass_fails_projects ( - id bigint NOT NULL, - project_pass_fail_id bigint, - project_id bigint, - apr_id bigint, - available_beds double precision, - utilization_rate double precision, - name_error_rate double precision, - ssn_error_rate double precision, - race_error_rate double precision, - ethnicity_error_rate double precision, - gender_error_rate double precision, - dob_error_rate double precision, - veteran_status_error_rate double precision, - start_date_error_rate double precision, - relationship_to_hoh_error_rate double precision, - location_error_rate double precision, - disabling_condition_error_rate double precision, - utilization_count double precision, - name_error_count double precision, - ssn_error_count double precision, - race_error_count double precision, - ethnicity_error_count double precision, - gender_error_count double precision, - dob_error_count double precision, - veteran_status_error_count double precision, - start_date_error_count double precision, - relationship_to_hoh_error_count double precision, - location_error_count double precision, - disabling_condition_error_count double precision, - average_days_to_enter_entry_date double precision, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - income_at_entry_error_rate double precision, - income_at_entry_error_count integer, - available_units integer, - unit_utilization_rate double precision, - unit_utilization_count integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx339"; -- --- Name: project_pass_fails_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx340; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.project_pass_fails_projects_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx340"; -- --- Name: project_pass_fails_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx341; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.project_pass_fails_projects_id_seq OWNED BY public.project_pass_fails_projects.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx341"; -- --- Name: project_project_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx342; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.project_project_groups_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx342"; -- --- Name: project_project_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx343; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.project_project_groups_id_seq OWNED BY public.project_project_groups.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx343"; -- --- Name: project_scorecard_reports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx344; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.project_scorecard_reports ( - id bigint NOT NULL, - project_id bigint, - project_group_id bigint, - status character varying DEFAULT 'pending'::character varying, - user_id bigint, - started_at timestamp without time zone, - completed_at timestamp without time zone, - sent_at timestamp without time zone, - deleted_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - recipient character varying, - subrecipient character varying, - start_date date, - end_date date, - funding_year character varying, - grant_term character varying, - utilization_jan integer, - utilization_apr integer, - utilization_jul integer, - utilization_oct integer, - utilization_proposed integer, - chronic_households_served integer, - total_households_served integer, - total_persons_served integer, - total_persons_with_positive_exit integer, - total_persons_exited integer, - excluded_exits integer, - average_los_leavers integer, - percent_increased_employment_income_at_exit integer, - percent_increased_other_cash_income_at_exit integer, - percent_returns_to_homelessness integer, - percent_pii_errors integer, - percent_ude_errors integer, - percent_income_and_housing_errors integer, - days_to_lease_up integer, - number_referrals integer, - accepted_referrals integer, - funds_expended integer, - amount_awarded integer, - months_since_start integer, - pit_participation boolean, - coc_meetings integer, - coc_meetings_attended integer, - improvement_plan character varying, - financial_plan character varying, - site_monitoring character varying, - total_ces_referrals integer, - accepted_ces_referrals integer, - clients_with_vispdats integer, - average_vispdat_score integer, - budget_plus_match integer, - prior_amount_awarded integer, - prior_funds_expended integer, - archive character varying, - expansion_year boolean, - special_population_only character varying, - project_less_than_two boolean, - geographic_location character varying, - apr_id bigint, - spm_id integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx344"; -- --- Name: project_scorecard_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx345; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.project_scorecard_reports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx345"; -- --- Name: project_scorecard_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx346; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.project_scorecard_reports_id_seq OWNED BY public.project_scorecard_reports.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx346"; -- --- Name: psc_feedback_surveys; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx347; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.psc_feedback_surveys ( - id bigint NOT NULL, - client_id bigint, - user_id bigint, - conversation_on date, - location character varying, - listened_to_me character varying, - cared_about_me character varying, - knowledgeable character varying, - i_was_included character varying, - i_decided character varying, - supporting_my_needs character varying, - sensitive_to_culture character varying, - would_return character varying, - more_calm_and_control character varying, - satisfied character varying, - comments character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx347"; -- --- Name: psc_feedback_surveys_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx348; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.psc_feedback_surveys_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx348"; -- --- Name: psc_feedback_surveys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx349; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.psc_feedback_surveys_id_seq OWNED BY public.psc_feedback_surveys.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx349"; -- --- Name: public_report_reports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx350; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.public_report_reports ( - id bigint NOT NULL, - user_id bigint, - type character varying, - start_date date, - end_date date, - filter jsonb, - state character varying, - html text, - published_url character varying, - embed_code character varying, - started_at timestamp without time zone, - completed_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - precalculated_data text, - version_slug character varying -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx350"; -- --- Name: public_report_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx351; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.public_report_reports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx351"; -- --- Name: public_report_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx352; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.public_report_reports_id_seq OWNED BY public.public_report_reports.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx352"; -- --- Name: public_report_settings; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx353; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.public_report_settings ( - id bigint NOT NULL, - s3_region character varying, - s3_bucket character varying, - s3_prefix character varying, - encrypted_s3_access_key_id character varying, - encrypted_s3_access_key_id_iv character varying, - encrypted_s3_secret character varying, - encrypted_s3_secret_iv character varying, - color_0 character varying, - color_1 character varying, - color_2 character varying, - color_3 character varying, - color_4 character varying, - color_5 character varying, - color_6 character varying, - color_7 character varying, - color_8 character varying, - color_9 character varying, - color_10 character varying, - color_11 character varying, - color_12 character varying, - color_13 character varying, - color_14 character varying, - color_15 character varying, - color_16 character varying, - font_url character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - font_family_0 character varying, - font_family_1 character varying, - font_family_2 character varying, - font_family_3 character varying, - font_size_0 character varying, - font_size_1 character varying, - font_size_2 character varying, - font_size_3 character varying, - font_weight_0 character varying, - font_weight_1 character varying, - font_weight_2 character varying, - font_weight_3 character varying, - gender_color_0 character varying, - gender_color_1 character varying, - gender_color_2 character varying, - gender_color_3 character varying, - gender_color_4 character varying, - gender_color_5 character varying, - gender_color_6 character varying, - gender_color_7 character varying, - gender_color_8 character varying, - age_color_0 character varying, - age_color_1 character varying, - age_color_2 character varying, - age_color_3 character varying, - age_color_4 character varying, - age_color_5 character varying, - age_color_6 character varying, - age_color_7 character varying, - age_color_8 character varying, - household_composition_color_0 character varying, - household_composition_color_1 character varying, - household_composition_color_2 character varying, - household_composition_color_3 character varying, - household_composition_color_4 character varying, - household_composition_color_5 character varying, - household_composition_color_6 character varying, - household_composition_color_7 character varying, - household_composition_color_8 character varying, - race_color_0 character varying, - race_color_1 character varying, - race_color_2 character varying, - race_color_3 character varying, - race_color_4 character varying, - race_color_5 character varying, - race_color_6 character varying, - race_color_7 character varying, - race_color_8 character varying, - time_color_0 character varying, - time_color_1 character varying, - time_color_2 character varying, - time_color_3 character varying, - time_color_4 character varying, - time_color_5 character varying, - time_color_6 character varying, - time_color_7 character varying, - time_color_8 character varying, - housing_type_color_0 character varying, - housing_type_color_1 character varying, - housing_type_color_2 character varying, - housing_type_color_3 character varying, - housing_type_color_4 character varying, - housing_type_color_5 character varying, - housing_type_color_6 character varying, - housing_type_color_7 character varying, - housing_type_color_8 character varying, - population_color_0 character varying, - population_color_1 character varying, - population_color_2 character varying, - population_color_3 character varying, - population_color_4 character varying, - population_color_5 character varying, - population_color_6 character varying, - population_color_7 character varying, - population_color_8 character varying, - location_type_color_0 character varying, - location_type_color_1 character varying, - location_type_color_2 character varying, - location_type_color_3 character varying, - location_type_color_4 character varying, - location_type_color_5 character varying, - location_type_color_6 character varying, - location_type_color_7 character varying, - location_type_color_8 character varying, - summary_color character varying, - homeless_primary_color character varying, - youth_primary_color character varying, - adults_only_primary_color character varying, - adults_with_children_primary_color character varying, - children_only_primary_color character varying, - veterans_primary_color character varying, - map_type character varying DEFAULT 'coc'::character varying NOT NULL, - map_overall_population_method character varying DEFAULT 'state'::character varying NOT NULL, - iteration_type character varying DEFAULT 'quarter'::character varying NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx353"; + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx354; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enrol_idx354"; -- --- Name: public_report_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx10; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.public_report_settings_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx10"; -- --- Name: public_report_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx11; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.public_report_settings_id_seq OWNED BY public.public_report_settings.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx11"; -- --- Name: published_reports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx12; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.published_reports ( - id bigint NOT NULL, - report_type character varying NOT NULL, - report_id bigint NOT NULL, - user_id bigint NOT NULL, - state character varying, - published_url character varying, - path character varying, - embed_code text, - html text, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx12"; -- --- Name: published_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx13; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.published_reports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx13"; -- --- Name: published_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx14; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.published_reports_id_seq OWNED BY public.published_reports.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx14"; -- --- Name: recent_items; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx15; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.recent_items ( - id bigint NOT NULL, - owner_type character varying NOT NULL, - owner_id bigint NOT NULL, - item_type character varying NOT NULL, - item_id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx15"; -- --- Name: recent_items_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx16; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.recent_items_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx16"; -- --- Name: recent_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx17; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.recent_items_id_seq OWNED BY public.recent_items.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx17"; -- --- Name: recent_report_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx18; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.recent_report_enrollments ( - "EnrollmentID" character varying(50), - "PersonalID" character varying, - "ProjectID" character varying(50), - "EntryDate" date, - "HouseholdID" character varying, - "RelationshipToHoH" integer, - "LivingSituation" integer, - "OtherResidencePrior" character varying, - "LengthOfStay" integer, - "DisablingCondition" integer, - "EntryFromStreetESSH" integer, - "DateToStreetESSH" date, - "ContinuouslyHomelessOneYear" integer, - "TimesHomelessPastThreeYears" integer, - "MonthsHomelessPastThreeYears" integer, - "MonthsHomelessThisTime" integer, - "StatusDocumented" integer, - "HousingStatus" integer, - "DateOfEngagement" date, - "InPermanentHousing" integer, - "MoveInDate" date, - "DateOfPATHStatus" date, - "ClientEnrolledInPATH" integer, - "ReasonNotEnrolled" integer, - "WorstHousingSituation" integer, - "PercentAMI" integer, - "LastPermanentStreet" character varying, - "LastPermanentCity" character varying(50), - "LastPermanentState" character varying(2), - "LastPermanentZIP" character varying(10), - "AddressDataQuality" integer, - "DateOfBCPStatus" date, - "EligibleForRHY" integer, - "ReasonNoServices" integer, - "SexualOrientation" integer, - "FormerWardChildWelfare" integer, - "ChildWelfareYears" integer, - "ChildWelfareMonths" integer, - "FormerWardJuvenileJustice" integer, - "JuvenileJusticeYears" integer, - "JuvenileJusticeMonths" integer, - "HouseholdDynamics" integer, - "SexualOrientationGenderIDYouth" integer, - "SexualOrientationGenderIDFam" integer, - "HousingIssuesYouth" integer, - "HousingIssuesFam" integer, - "SchoolEducationalIssuesYouth" integer, - "SchoolEducationalIssuesFam" integer, - "UnemploymentYouth" integer, - "UnemploymentFam" integer, - "MentalHealthIssuesYouth" integer, - "MentalHealthIssuesFam" integer, - "HealthIssuesYouth" integer, - "HealthIssuesFam" integer, - "PhysicalDisabilityYouth" integer, - "PhysicalDisabilityFam" integer, - "MentalDisabilityYouth" integer, - "MentalDisabilityFam" integer, - "AbuseAndNeglectYouth" integer, - "AbuseAndNeglectFam" integer, - "AlcoholDrugAbuseYouth" integer, - "AlcoholDrugAbuseFam" integer, - "InsufficientIncome" integer, - "ActiveMilitaryParent" integer, - "IncarceratedParent" integer, - "IncarceratedParentStatus" integer, - "ReferralSource" integer, - "CountOutreachReferralApproaches" integer, - "ExchangeForSex" integer, - "ExchangeForSexPastThreeMonths" integer, - "CountOfExchangeForSex" integer, - "AskedOrForcedToExchangeForSex" integer, - "AskedOrForcedToExchangeForSexPastThreeMonths" integer, - "WorkPlaceViolenceThreats" integer, - "WorkplacePromiseDifference" integer, - "CoercedToContinueWork" integer, - "LaborExploitPastThreeMonths" integer, - "HPScreeningScore" integer, - "VAMCStation" integer, - "DateCreated" timestamp without time zone, - "DateUpdated" timestamp without time zone, - "UserID" character varying(100), - "DateDeleted" timestamp without time zone, - "ExportID" character varying, - data_source_id integer, - id integer, - "LOSUnderThreshold" integer, - "PreviousStreetESSH" integer, - "UrgentReferral" integer, - "TimeToHousingLoss" integer, - "ZeroIncome" integer, - "AnnualPercentAMI" integer, - "FinancialChange" integer, - "HouseholdChange" integer, - "EvictionHistory" integer, - "SubsidyAtRisk" integer, - "LiteralHomelessHistory" integer, - "DisabledHoH" integer, - "CriminalRecord" integer, - "SexOffender" integer, - "DependentUnder6" integer, - "SingleParent" integer, - "HH5Plus" integer, - "IraqAfghanistan" integer, - "FemVet" integer, - "ThresholdScore" integer, - "ERVisits" integer, - "JailNights" integer, - "HospitalNights" integer, - "RunawayYouth" integer, - processed_hash character varying, - processed_as character varying, - roi_permission boolean, - last_locality character varying, - last_zipcode character varying, - source_hash character varying, - pending_date_deleted timestamp without time zone, - "SexualOrientationOther" character varying(100), - history_generated_on date, - original_household_id character varying, - service_history_processing_job_id bigint, - "MentalHealthDisorderFam" integer, - "AlcoholDrugUseDisorderFam" integer, - "ClientLeaseholder" integer, - "HOHLeasesholder" integer, - "IncarceratedAdult" integer, - "PrisonDischarge" integer, - "CurrentPregnant" integer, - "CoCPrioritized" integer, - "TargetScreenReqd" integer, - "HOHLeaseholder" integer, - demographic_id integer, - client_id integer -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx18"; -- --- Name: recent_service_history; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx19; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.recent_service_history ( - id bigint, - client_id integer, - data_source_id integer, - date date, - first_date_in_program date, - last_date_in_program date, - enrollment_group_id character varying(50), - age smallint, - destination integer, - head_of_household_id character varying(50), - household_id character varying(50), - project_id integer, - project_type smallint, - project_tracking_method integer, - organization_id integer, - housing_status_at_entry integer, - housing_status_at_exit integer, - service_type smallint, - computed_project_type smallint, - presented_as_individual boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx19"; -- --- Name: recurring_hmis_export_links; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx20; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.recurring_hmis_export_links ( - id integer NOT NULL, - hmis_export_id integer, - recurring_hmis_export_id integer, - exported_at date -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx20"; -- --- Name: recurring_hmis_export_links_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx21; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.recurring_hmis_export_links_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx21"; -- --- Name: recurring_hmis_export_links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx22; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.recurring_hmis_export_links_id_seq OWNED BY public.recurring_hmis_export_links.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx22"; -- --- Name: recurring_hmis_exports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx23; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.recurring_hmis_exports ( - id integer NOT NULL, - every_n_days integer, - reporting_range character varying, - reporting_range_days integer, - user_id integer, - project_ids character varying, - created_at timestamp without time zone, - updated_at timestamp without time zone, - s3_region character varying, - s3_bucket character varying, - s3_prefix character varying, - encrypted_s3_access_key_id character varying, - encrypted_s3_access_key_id_iv character varying, - encrypted_s3_secret character varying, - encrypted_s3_secret_iv character varying, - deleted_at timestamp without time zone, - encrypted_zip_password character varying, - encrypted_zip_password_iv character varying, - encryption_type character varying, - options jsonb -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx23"; -- --- Name: recurring_hmis_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx24; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.recurring_hmis_exports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx24"; -- --- Name: recurring_hmis_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx25; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.recurring_hmis_exports_id_seq OWNED BY public.recurring_hmis_exports.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx25"; -- --- Name: remote_configs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx26; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.remote_configs ( - id bigint NOT NULL, - type character varying NOT NULL, - remote_credential_id bigint, - active boolean DEFAULT false, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx26"; -- --- Name: remote_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx27; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.remote_configs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx27"; -- --- Name: remote_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx28; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.remote_configs_id_seq OWNED BY public.remote_configs.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx28"; -- --- Name: remote_credentials; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx29; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.remote_credentials ( - id bigint NOT NULL, - type character varying NOT NULL, - active boolean DEFAULT false, - username character varying NOT NULL, - encrypted_password character varying NOT NULL, - encrypted_password_iv character varying, - region character varying, - bucket character varying, - path character varying, - endpoint character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone, - additional_headers jsonb DEFAULT '{}'::jsonb, - slug character varying -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx29"; -- --- Name: COLUMN remote_credentials.username; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx30; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.remote_credentials.username IS 'username or equivalent eg. s3_access_key_id'; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx30"; -- --- Name: COLUMN remote_credentials.encrypted_password; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx31; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.remote_credentials.encrypted_password IS 'password or equivalent eg. s3_secret_access_key'; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx31"; -- --- Name: remote_credentials_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx32; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.remote_credentials_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx32"; -- --- Name: remote_credentials_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx33; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.remote_credentials_id_seq OWNED BY public.remote_credentials.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx33"; -- --- Name: report_definitions; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx34; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.report_definitions ( - id integer NOT NULL, - report_group character varying, - url text, - name text, - description text, - weight integer DEFAULT 0 NOT NULL, - enabled boolean DEFAULT true NOT NULL, - limitable boolean DEFAULT true NOT NULL, - health boolean DEFAULT false, - created_at timestamp without time zone DEFAULT now() NOT NULL, - updated_at timestamp without time zone DEFAULT now() NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx34"; -- --- Name: report_definitions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx35; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.report_definitions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx35"; -- --- Name: report_definitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx36; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.report_definitions_id_seq OWNED BY public.report_definitions.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx36"; -- --- Name: report_disabilities; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx37; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.report_disabilities AS - SELECT "Disabilities"."DisabilitiesID", - "Disabilities"."EnrollmentID" AS "ProjectEntryID", - "Disabilities"."PersonalID", - "Disabilities"."InformationDate", - "Disabilities"."DisabilityType", - "Disabilities"."DisabilityResponse", - "Disabilities"."IndefiniteAndImpairs", - "Disabilities"."DocumentationOnFile", - "Disabilities"."ReceivingServices", - "Disabilities"."PATHHowConfirmed", - "Disabilities"."PATHSMIInformation", - "Disabilities"."TCellCountAvailable", - "Disabilities"."TCellCount", - "Disabilities"."TCellSource", - "Disabilities"."ViralLoadAvailable", - "Disabilities"."ViralLoad", - "Disabilities"."ViralLoadSource", - "Disabilities"."DataCollectionStage", - "Disabilities"."DateCreated", - "Disabilities"."DateUpdated", - "Disabilities"."UserID", - "Disabilities"."DateDeleted", - "Disabilities"."ExportID", - "Disabilities".data_source_id, - "Disabilities".id, - "Enrollment".id AS enrollment_id, - source_clients.id AS demographic_id, - destination_clients.id AS client_id - FROM ((((public."Disabilities" - JOIN public."Client" source_clients ON ((("Disabilities".data_source_id = source_clients.data_source_id) AND (("Disabilities"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) - JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) - JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) - JOIN public."Enrollment" ON ((("Disabilities".data_source_id = "Enrollment".data_source_id) AND (("Disabilities"."PersonalID")::text = ("Enrollment"."PersonalID")::text) AND (("Disabilities"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Enrollment"."DateDeleted" IS NULL)))) - WHERE ("Disabilities"."DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx37"; -- --- Name: report_employment_educations; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx38; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.report_employment_educations AS - SELECT "EmploymentEducation"."EmploymentEducationID", - "EmploymentEducation"."EnrollmentID" AS "ProjectEntryID", - "EmploymentEducation"."PersonalID", - "EmploymentEducation"."InformationDate", - "EmploymentEducation"."LastGradeCompleted", - "EmploymentEducation"."SchoolStatus", - "EmploymentEducation"."Employed", - "EmploymentEducation"."EmploymentType", - "EmploymentEducation"."NotEmployedReason", - "EmploymentEducation"."DataCollectionStage", - "EmploymentEducation"."DateCreated", - "EmploymentEducation"."DateUpdated", - "EmploymentEducation"."UserID", - "EmploymentEducation"."DateDeleted", - "EmploymentEducation"."ExportID", - "EmploymentEducation".data_source_id, - "EmploymentEducation".id, - "Enrollment".id AS enrollment_id, - source_clients.id AS demographic_id, - destination_clients.id AS client_id - FROM ((((public."EmploymentEducation" - JOIN public."Client" source_clients ON ((("EmploymentEducation".data_source_id = source_clients.data_source_id) AND (("EmploymentEducation"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) - JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) - JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) - JOIN public."Enrollment" ON ((("EmploymentEducation".data_source_id = "Enrollment".data_source_id) AND (("EmploymentEducation"."PersonalID")::text = ("Enrollment"."PersonalID")::text) AND (("EmploymentEducation"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Enrollment"."DateDeleted" IS NULL)))) - WHERE ("EmploymentEducation"."DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx38"; -- --- Name: report_enrollments; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx39; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.report_enrollments AS - SELECT "Enrollment"."EnrollmentID" AS "ProjectEntryID", - "Enrollment"."PersonalID", - "Enrollment"."ProjectID", - "Enrollment"."EntryDate", - "Enrollment"."HouseholdID", - "Enrollment"."RelationshipToHoH", - "Enrollment"."LivingSituation" AS "ResidencePrior", - "Enrollment"."OtherResidencePrior", - "Enrollment"."LengthOfStay" AS "ResidencePriorLengthOfStay", - "Enrollment"."DisablingCondition", - "Enrollment"."EntryFromStreetESSH", - "Enrollment"."DateToStreetESSH", - "Enrollment"."ContinuouslyHomelessOneYear", - "Enrollment"."TimesHomelessPastThreeYears", - "Enrollment"."MonthsHomelessPastThreeYears", - "Enrollment"."MonthsHomelessThisTime", - "Enrollment"."StatusDocumented", - "Enrollment"."HousingStatus", - "Enrollment"."DateOfEngagement", - "Enrollment"."InPermanentHousing", - "Enrollment"."MoveInDate" AS "ResidentialMoveInDate", - "Enrollment"."DateOfPATHStatus", - "Enrollment"."ClientEnrolledInPATH", - "Enrollment"."ReasonNotEnrolled", - "Enrollment"."WorstHousingSituation", - "Enrollment"."PercentAMI", - "Enrollment"."LastPermanentStreet", - "Enrollment"."LastPermanentCity", - "Enrollment"."LastPermanentState", - "Enrollment"."LastPermanentZIP", - "Enrollment"."AddressDataQuality", - "Enrollment"."DateOfBCPStatus", - "Enrollment"."EligibleForRHY" AS "FYSBYouth", - "Enrollment"."ReasonNoServices", - "Enrollment"."SexualOrientation", - "Enrollment"."FormerWardChildWelfare", - "Enrollment"."ChildWelfareYears", - "Enrollment"."ChildWelfareMonths", - "Enrollment"."FormerWardJuvenileJustice", - "Enrollment"."JuvenileJusticeYears", - "Enrollment"."JuvenileJusticeMonths", - "Enrollment"."HouseholdDynamics", - "Enrollment"."SexualOrientationGenderIDYouth", - "Enrollment"."SexualOrientationGenderIDFam", - "Enrollment"."HousingIssuesYouth", - "Enrollment"."HousingIssuesFam", - "Enrollment"."SchoolEducationalIssuesYouth", - "Enrollment"."SchoolEducationalIssuesFam", - "Enrollment"."UnemploymentYouth", - "Enrollment"."UnemploymentFam", - "Enrollment"."MentalHealthIssuesYouth", - "Enrollment"."MentalHealthIssuesFam", - "Enrollment"."HealthIssuesYouth", - "Enrollment"."HealthIssuesFam", - "Enrollment"."PhysicalDisabilityYouth", - "Enrollment"."PhysicalDisabilityFam", - "Enrollment"."MentalDisabilityYouth", - "Enrollment"."MentalDisabilityFam", - "Enrollment"."AbuseAndNeglectYouth", - "Enrollment"."AbuseAndNeglectFam", - "Enrollment"."AlcoholDrugAbuseYouth", - "Enrollment"."AlcoholDrugAbuseFam", - "Enrollment"."InsufficientIncome", - "Enrollment"."ActiveMilitaryParent", - "Enrollment"."IncarceratedParent", - "Enrollment"."IncarceratedParentStatus", - "Enrollment"."ReferralSource", - "Enrollment"."CountOutreachReferralApproaches", - "Enrollment"."ExchangeForSex", - "Enrollment"."ExchangeForSexPastThreeMonths", - "Enrollment"."CountOfExchangeForSex", - "Enrollment"."AskedOrForcedToExchangeForSex", - "Enrollment"."AskedOrForcedToExchangeForSexPastThreeMonths", - "Enrollment"."WorkPlaceViolenceThreats", - "Enrollment"."WorkplacePromiseDifference", - "Enrollment"."CoercedToContinueWork", - "Enrollment"."LaborExploitPastThreeMonths", - "Enrollment"."HPScreeningScore", - "Enrollment"."VAMCStation_deleted" AS "VAMCStation", - "Enrollment"."DateCreated", - "Enrollment"."DateUpdated", - "Enrollment"."UserID", - "Enrollment"."DateDeleted", - "Enrollment"."ExportID", - "Enrollment".data_source_id, - "Enrollment".id, - "Enrollment"."LOSUnderThreshold", - "Enrollment"."PreviousStreetESSH", - "Enrollment"."UrgentReferral", - "Enrollment"."TimeToHousingLoss", - "Enrollment"."ZeroIncome", - "Enrollment"."AnnualPercentAMI", - "Enrollment"."FinancialChange", - "Enrollment"."HouseholdChange", - "Enrollment"."EvictionHistory", - "Enrollment"."SubsidyAtRisk", - "Enrollment"."LiteralHomelessHistory", - "Enrollment"."DisabledHoH", - "Enrollment"."CriminalRecord", - "Enrollment"."SexOffender", - "Enrollment"."DependentUnder6", - "Enrollment"."SingleParent", - "Enrollment"."HH5Plus", - "Enrollment"."IraqAfghanistan", - "Enrollment"."FemVet", - "Enrollment"."ThresholdScore", - "Enrollment"."ERVisits", - "Enrollment"."JailNights", - "Enrollment"."HospitalNights", - "Enrollment"."RunawayYouth", - "Enrollment".processed_hash, - source_clients.id AS demographic_id, - destination_clients.id AS client_id - FROM (((public."Enrollment" - JOIN public."Client" source_clients ON ((("Enrollment".data_source_id = source_clients.data_source_id) AND (("Enrollment"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) - JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) - JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) - WHERE ("Enrollment"."DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx39"; -- --- Name: report_exits; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx40; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.report_exits AS - SELECT "Exit"."ExitID", - "Exit"."EnrollmentID" AS "ProjectEntryID", - "Exit"."PersonalID", - "Exit"."ExitDate", - "Exit"."Destination", - "Exit"."OtherDestination", - "Exit"."AssessmentDisposition", - "Exit"."OtherDisposition", - "Exit"."HousingAssessment", - "Exit"."SubsidyInformation", - "Exit"."ConnectionWithSOAR", - "Exit"."WrittenAftercarePlan", - "Exit"."AssistanceMainstreamBenefits", - "Exit"."PermanentHousingPlacement", - "Exit"."TemporaryShelterPlacement", - "Exit"."ExitCounseling", - "Exit"."FurtherFollowUpServices", - "Exit"."ScheduledFollowUpContacts", - "Exit"."ResourcePackage", - "Exit"."OtherAftercarePlanOrAction", - "Exit"."ProjectCompletionStatus", - "Exit"."EarlyExitReason", - "Exit"."FamilyReunificationAchieved", - "Exit"."DateCreated", - "Exit"."DateUpdated", - "Exit"."UserID", - "Exit"."DateDeleted", - "Exit"."ExportID", - "Exit".data_source_id, - "Exit".id, - "Exit"."ExchangeForSex", - "Exit"."ExchangeForSexPastThreeMonths", - "Exit"."CountOfExchangeForSex", - "Exit"."AskedOrForcedToExchangeForSex", - "Exit"."AskedOrForcedToExchangeForSexPastThreeMonths", - "Exit"."WorkPlaceViolenceThreats", - "Exit"."WorkplacePromiseDifference", - "Exit"."CoercedToContinueWork", - "Exit"."LaborExploitPastThreeMonths", - "Exit"."CounselingReceived", - "Exit"."IndividualCounseling", - "Exit"."FamilyCounseling", - "Exit"."GroupCounseling", - "Exit"."SessionCountAtExit", - "Exit"."PostExitCounselingPlan", - "Exit"."SessionsInPlan", - "Exit"."DestinationSafeClient", - "Exit"."DestinationSafeWorker", - "Exit"."PosAdultConnections", - "Exit"."PosPeerConnections", - "Exit"."PosCommunityConnections", - "Exit"."AftercareDate", - "Exit"."AftercareProvided", - "Exit"."EmailSocialMedia", - "Exit"."Telephone", - "Exit"."InPersonIndividual", - "Exit"."InPersonGroup", - "Exit"."CMExitReason", - "Enrollment".id AS enrollment_id, - source_clients.id AS demographic_id, - destination_clients.id AS client_id - FROM ((((public."Exit" - JOIN public."Client" source_clients ON ((("Exit".data_source_id = source_clients.data_source_id) AND (("Exit"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) - JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) - JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) - JOIN public."Enrollment" ON ((("Exit".data_source_id = "Enrollment".data_source_id) AND (("Exit"."PersonalID")::text = ("Enrollment"."PersonalID")::text) AND (("Exit"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Enrollment"."DateDeleted" IS NULL)))) - WHERE ("Exit"."DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx40"; -- --- Name: report_health_and_dvs; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx41; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.report_health_and_dvs AS - SELECT "HealthAndDV"."HealthAndDVID", - "HealthAndDV"."EnrollmentID" AS "ProjectEntryID", - "HealthAndDV"."PersonalID", - "HealthAndDV"."InformationDate", - "HealthAndDV"."DomesticViolenceVictim", - "HealthAndDV"."WhenOccurred", - "HealthAndDV"."CurrentlyFleeing", - "HealthAndDV"."GeneralHealthStatus", - "HealthAndDV"."DentalHealthStatus", - "HealthAndDV"."MentalHealthStatus", - "HealthAndDV"."PregnancyStatus", - "HealthAndDV"."DueDate", - "HealthAndDV"."DataCollectionStage", - "HealthAndDV"."DateCreated", - "HealthAndDV"."DateUpdated", - "HealthAndDV"."UserID", - "HealthAndDV"."DateDeleted", - "HealthAndDV"."ExportID", - "HealthAndDV".data_source_id, - "HealthAndDV".id, - "Enrollment".id AS enrollment_id, - source_clients.id AS demographic_id, - destination_clients.id AS client_id - FROM ((((public."HealthAndDV" - JOIN public."Client" source_clients ON ((("HealthAndDV".data_source_id = source_clients.data_source_id) AND (("HealthAndDV"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) - JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) - JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) - JOIN public."Enrollment" ON ((("HealthAndDV".data_source_id = "Enrollment".data_source_id) AND (("HealthAndDV"."PersonalID")::text = ("Enrollment"."PersonalID")::text) AND (("HealthAndDV"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Enrollment"."DateDeleted" IS NULL)))) - WHERE ("HealthAndDV"."DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx41"; -- --- Name: report_income_benefits; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx42; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.report_income_benefits AS - SELECT "IncomeBenefits"."IncomeBenefitsID", - "IncomeBenefits"."EnrollmentID" AS "ProjectEntryID", - "IncomeBenefits"."PersonalID", - "IncomeBenefits"."InformationDate", - "IncomeBenefits"."IncomeFromAnySource", - "IncomeBenefits"."TotalMonthlyIncome", - "IncomeBenefits"."Earned", - "IncomeBenefits"."EarnedAmount", - "IncomeBenefits"."Unemployment", - "IncomeBenefits"."UnemploymentAmount", - "IncomeBenefits"."SSI", - "IncomeBenefits"."SSIAmount", - "IncomeBenefits"."SSDI", - "IncomeBenefits"."SSDIAmount", - "IncomeBenefits"."VADisabilityService", - "IncomeBenefits"."VADisabilityServiceAmount", - "IncomeBenefits"."VADisabilityNonService", - "IncomeBenefits"."VADisabilityNonServiceAmount", - "IncomeBenefits"."PrivateDisability", - "IncomeBenefits"."PrivateDisabilityAmount", - "IncomeBenefits"."WorkersComp", - "IncomeBenefits"."WorkersCompAmount", - "IncomeBenefits"."TANF", - "IncomeBenefits"."TANFAmount", - "IncomeBenefits"."GA", - "IncomeBenefits"."GAAmount", - "IncomeBenefits"."SocSecRetirement", - "IncomeBenefits"."SocSecRetirementAmount", - "IncomeBenefits"."Pension", - "IncomeBenefits"."PensionAmount", - "IncomeBenefits"."ChildSupport", - "IncomeBenefits"."ChildSupportAmount", - "IncomeBenefits"."Alimony", - "IncomeBenefits"."AlimonyAmount", - "IncomeBenefits"."OtherIncomeSource", - "IncomeBenefits"."OtherIncomeAmount", - "IncomeBenefits"."OtherIncomeSourceIdentify", - "IncomeBenefits"."BenefitsFromAnySource", - "IncomeBenefits"."SNAP", - "IncomeBenefits"."WIC", - "IncomeBenefits"."TANFChildCare", - "IncomeBenefits"."TANFTransportation", - "IncomeBenefits"."OtherTANF", - "IncomeBenefits"."RentalAssistanceOngoing", - "IncomeBenefits"."RentalAssistanceTemp", - "IncomeBenefits"."OtherBenefitsSource", - "IncomeBenefits"."OtherBenefitsSourceIdentify", - "IncomeBenefits"."InsuranceFromAnySource", - "IncomeBenefits"."Medicaid", - "IncomeBenefits"."NoMedicaidReason", - "IncomeBenefits"."Medicare", - "IncomeBenefits"."NoMedicareReason", - "IncomeBenefits"."SCHIP", - "IncomeBenefits"."NoSCHIPReason", - "IncomeBenefits"."VAMedicalServices", - "IncomeBenefits"."NoVAMedReason", - "IncomeBenefits"."EmployerProvided", - "IncomeBenefits"."NoEmployerProvidedReason", - "IncomeBenefits"."COBRA", - "IncomeBenefits"."NoCOBRAReason", - "IncomeBenefits"."PrivatePay", - "IncomeBenefits"."NoPrivatePayReason", - "IncomeBenefits"."StateHealthIns", - "IncomeBenefits"."NoStateHealthInsReason", - "IncomeBenefits"."HIVAIDSAssistance", - "IncomeBenefits"."NoHIVAIDSAssistanceReason", - "IncomeBenefits"."ADAP", - "IncomeBenefits"."NoADAPReason", - "IncomeBenefits"."DataCollectionStage", - "IncomeBenefits"."DateCreated", - "IncomeBenefits"."DateUpdated", - "IncomeBenefits"."UserID", - "IncomeBenefits"."DateDeleted", - "IncomeBenefits"."ExportID", - "IncomeBenefits".data_source_id, - "IncomeBenefits".id, - "IncomeBenefits"."IndianHealthServices", - "IncomeBenefits"."NoIndianHealthServicesReason", - "IncomeBenefits"."OtherInsurance", - "IncomeBenefits"."OtherInsuranceIdentify", - "IncomeBenefits"."ConnectionWithSOAR", - "Enrollment".id AS enrollment_id, - source_clients.id AS demographic_id, - destination_clients.id AS client_id - FROM ((((public."IncomeBenefits" - JOIN public."Client" source_clients ON ((("IncomeBenefits".data_source_id = source_clients.data_source_id) AND (("IncomeBenefits"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) - JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) - JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) - JOIN public."Enrollment" ON ((("IncomeBenefits".data_source_id = "Enrollment".data_source_id) AND (("IncomeBenefits"."PersonalID")::text = ("Enrollment"."PersonalID")::text) AND (("IncomeBenefits"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Enrollment"."DateDeleted" IS NULL)))) - WHERE ("IncomeBenefits"."DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx42"; -- --- Name: report_services; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx43; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.report_services AS - SELECT "Services"."ServicesID", - "Services"."EnrollmentID" AS "ProjectEntryID", - "Services"."PersonalID", - "Services"."DateProvided", - "Services"."RecordType", - "Services"."TypeProvided", - "Services"."OtherTypeProvided", - "Services"."SubTypeProvided", - "Services"."FAAmount", - "Services"."ReferralOutcome", - "Services"."DateCreated", - "Services"."DateUpdated", - "Services"."UserID", - "Services"."DateDeleted", - "Services"."ExportID", - "Services".data_source_id, - "Services".id, - "Enrollment".id AS enrollment_id, - source_clients.id AS demographic_id, - destination_clients.id AS client_id - FROM ((((public."Services" - JOIN public."Client" source_clients ON ((("Services".data_source_id = source_clients.data_source_id) AND (("Services"."PersonalID")::text = (source_clients."PersonalID")::text) AND (source_clients."DateDeleted" IS NULL)))) - JOIN public.warehouse_clients ON ((source_clients.id = warehouse_clients.source_id))) - JOIN public."Client" destination_clients ON (((destination_clients.id = warehouse_clients.destination_id) AND (destination_clients."DateDeleted" IS NULL)))) - JOIN public."Enrollment" ON ((("Services".data_source_id = "Enrollment".data_source_id) AND (("Services"."PersonalID")::text = ("Enrollment"."PersonalID")::text) AND (("Services"."EnrollmentID")::text = ("Enrollment"."EnrollmentID")::text) AND ("Enrollment"."DateDeleted" IS NULL)))) - WHERE ("Services"."DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx43"; -- --- Name: report_tokens; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx44; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.report_tokens ( - id integer NOT NULL, - report_id integer NOT NULL, - contact_id integer NOT NULL, - token character varying NOT NULL, - expires_at timestamp without time zone NOT NULL, - accessed_at timestamp without time zone, - created_at timestamp without time zone, - updated_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx44"; -- --- Name: report_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx45; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.report_tokens_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx45"; -- --- Name: report_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx46; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.report_tokens_id_seq OWNED BY public.report_tokens.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx46"; -- --- Name: schema_migrations; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx47; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.schema_migrations ( - version character varying NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx47"; -- --- Name: secure_files; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx48; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.secure_files ( - id integer NOT NULL, - name character varying, - file character varying, - content_type character varying, - content bytea, - size integer, - sender_id integer, - recipient_id integer, - created_at timestamp without time zone, - updated_at timestamp without time zone, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx48"; -- --- Name: secure_files_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx49; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.secure_files_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx49"; -- --- Name: secure_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx50; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.secure_files_id_seq OWNED BY public.secure_files.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx50"; -- --- Name: service_history_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx51; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_enrollments ( - id bigint NOT NULL, - client_id integer NOT NULL, - data_source_id integer, - date date NOT NULL, - first_date_in_program date NOT NULL, - last_date_in_program date, - enrollment_group_id character varying(50), - project_id character varying(50), - age smallint, - destination integer, - head_of_household_id character varying(50), - household_id character varying(50), - project_name character varying, - project_type smallint, - project_tracking_method integer, - organization_id character varying(50), - record_type character varying(50) NOT NULL, - housing_status_at_entry integer, - housing_status_at_exit integer, - service_type smallint, - computed_project_type smallint, - presented_as_individual boolean, - other_clients_over_25 smallint DEFAULT 0 NOT NULL, - other_clients_under_18 smallint DEFAULT 0 NOT NULL, - other_clients_between_18_and_25 smallint DEFAULT 0 NOT NULL, - unaccompanied_youth boolean DEFAULT false NOT NULL, - parenting_youth boolean DEFAULT false NOT NULL, - parenting_juvenile boolean DEFAULT false NOT NULL, - children_only boolean DEFAULT false NOT NULL, - individual_adult boolean DEFAULT false NOT NULL, - individual_elder boolean DEFAULT false NOT NULL, - head_of_household boolean DEFAULT false NOT NULL, - move_in_date date, - unaccompanied_minor boolean DEFAULT false -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx51"; -- --- Name: service_history_services_was_for_inheritance; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx52; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_was_for_inheritance ( - id bigint NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx52"; -- --- Name: service_history_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx53; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.service_history_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx53"; -- --- Name: service_history_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx54; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.service_history_services_id_seq OWNED BY public.service_history_services_was_for_inheritance.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx54"; -- --- Name: service_history_services; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx55; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -) -PARTITION BY RANGE (date); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx55"; -- --- Name: service_history; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx56; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.service_history AS - SELECT service_history_services.id, - service_history_services.client_id, - service_history_enrollments.data_source_id, - service_history_services.date, - service_history_enrollments.first_date_in_program, - service_history_enrollments.last_date_in_program, - service_history_enrollments.enrollment_group_id, - service_history_enrollments.project_id, - service_history_services.age, - service_history_enrollments.destination, - service_history_enrollments.head_of_household_id, - service_history_enrollments.household_id, - service_history_enrollments.project_name, - service_history_services.project_type, - service_history_enrollments.project_tracking_method, - service_history_enrollments.organization_id, - service_history_services.record_type, - service_history_enrollments.housing_status_at_entry, - service_history_enrollments.housing_status_at_exit, - service_history_services.service_type, - service_history_enrollments.computed_project_type, - service_history_enrollments.presented_as_individual, - service_history_enrollments.other_clients_over_25, - service_history_enrollments.other_clients_under_18, - service_history_enrollments.other_clients_between_18_and_25, - service_history_enrollments.unaccompanied_youth, - service_history_enrollments.parenting_youth, - service_history_enrollments.parenting_juvenile, - service_history_enrollments.children_only, - service_history_enrollments.individual_adult, - service_history_enrollments.individual_elder, - service_history_enrollments.head_of_household - FROM (public.service_history_services - JOIN public.service_history_enrollments ON ((service_history_services.service_history_enrollment_id = service_history_enrollments.id))) -UNION - SELECT service_history_enrollments.id, - service_history_enrollments.client_id, - service_history_enrollments.data_source_id, - service_history_enrollments.date, - service_history_enrollments.first_date_in_program, - service_history_enrollments.last_date_in_program, - service_history_enrollments.enrollment_group_id, - service_history_enrollments.project_id, - service_history_enrollments.age, - service_history_enrollments.destination, - service_history_enrollments.head_of_household_id, - service_history_enrollments.household_id, - service_history_enrollments.project_name, - service_history_enrollments.project_type, - service_history_enrollments.project_tracking_method, - service_history_enrollments.organization_id, - service_history_enrollments.record_type, - service_history_enrollments.housing_status_at_entry, - service_history_enrollments.housing_status_at_exit, - service_history_enrollments.service_type, - service_history_enrollments.computed_project_type, - service_history_enrollments.presented_as_individual, - service_history_enrollments.other_clients_over_25, - service_history_enrollments.other_clients_under_18, - service_history_enrollments.other_clients_between_18_and_25, - service_history_enrollments.unaccompanied_youth, - service_history_enrollments.parenting_youth, - service_history_enrollments.parenting_juvenile, - service_history_enrollments.children_only, - service_history_enrollments.individual_adult, - service_history_enrollments.individual_elder, - service_history_enrollments.head_of_household - FROM public.service_history_enrollments; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx56"; -- --- Name: service_history_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx57; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.service_history_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx57"; -- --- Name: service_history_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx58; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.service_history_enrollments_id_seq OWNED BY public.service_history_enrollments.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx58"; -- --- Name: service_history_services_2000; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx59; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2000 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx59"; -- --- Name: service_history_services_2001; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx60; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2001 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx60"; -- --- Name: service_history_services_2002; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx61; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2002 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx61"; -- --- Name: service_history_services_2003; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx62; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2003 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx62"; -- --- Name: service_history_services_2004; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx63; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2004 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx63"; + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx64; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx64"; + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx65; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx65"; + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx66; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx66"; + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx67; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx67"; + + +-- +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx68; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx68"; -- --- Name: service_history_services_2005; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx69; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2005 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx69"; -- --- Name: service_history_services_2006; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx70; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2006 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx70"; -- --- Name: service_history_services_2007; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx71; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2007 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx71"; -- --- Name: service_history_services_2008; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx72; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2008 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx72"; -- --- Name: service_history_services_2009; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx73; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2009 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx73"; -- --- Name: service_history_services_2010; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx74; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2010 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx74"; -- --- Name: service_history_services_2011; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx75; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2011 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx75"; -- --- Name: service_history_services_2012; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx76; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2012 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx76"; -- --- Name: service_history_services_2013; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx77; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2013 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx77"; -- --- Name: service_history_services_2014; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx78; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2014 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx78"; -- --- Name: service_history_services_2015; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx79; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2015 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx79"; -- --- Name: service_history_services_2016; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx80; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2016 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx80"; -- --- Name: service_history_services_2017; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx81; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2017 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx81"; -- --- Name: service_history_services_2018; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx82; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2018 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx82"; -- --- Name: service_history_services_2019; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx83; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2019 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx83"; -- --- Name: service_history_services_2020; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx84; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2020 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx84"; -- --- Name: service_history_services_2021; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx85; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2021 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx85"; -- --- Name: service_history_services_2022; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx86; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2022 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx86"; -- --- Name: service_history_services_2023; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx87; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2023 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx87"; -- --- Name: service_history_services_2024; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx88; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2024 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx88"; -- --- Name: service_history_services_2025; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx89; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2025 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx89"; -- --- Name: service_history_services_2026; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx90; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2026 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx90"; -- --- Name: service_history_services_2027; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx91; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2027 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx91"; -- --- Name: service_history_services_2028; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx92; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2028 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx92"; -- --- Name: service_history_services_2029; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx93; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2029 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx93"; -- --- Name: service_history_services_2030; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx94; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2030 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx94"; -- --- Name: service_history_services_2031; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx95; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2031 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx95"; -- --- Name: service_history_services_2032; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx96; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2032 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx96"; -- --- Name: service_history_services_2033; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx97; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2033 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx97"; -- --- Name: service_history_services_2034; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx98; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2034 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx98"; -- --- Name: service_history_services_2035; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx99; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2035 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partition_PersonalID_RecordType_Enroll_idx99"; -- --- Name: service_history_services_2036; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_DateD_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2036 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partitione_EnrollmentID_RecordType_DateD_idx"; -- --- Name: service_history_services_2037; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2037 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx1"; -- --- Name: service_history_services_2038; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2038 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx2"; -- --- Name: service_history_services_2039; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2039 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx3"; -- --- Name: service_history_services_2040; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2040 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx4"; -- --- Name: service_history_services_2041; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2041 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5" ATTACH PARTITION hmis."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx5"; -- --- Name: service_history_services_2042; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2042 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6" ATTACH PARTITION hmis."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx6"; -- --- Name: service_history_services_2043; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2043 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7" ATTACH PARTITION hmis."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx7"; -- --- Name: service_history_services_2044; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2044 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8" ATTACH PARTITION hmis."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx8"; -- --- Name: service_history_services_2045; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2045 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9" ATTACH PARTITION hmis."hmis_2022_services_partitione_EnrollmentID_RecordType_Date_idx9"; -- --- Name: service_history_services_2046; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2046 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx1"; -- --- Name: service_history_services_2047; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2047 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx2"; -- --- Name: service_history_services_2048; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2048 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx3"; -- --- Name: service_history_services_2049; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2049 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx4"; -- --- Name: service_history_services_2050; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_2050 ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5"; -- --- Name: service_history_services_materialized; Type: MATERIALIZED VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE MATERIALIZED VIEW public.service_history_services_materialized AS - SELECT id, - service_history_enrollment_id, - record_type, - date, - age, - service_type, - client_id, - project_type, - homeless, - literally_homeless - FROM public.service_history_services - WITH NO DATA; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6" ATTACH PARTITION hmis."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx6"; -- --- Name: service_history_services_remainder; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_history_services_remainder ( - id bigint DEFAULT nextval('public.service_history_services_id_seq'::regclass) NOT NULL, - service_history_enrollment_id integer NOT NULL, - record_type character varying(50) NOT NULL, - date date NOT NULL, - age smallint, - service_type smallint, - client_id integer, - project_type smallint, - homeless boolean, - literally_homeless boolean -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7" ATTACH PARTITION hmis."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx7"; -- --- Name: service_scanning_scanner_ids; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_scanning_scanner_ids ( - id bigint NOT NULL, - client_id bigint NOT NULL, - source_type character varying NOT NULL, - scanned_id character varying NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8" ATTACH PARTITION hmis."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx8"; -- --- Name: service_scanning_scanner_ids_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.service_scanning_scanner_ids_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9" ATTACH PARTITION hmis."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx9"; -- --- Name: service_scanning_scanner_ids_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitione_PersonalID_RecordType_Enrollm_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.service_scanning_scanner_ids_id_seq OWNED BY public.service_scanning_scanner_ids.id; +ALTER INDEX public."hmis_2022_services_partitione_PersonalID_RecordType_Enroll_idx5" ATTACH PARTITION hmis."hmis_2022_services_partitione_PersonalID_RecordType_Enrollm_idx"; -- --- Name: service_scanning_services; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.service_scanning_services ( - id bigint NOT NULL, - client_id bigint NOT NULL, - project_id bigint NOT NULL, - user_id bigint NOT NULL, - type character varying NOT NULL, - other_type character varying, - provided_at timestamp without time zone, - note character varying, - created_at timestamp without time zone, - updated_at timestamp without time zone, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateCreated_idx"; -- --- Name: service_scanning_services_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.service_scanning_services_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateCreated_idx1"; -- --- Name: service_scanning_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.service_scanning_services_id_seq OWNED BY public.service_scanning_services.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateCreated_idx2"; -- --- Name: shape_block_groups; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.shape_block_groups ( - id bigint NOT NULL, - statefp character varying, - countyfp character varying, - tractce character varying, - blkgrpce character varying, - geoid character varying, - namelsad character varying, - mtfcc character varying, - funcstat character varying, - aland double precision, - awater double precision, - intptlat character varying, - intptlon character varying, - full_geoid character varying, - simplified_geom public.geometry(MultiPolygon,4326), - geom public.geometry(MultiPolygon,4326) -); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateCreated_idx3"; -- --- Name: shape_block_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.shape_block_groups_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateCreated_idx4"; -- --- Name: shape_block_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.shape_block_groups_id_seq OWNED BY public.shape_block_groups.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateDeleted_idx"; -- --- Name: shape_cocs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.shape_cocs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateDeleted_idx1"; -- --- Name: shape_cocs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.shape_cocs_id_seq OWNED BY public.shape_cocs.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateDeleted_idx2"; -- --- Name: shape_counties_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.shape_counties_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateDeleted_idx3"; -- --- Name: shape_counties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.shape_counties_id_seq OWNED BY public.shape_counties.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateDeleted_idx4"; -- --- Name: shape_places; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.shape_places ( - id bigint NOT NULL, - statefp character varying, - placefp character varying, - placens character varying, - full_geoid character varying, - geoid character varying, - name character varying, - namelsad character varying, - lsad character varying, - classfp character varying, - pcicbsa character varying, - pcinecta character varying, - mtfcc character varying, - funcstat character varying, - aland double precision, - awater double precision, - intptlat character varying, - intptlon character varying, - simplified_geom public.geometry(MultiPolygon,4326), - geom public.geometry(MultiPolygon,4326) -); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateProvided_idx"; -- --- Name: shape_places_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.shape_places_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateProvided_idx1"; -- --- Name: shape_places_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.shape_places_id_seq OWNED BY public.shape_places.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateProvided_idx2"; -- --- Name: shape_states_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.shape_states_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateProvided_idx3"; -- --- Name: shape_states_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.shape_states_id_seq OWNED BY public.shape_states.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateProvided_idx4"; -- --- Name: shape_towns; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.shape_towns ( - id bigint NOT NULL, - statefp character varying, - fy integer, - town_id integer, - town character varying, - shape_area numeric, - shape_len numeric, - full_geoid character varying, - geoid character varying, - simplified_geom public.geometry(MultiPolygon,4326), - geom public.geometry(MultiPolygon,4326) -); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateUpdated_idx"; -- --- Name: shape_towns_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.shape_towns_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateUpdated_idx1"; -- --- Name: shape_towns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.shape_towns_id_seq OWNED BY public.shape_towns.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateUpdated_idx2"; -- --- Name: shape_zip_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.shape_zip_codes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateUpdated_idx3"; -- --- Name: shape_zip_codes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.shape_zip_codes_id_seq OWNED BY public.shape_zip_codes.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_DateUpdated_idx4"; -- --- Name: simple_report_cells; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.simple_report_cells ( - id bigint NOT NULL, - report_instance_id bigint, - name character varying, - universe boolean DEFAULT false, - summary integer, - deleted_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - structured_data jsonb -); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx"; -- --- Name: simple_report_cells_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.simple_report_cells_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx1"; -- --- Name: simple_report_cells_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.simple_report_cells_id_seq OWNED BY public.simple_report_cells.id; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx2"; -- --- Name: simple_report_instances; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.simple_report_instances ( - id bigint NOT NULL, - type character varying, - options json, - user_id bigint, - deleted_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - started_at timestamp without time zone, - completed_at timestamp without time zone, - failed_at timestamp without time zone, - goal_configuration_id bigint, - path character varying -); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx3"; -- --- Name: simple_report_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.simple_report_instances_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx4"; -- --- Name: simple_report_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.simple_report_instances_id_seq OWNED BY public.simple_report_instances.id; +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_EnrollmentID_PersonalID_idx5"; -- --- Name: simple_report_universe_members; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.simple_report_universe_members ( - id bigint NOT NULL, - report_cell_id bigint, - universe_membership_type character varying, - universe_membership_id bigint, - client_id bigint, - first_name character varying, - last_name character varying, - deleted_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_EnrollmentID_idx"; -- --- Name: simple_report_universe_members_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.simple_report_universe_members_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_EnrollmentID_idx1"; -- --- Name: simple_report_universe_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.simple_report_universe_members_id_seq OWNED BY public.simple_report_universe_members.id; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_EnrollmentID_idx2"; -- --- Name: synthetic_assessments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.synthetic_assessments ( - id bigint NOT NULL, - enrollment_id bigint, - client_id bigint, - type character varying, - source_type character varying, - source_id bigint, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - hud_assessment_assessment_id character varying -); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_EnrollmentID_idx3"; -- --- Name: synthetic_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.synthetic_assessments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_EnrollmentID_idx4"; -- --- Name: synthetic_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.synthetic_assessments_id_seq OWNED BY public.synthetic_assessments.id; +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_ExportID_idx"; -- --- Name: synthetic_ce_assessment_project_configs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.synthetic_ce_assessment_project_configs ( - id bigint NOT NULL, - project_id bigint NOT NULL, - active boolean DEFAULT false NOT NULL, - assessment_type integer NOT NULL, - assessment_level integer NOT NULL, - prioritization_status integer NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_ExportID_idx1"; -- --- Name: synthetic_ce_assessment_project_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.synthetic_ce_assessment_project_configs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_ExportID_idx2"; -- --- Name: synthetic_ce_assessment_project_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.synthetic_ce_assessment_project_configs_id_seq OWNED BY public.synthetic_ce_assessment_project_configs.id; +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_ExportID_idx3"; -- --- Name: synthetic_events; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.synthetic_events ( - id bigint NOT NULL, - enrollment_id bigint, - client_id bigint, - type character varying, - source_type character varying, - source_id bigint, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - hud_event_event_id character varying, - calculated_referral_result integer, - calculated_referral_date date -); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_ExportID_idx4"; -- --- Name: synthetic_events_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.synthetic_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_PersonalID_idx"; -- --- Name: synthetic_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.synthetic_events_id_seq OWNED BY public.synthetic_events.id; +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_PersonalID_idx1"; -- --- Name: synthetic_youth_education_statuses; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.synthetic_youth_education_statuses ( - id bigint NOT NULL, - enrollment_id bigint, - client_id bigint, - type character varying, - source_type character varying, - source_id bigint, - hud_youth_education_status_youth_education_status_id character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_PersonalID_idx2"; -- --- Name: synthetic_youth_education_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.synthetic_youth_education_statuses_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_PersonalID_idx3"; -- --- Name: synthetic_youth_education_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.synthetic_youth_education_statuses_id_seq OWNED BY public.synthetic_youth_education_statuses.id; +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_PersonalID_idx4"; -- --- Name: system_colors; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.system_colors ( - id bigint NOT NULL, - slug character varying NOT NULL, - background_color character varying NOT NULL, - foreground_color character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx"; -- --- Name: system_colors_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.system_colors_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx1"; -- --- Name: system_colors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.system_colors_id_seq OWNED BY public.system_colors.id; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx2"; -- --- Name: system_pathways_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.system_pathways_clients ( - id bigint NOT NULL, - client_id bigint, - first_name character varying, - last_name character varying, - personal_ids character varying, - dob date, - age integer, - am_ind_ak_native boolean, - asian boolean, - black_af_american boolean, - native_hi_pacific boolean, - white boolean, - ethnicity integer, - male boolean, - female boolean, - gender_other boolean, - transgender boolean, - questioning boolean, - no_single_gender boolean, - veteran_status integer, - involves_ce boolean, - system boolean, - destination integer, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - destination_homeless boolean DEFAULT false, - destination_temporary boolean DEFAULT false, - destination_institutional boolean DEFAULT false, - destination_other boolean DEFAULT false, - destination_permanent boolean DEFAULT false, - returned_project_type integer, - returned_project_name character varying, - returned_project_entry_date date, - returned_project_enrollment_id bigint, - returned_project_project_id bigint, - report_id bigint, - deleted_at timestamp without time zone, - days_to_return integer, - ce_assessment boolean DEFAULT false NOT NULL, - woman boolean, - man boolean, - culturally_specific boolean, - different_identity boolean, - non_binary boolean, - hispanic_latinaeo boolean, - mid_east_n_african boolean -); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx3"; -- --- Name: system_pathways_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.system_pathways_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_DateDeleted_idx4"; + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_DateProvided_idx"; + + +-- +-- Name: hmis_2022_services_partitioned_0_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - +-- + +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_DateProvided_idx1"; -- --- Name: system_pathways_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.system_pathways_clients_id_seq OWNED BY public.system_pathways_clients.id; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_DateProvided_idx2"; -- --- Name: system_pathways_enrollments; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.system_pathways_enrollments ( - id bigint NOT NULL, - client_id bigint NOT NULL, - from_project_type integer, - project_id bigint NOT NULL, - enrollment_id bigint NOT NULL, - project_type integer NOT NULL, - destination integer, - project_name character varying, - entry_date date, - exit_date date, - stay_length integer, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - relationship_to_hoh integer, - household_id character varying, - household_type character varying, - report_id bigint, - deleted_at timestamp without time zone, - final_enrollment boolean DEFAULT false NOT NULL, - move_in_date date, - days_to_move_in integer, - chronic_at_entry boolean, - disabling_condition integer, - days_to_exit_after_move_in integer -); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_DateProvided_idx3"; -- --- Name: COLUMN system_pathways_enrollments.from_project_type; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.system_pathways_enrollments.from_project_type IS 'null for System'; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_DateProvided_idx4"; -- --- Name: COLUMN system_pathways_enrollments.destination; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.system_pathways_enrollments.destination IS 'Only stored for final enrollment'; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_idx"; -- --- Name: system_pathways_enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.system_pathways_enrollments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_idx1"; -- --- Name: system_pathways_enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.system_pathways_enrollments_id_seq OWNED BY public.system_pathways_enrollments.id; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_idx2"; -- --- Name: taggings; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.taggings ( - id integer NOT NULL, - tag_id integer, - taggable_id integer, - taggable_type character varying, - tagger_id integer, - tagger_type character varying, - context character varying(128), - created_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_idx3"; -- --- Name: taggings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.taggings_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_RecordType_idx4"; -- --- Name: taggings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.taggings_id_seq OWNED BY public.taggings.id; +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_ServicesID_data_source_id_idx"; -- --- Name: tags; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.tags ( - id integer NOT NULL, - name character varying, - taggings_count integer DEFAULT 0 -); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_ServicesID_idx"; -- --- Name: tags_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.tags_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_ServicesID_idx1"; -- --- Name: tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.tags_id_seq OWNED BY public.tags.id; +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_ServicesID_idx2"; -- --- Name: talentlms_completed_trainings; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.talentlms_completed_trainings ( - id bigint NOT NULL, - login_id bigint NOT NULL, - config_id bigint NOT NULL, - completion_date date NOT NULL, - course_id bigint -); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_ServicesID_idx3"; -- --- Name: talentlms_completed_trainings_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.talentlms_completed_trainings_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_ServicesID_idx4"; -- --- Name: talentlms_completed_trainings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_ServicesID_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.talentlms_completed_trainings_id_seq OWNED BY public.talentlms_completed_trainings.id; +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_0_ServicesID_importer_log_id_idx"; -- --- Name: talentlms_configs; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.talentlms_configs ( - id bigint NOT NULL, - subdomain character varying, - encrypted_api_key character varying, - encrypted_api_key_iv character varying, - create_new_accounts boolean DEFAULT true -); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_0_importer_log_id_idx; -- --- Name: talentlms_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.talentlms_configs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_0_pkey; -- --- Name: talentlms_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_0_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.talentlms_configs_id_seq OWNED BY public.talentlms_configs.id; +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_0_source_type_source_id_idx; -- --- Name: talentlms_courses; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.talentlms_courses ( - id bigint NOT NULL, - config_id bigint, - courseid integer, - months_to_expiration integer, - name character varying, - "default" boolean DEFAULT false, - start_date date, - end_date date -); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateCreated_idx"; -- --- Name: talentlms_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.talentlms_courses_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateCreated_idx1"; -- --- Name: talentlms_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.talentlms_courses_id_seq OWNED BY public.talentlms_courses.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateCreated_idx2"; -- --- Name: talentlms_logins; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.talentlms_logins ( - id bigint NOT NULL, - user_id bigint, - login character varying, - encrypted_password character varying, - encrypted_password_iv character varying, - lms_user_id integer, - config_id bigint -); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateCreated_idx3"; -- --- Name: talentlms_logins_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.talentlms_logins_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateCreated_idx4"; -- --- Name: talentlms_logins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.talentlms_logins_id_seq OWNED BY public.talentlms_logins.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateDeleted_idx"; -- --- Name: text_message_messages; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.text_message_messages ( - id bigint NOT NULL, - topic_id bigint, - subscriber_id bigint, - send_on_or_after date, - sent_at timestamp without time zone, - sent_to character varying, - content character varying, - source_id integer, - source_type character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - delivery_status character varying -); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateDeleted_idx1"; -- --- Name: text_message_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.text_message_messages_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateDeleted_idx2"; -- --- Name: text_message_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.text_message_messages_id_seq OWNED BY public.text_message_messages.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateDeleted_idx3"; -- --- Name: text_message_topic_subscribers; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.text_message_topic_subscribers ( - id bigint NOT NULL, - topic_id bigint, - subscribed_at timestamp without time zone, - unsubscribed_at timestamp without time zone, - first_name character varying, - last_name character varying, - phone_number character varying, - preferred_language character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - client_id integer -); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateDeleted_idx4"; -- --- Name: text_message_topic_subscribers_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.text_message_topic_subscribers_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateProvided_idx"; -- --- Name: text_message_topic_subscribers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.text_message_topic_subscribers_id_seq OWNED BY public.text_message_topic_subscribers.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateProvided_idx1"; -- --- Name: text_message_topics; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.text_message_topics ( - id bigint NOT NULL, - arn character varying, - title character varying, - active_topic boolean DEFAULT true NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - send_hour integer -); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateProvided_idx2"; -- --- Name: text_message_topics_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.text_message_topics_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateProvided_idx3"; -- --- Name: text_message_topics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.text_message_topics_id_seq OWNED BY public.text_message_topics.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateProvided_idx4"; -- --- Name: themes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.themes ( - id bigint NOT NULL, - client character varying NOT NULL, - hmis_origin character varying, - hmis_value jsonb, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - remote_credential_id bigint, - css_file_contents text, - scss_file_contents text -); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateUpdated_idx"; -- --- Name: themes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.themes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateUpdated_idx1"; -- --- Name: themes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.themes_id_seq OWNED BY public.themes.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateUpdated_idx2"; -- --- Name: todd_stats; Type: VIEW; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE VIEW public.todd_stats AS - SELECT relname, - round(( - CASE - WHEN ((n_live_tup + n_dead_tup) = 0) THEN (0)::double precision - ELSE ((n_dead_tup)::double precision / ((n_dead_tup + n_live_tup))::double precision) - END * (100.0)::double precision)) AS "Frag %", - n_live_tup AS "Live rows", - n_dead_tup AS "Dead rows", - n_mod_since_analyze AS "Rows modified since analyze", - CASE - WHEN (COALESCE(last_vacuum, '1999-01-01 00:00:00+00'::timestamp with time zone) > COALESCE(last_autovacuum, '1999-01-01 00:00:00+00'::timestamp with time zone)) THEN last_vacuum - ELSE COALESCE(last_autovacuum, '1999-01-01 00:00:00+00'::timestamp with time zone) - END AS last_vacuum, - CASE - WHEN (COALESCE(last_analyze, '1999-01-01 00:00:00+00'::timestamp with time zone) > COALESCE(last_autoanalyze, '1999-01-01 00:00:00+00'::timestamp with time zone)) THEN last_analyze - ELSE COALESCE(last_autoanalyze, '1999-01-01 00:00:00+00'::timestamp with time zone) - END AS last_analyze, - (vacuum_count + autovacuum_count) AS vacuum_count, - (analyze_count + autoanalyze_count) AS analyze_count - FROM pg_stat_all_tables - WHERE (schemaname <> ALL (ARRAY['pg_toast'::name, 'information_schema'::name, 'pg_catalog'::name])); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateUpdated_idx3"; -- --- Name: tx_research_exports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.tx_research_exports ( - id bigint NOT NULL, - user_id bigint, - export_id bigint, - options jsonb DEFAULT '{}'::jsonb, - started_at timestamp without time zone, - completed_at timestamp without time zone, - failed_at timestamp without time zone, - processing_errors text, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_DateUpdated_idx4"; -- --- Name: tx_research_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.tx_research_exports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx"; -- --- Name: tx_research_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.tx_research_exports_id_seq OWNED BY public.tx_research_exports.id; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx1"; -- --- Name: uploads; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.uploads ( - id integer NOT NULL, - data_source_id integer, - user_id integer, - file character varying NOT NULL, - percent_complete double precision, - unzipped_path character varying, - unzipped_files json, - summary json, - import_errors json, - content_type character varying, - content bytea, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - started_at timestamp without time zone, - completed_at timestamp without time zone, - deleted_at timestamp without time zone, - delayed_job_id integer, - deidentified boolean DEFAULT false, - project_whitelist boolean DEFAULT false, - encrypted_content text, - encrypted_content_iv character varying -); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx2"; -- --- Name: uploads_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.uploads_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx3"; -- --- Name: uploads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.uploads_id_seq OWNED BY public.uploads.id; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx4"; -- --- Name: user_client_permissions; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.user_client_permissions ( - id bigint NOT NULL, - user_id integer NOT NULL, - client_id integer NOT NULL, - viewable boolean DEFAULT false, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_EnrollmentID_PersonalID_idx5"; -- --- Name: user_client_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.user_client_permissions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_EnrollmentID_idx"; -- --- Name: user_client_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.user_client_permissions_id_seq OWNED BY public.user_client_permissions.id; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_EnrollmentID_idx1"; -- --- Name: user_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.user_clients ( - id integer NOT NULL, - user_id integer NOT NULL, - client_id integer NOT NULL, - confidential boolean DEFAULT false NOT NULL, - relationship character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - start_date date, - end_date date, - client_notifications boolean DEFAULT false -); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_EnrollmentID_idx2"; -- --- Name: user_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.user_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_EnrollmentID_idx3"; -- --- Name: user_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.user_clients_id_seq OWNED BY public.user_clients.id; +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_EnrollmentID_idx4"; -- --- Name: user_viewable_entities; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.user_viewable_entities ( - id integer NOT NULL, - user_id integer NOT NULL, - entity_id integer NOT NULL, - entity_type character varying NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_ExportID_idx"; -- --- Name: user_viewable_entities_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.user_viewable_entities_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_ExportID_idx1"; -- --- Name: user_viewable_entities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.user_viewable_entities_id_seq OWNED BY public.user_viewable_entities.id; +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_ExportID_idx2"; -- --- Name: va_check_histories; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.va_check_histories ( - id bigint NOT NULL, - client_id bigint, - response character varying, - check_date date, - user_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_ExportID_idx3"; -- --- Name: va_check_histories_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.va_check_histories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_ExportID_idx4"; -- --- Name: va_check_histories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.va_check_histories_id_seq OWNED BY public.va_check_histories.id; +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_PersonalID_idx"; -- --- Name: verification_sources; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.verification_sources ( - id integer NOT NULL, - client_id integer, - location character varying, - created_at timestamp without time zone, - updated_at timestamp without time zone, - verified_at timestamp without time zone, - type character varying -); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_PersonalID_idx1"; -- --- Name: verification_sources_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.verification_sources_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_PersonalID_idx2"; -- --- Name: verification_sources_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.verification_sources_id_seq OWNED BY public.verification_sources.id; +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_PersonalID_idx3"; -- --- Name: versions; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.versions ( - id bigint NOT NULL, - item_type character varying NOT NULL, - item_id bigint NOT NULL, - event character varying NOT NULL, - whodunnit character varying, - object jsonb, - object_changes jsonb, - created_at timestamp without time zone, - session_id character varying, - request_id character varying, - user_id bigint, - referenced_user_id bigint, - referenced_entity_name character varying, - migrated_app_version_id bigint, - true_user_id bigint, - client_id bigint, - enrollment_id bigint, - project_id bigint -); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_PersonalID_idx4"; -- --- Name: COLUMN versions.migrated_app_version_id; Type: COMMENT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -COMMENT ON COLUMN public.versions.migrated_app_version_id IS 'app database version record'; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx"; -- --- Name: versions_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.versions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx1"; -- --- Name: versions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.versions_id_seq OWNED BY public.versions.id; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx2"; -- --- Name: vispdats; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.vispdats ( - id integer NOT NULL, - client_id integer, - nickname character varying, - language_answer integer, - hiv_release boolean, - sleep_answer integer, - sleep_answer_other character varying, - homeless integer, - homeless_refused boolean, - episodes_homeless integer, - episodes_homeless_refused boolean, - emergency_healthcare integer, - emergency_healthcare_refused boolean, - ambulance integer, - ambulance_refused boolean, - inpatient integer, - inpatient_refused boolean, - crisis_service integer, - crisis_service_refused boolean, - talked_to_police integer, - talked_to_police_refused boolean, - jail integer, - jail_refused boolean, - attacked_answer integer, - threatened_answer integer, - legal_answer integer, - tricked_answer integer, - risky_answer integer, - owe_money_answer integer, - get_money_answer integer, - activities_answer integer, - basic_needs_answer integer, - abusive_answer integer, - leave_answer integer, - chronic_answer integer, - hiv_answer integer, - disability_answer integer, - avoid_help_answer integer, - pregnant_answer integer, - eviction_answer integer, - drinking_answer integer, - mental_answer integer, - head_answer integer, - learning_answer integer, - brain_answer integer, - medication_answer integer, - sell_answer integer, - trauma_answer integer, - find_location character varying, - find_time character varying, - when_answer integer, - phone character varying, - email character varying, - picture_answer integer, - score integer, - recommendation character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - submitted_at timestamp without time zone, - homeless_period integer, - release_signed_on date, - drug_release boolean, - migrated_case_manager character varying, - migrated_interviewer_name character varying, - migrated_interviewer_email character varying, - migrated_filed_by character varying, - migrated boolean DEFAULT false NOT NULL, - housing_release_confirmed boolean DEFAULT false, - user_id integer, - priority_score integer, - active boolean DEFAULT false, - type character varying DEFAULT 'GrdaWarehouse::Vispdat::Individual'::character varying, - marijuana_answer integer, - incarcerated_before_18_answer integer, - homeless_due_to_ran_away_answer integer, - homeless_due_to_religions_beliefs_answer integer, - homeless_due_to_family_answer integer, - homeless_due_to_gender_identity_answer integer, - violence_between_family_members_answer integer, - parent2_none boolean DEFAULT false, - parent2_first_name character varying, - parent2_nickname character varying, - parent2_last_name character varying, - parent2_language_answer character varying, - parent2_dob date, - parent2_ssn character varying, - parent2_release_signed_on date, - parent2_drug_release boolean DEFAULT false, - parent2_hiv_release boolean DEFAULT false, - number_of_children_under_18_with_family integer, - number_of_children_under_18_with_family_refused boolean DEFAULT false, - number_of_children_under_18_not_with_family integer, - number_of_children_under_18_not_with_family_refused boolean DEFAULT false, - any_member_pregnant_answer integer, - family_member_tri_morbidity_answer integer, - any_children_removed_answer integer, - any_family_legal_issues_answer integer, - any_children_lived_with_family_answer integer, - any_child_abuse_answer integer, - children_attend_school_answer integer, - family_members_changed_answer integer, - other_family_members_answer integer, - planned_family_activities_answer integer, - time_spent_alone_13_answer integer, - time_spent_alone_12_answer integer, - time_spent_helping_siblings_answer integer, - number_of_bedrooms integer DEFAULT 0, - contact_method character varying -); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx3"; -- --- Name: vispdats_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.vispdats_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_DateDeleted_idx4"; -- --- Name: vispdats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.vispdats_id_seq OWNED BY public.vispdats.id; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_DateProvided_idx"; -- --- Name: warehouse_client_service_history; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.warehouse_client_service_history ( - id integer NOT NULL, - client_id integer NOT NULL, - data_source_id integer, - date date NOT NULL, - first_date_in_program date NOT NULL, - last_date_in_program date, - enrollment_group_id character varying(50), - age integer, - destination integer, - head_of_household_id character varying(50), - household_id character varying(50), - project_id character varying(50), - project_name character varying(150), - project_type integer, - project_tracking_method integer, - organization_id character varying(50), - record_type character varying(50) NOT NULL, - housing_status_at_entry integer, - housing_status_at_exit integer, - service_type integer, - computed_project_type integer, - presented_as_individual boolean, - other_clients_over_25 integer DEFAULT 0 NOT NULL, - other_clients_under_18 integer DEFAULT 0 NOT NULL, - other_clients_between_18_and_25 integer DEFAULT 0 NOT NULL, - unaccompanied_youth boolean DEFAULT false NOT NULL, - parenting_youth boolean DEFAULT false NOT NULL, - parenting_juvenile boolean DEFAULT false NOT NULL, - children_only boolean DEFAULT false NOT NULL, - individual_adult boolean DEFAULT false NOT NULL, - individual_elder boolean DEFAULT false NOT NULL, - head_of_household boolean DEFAULT false NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_DateProvided_idx1"; -- --- Name: warehouse_client_service_history_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.warehouse_client_service_history_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_DateProvided_idx2"; -- --- Name: warehouse_client_service_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.warehouse_client_service_history_id_seq OWNED BY public.warehouse_client_service_history.id; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_DateProvided_idx3"; -- --- Name: warehouse_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.warehouse_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_DateProvided_idx4"; -- --- Name: warehouse_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.warehouse_clients_id_seq OWNED BY public.warehouse_clients.id; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_idx"; -- --- Name: warehouse_clients_processed; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.warehouse_clients_processed ( - id integer NOT NULL, - client_id integer, - routine character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - last_service_updated_at timestamp without time zone, - days_served integer, - first_date_served date, - last_date_served date, - first_homeless_date date, - last_homeless_date date, - homeless_days integer, - first_chronic_date date, - last_chronic_date date, - chronic_days integer, - days_homeless_last_three_years integer, - literally_homeless_last_three_years integer, - enrolled_homeless_shelter boolean, - enrolled_homeless_unsheltered boolean, - enrolled_permanent_housing boolean, - eto_coordinated_entry_assessment_score integer, - household_members character varying, - last_homeless_visit character varying, - open_enrollments jsonb, - rrh_desired boolean, - vispdat_priority_score integer, - vispdat_score integer, - active_in_cas_match boolean DEFAULT false, - last_exit_destination character varying, - last_cas_match_date timestamp without time zone, - lgbtq_from_hmis character varying, - days_homeless_plus_overrides integer, - cohorts_ongoing_enrollments_es jsonb, - cohorts_ongoing_enrollments_sh jsonb, - cohorts_ongoing_enrollments_th jsonb, - cohorts_ongoing_enrollments_so jsonb, - cohorts_ongoing_enrollments_psh jsonb, - cohorts_ongoing_enrollments_rrh jsonb, - last_intentional_contacts character varying -); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_idx1"; -- --- Name: warehouse_clients_processed_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.warehouse_clients_processed_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_idx2"; -- --- Name: warehouse_clients_processed_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.warehouse_clients_processed_id_seq OWNED BY public.warehouse_clients_processed.id; +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_idx3"; -- --- Name: warehouse_reports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.warehouse_reports ( - id integer NOT NULL, - parameters json, - data json, - type character varying, - started_at timestamp without time zone, - finished_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - client_count integer, - support json, - token character varying, - user_id integer, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_RecordType_idx4"; -- --- Name: warehouse_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.warehouse_reports_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_ServicesID_data_source_id_idx"; -- --- Name: warehouse_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.warehouse_reports_id_seq OWNED BY public.warehouse_reports.id; +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_ServicesID_idx"; -- --- Name: weather; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.weather ( - id integer NOT NULL, - url character varying NOT NULL, - body text NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_ServicesID_idx1"; -- --- Name: weather_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.weather_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_ServicesID_idx2"; -- --- Name: weather_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.weather_id_seq OWNED BY public.weather.id; +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_ServicesID_idx3"; -- --- Name: whitelisted_projects_for_clients; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.whitelisted_projects_for_clients ( - id integer NOT NULL, - data_source_id integer NOT NULL, - "ProjectID" character varying NOT NULL, - created_at timestamp without time zone, - updated_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_10_ServicesID_idx4"; -- --- Name: whitelisted_projects_for_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.whitelisted_projects_for_clients_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_10_importer_log_id_idx; -- --- Name: whitelisted_projects_for_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.whitelisted_projects_for_clients_id_seq OWNED BY public.whitelisted_projects_for_clients.id; +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_10_pkey; -- --- Name: youth_case_managements; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_10_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.youth_case_managements ( - id integer NOT NULL, - client_id integer, - user_id integer, - engaged_on date, - activity text, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - housing_status character varying, - other_housing_status character varying, - imported boolean DEFAULT false, - zip_code character varying -); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_10_source_type_source_id_idx; -- --- Name: youth_case_managements_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.youth_case_managements_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateCreated_idx"; -- --- Name: youth_case_managements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.youth_case_managements_id_seq OWNED BY public.youth_case_managements.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateCreated_idx1"; -- --- Name: youth_exports; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.youth_exports ( - id integer NOT NULL, - user_id integer NOT NULL, - options jsonb, - headers jsonb, - rows jsonb, - client_count integer, - started_at timestamp without time zone, - completed_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateCreated_idx2"; -- --- Name: youth_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.youth_exports_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateCreated_idx3"; -- --- Name: youth_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.youth_exports_id_seq OWNED BY public.youth_exports.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateCreated_idx4"; -- --- Name: youth_follow_ups; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.youth_follow_ups ( - id integer NOT NULL, - client_id integer, - user_id integer, - contacted_on date, - housing_status character varying, - zip_code character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - action character varying, - action_on date, - required_on date, - case_management_id integer -); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateDeleted_idx"; -- --- Name: youth_follow_ups_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.youth_follow_ups_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateDeleted_idx1"; -- --- Name: youth_follow_ups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.youth_follow_ups_id_seq OWNED BY public.youth_follow_ups.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateDeleted_idx2"; -- --- Name: youth_intakes; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.youth_intakes ( - id integer NOT NULL, - client_id integer, - user_id integer, - type character varying, - other_staff_completed_intake boolean DEFAULT false NOT NULL, - client_dob date, - staff_name character varying, - staff_email character varying, - engagement_date date NOT NULL, - exit_date date, - unaccompanied character varying NOT NULL, - street_outreach_contact character varying NOT NULL, - housing_status character varying NOT NULL, - other_agency_involvement character varying, - owns_cell_phone character varying, - secondary_education character varying NOT NULL, - attending_college character varying NOT NULL, - health_insurance character varying NOT NULL, - requesting_financial_assistance character varying NOT NULL, - staff_believes_youth_under_24 character varying NOT NULL, - client_gender integer NOT NULL, - client_lgbtq character varying NOT NULL, - client_race jsonb NOT NULL, - client_ethnicity integer, - client_primary_language character varying NOT NULL, - pregnant_or_parenting character varying NOT NULL, - disabilities jsonb NOT NULL, - how_hear character varying, - needs_shelter character varying NOT NULL, - referred_to_shelter character varying DEFAULT 'f'::character varying NOT NULL, - in_stable_housing character varying NOT NULL, - stable_housing_zipcode character varying, - youth_experiencing_homelessness_at_start character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - turned_away boolean DEFAULT false NOT NULL, - college_pilot character varying DEFAULT 'No'::character varying NOT NULL, - graduating_college character varying DEFAULT 'No'::character varying NOT NULL, - imported boolean DEFAULT false, - first_name character varying, - last_name character varying, - ssn character varying, - other_agency_involvements json DEFAULT '[]'::json -); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateDeleted_idx3"; -- --- Name: youth_intakes_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.youth_intakes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateDeleted_idx4"; -- --- Name: youth_intakes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.youth_intakes_id_seq OWNED BY public.youth_intakes.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateProvided_idx"; -- --- Name: youth_referrals; Type: TABLE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE TABLE public.youth_referrals ( - id integer NOT NULL, - client_id integer, - user_id integer, - referred_on date, - referred_to character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone, - imported boolean DEFAULT false, - notes character varying -); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateProvided_idx1"; -- --- Name: youth_referrals_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE SEQUENCE public.youth_referrals_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateProvided_idx2"; -- --- Name: youth_referrals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER SEQUENCE public.youth_referrals_id_seq OWNED BY public.youth_referrals.id; +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateProvided_idx3"; -- --- Name: service_history_services_2000; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2000 FOR VALUES FROM ('2000-01-01') TO ('2001-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateProvided_idx4"; -- --- Name: service_history_services_2001; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2001 FOR VALUES FROM ('2001-01-01') TO ('2002-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateUpdated_idx"; -- --- Name: service_history_services_2002; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2002 FOR VALUES FROM ('2002-01-01') TO ('2003-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateUpdated_idx1"; -- --- Name: service_history_services_2003; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2003 FOR VALUES FROM ('2003-01-01') TO ('2004-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateUpdated_idx2"; -- --- Name: service_history_services_2004; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2004 FOR VALUES FROM ('2004-01-01') TO ('2005-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateUpdated_idx3"; -- --- Name: service_history_services_2005; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2005 FOR VALUES FROM ('2005-01-01') TO ('2006-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_DateUpdated_idx4"; -- --- Name: service_history_services_2006; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2006 FOR VALUES FROM ('2006-01-01') TO ('2007-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx"; -- --- Name: service_history_services_2007; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2007 FOR VALUES FROM ('2007-01-01') TO ('2008-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx1"; -- --- Name: service_history_services_2008; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2008 FOR VALUES FROM ('2008-01-01') TO ('2009-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx2"; -- --- Name: service_history_services_2009; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2009 FOR VALUES FROM ('2009-01-01') TO ('2010-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx3"; -- --- Name: service_history_services_2010; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2010 FOR VALUES FROM ('2010-01-01') TO ('2011-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx4"; -- --- Name: service_history_services_2011; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2011 FOR VALUES FROM ('2011-01-01') TO ('2012-01-01'); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_EnrollmentID_PersonalID_idx5"; -- --- Name: service_history_services_2012; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2012 FOR VALUES FROM ('2012-01-01') TO ('2013-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_EnrollmentID_idx"; -- --- Name: service_history_services_2013; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2013 FOR VALUES FROM ('2013-01-01') TO ('2014-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_EnrollmentID_idx1"; -- --- Name: service_history_services_2014; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2014 FOR VALUES FROM ('2014-01-01') TO ('2015-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_EnrollmentID_idx2"; -- --- Name: service_history_services_2015; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2015 FOR VALUES FROM ('2015-01-01') TO ('2016-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_EnrollmentID_idx3"; -- --- Name: service_history_services_2016; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2016 FOR VALUES FROM ('2016-01-01') TO ('2017-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_EnrollmentID_idx4"; -- --- Name: service_history_services_2017; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2017 FOR VALUES FROM ('2017-01-01') TO ('2018-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_ExportID_idx"; -- --- Name: service_history_services_2018; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2018 FOR VALUES FROM ('2018-01-01') TO ('2019-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_ExportID_idx1"; -- --- Name: service_history_services_2019; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2019 FOR VALUES FROM ('2019-01-01') TO ('2020-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_ExportID_idx2"; -- --- Name: service_history_services_2020; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2020 FOR VALUES FROM ('2020-01-01') TO ('2021-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_ExportID_idx3"; -- --- Name: service_history_services_2021; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2021 FOR VALUES FROM ('2021-01-01') TO ('2022-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_ExportID_idx4"; -- --- Name: service_history_services_2022; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2022 FOR VALUES FROM ('2022-01-01') TO ('2023-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_PersonalID_idx"; -- --- Name: service_history_services_2023; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2023 FOR VALUES FROM ('2023-01-01') TO ('2024-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_PersonalID_idx1"; -- --- Name: service_history_services_2024; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2024 FOR VALUES FROM ('2024-01-01') TO ('2025-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_PersonalID_idx2"; -- --- Name: service_history_services_2025; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2025 FOR VALUES FROM ('2025-01-01') TO ('2026-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_PersonalID_idx3"; -- --- Name: service_history_services_2026; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2026 FOR VALUES FROM ('2026-01-01') TO ('2027-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_PersonalID_idx4"; -- --- Name: service_history_services_2027; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2027 FOR VALUES FROM ('2027-01-01') TO ('2028-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx"; -- --- Name: service_history_services_2028; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2028 FOR VALUES FROM ('2028-01-01') TO ('2029-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx1"; -- --- Name: service_history_services_2029; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2029 FOR VALUES FROM ('2029-01-01') TO ('2030-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx2"; -- --- Name: service_history_services_2030; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2030 FOR VALUES FROM ('2030-01-01') TO ('2031-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx3"; -- --- Name: service_history_services_2031; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2031 FOR VALUES FROM ('2031-01-01') TO ('2032-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_DateDeleted_idx4"; -- --- Name: service_history_services_2032; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2032 FOR VALUES FROM ('2032-01-01') TO ('2033-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_DateProvided_idx"; -- --- Name: service_history_services_2033; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2033 FOR VALUES FROM ('2033-01-01') TO ('2034-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_DateProvided_idx1"; -- --- Name: service_history_services_2034; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2034 FOR VALUES FROM ('2034-01-01') TO ('2035-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_DateProvided_idx2"; -- --- Name: service_history_services_2035; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2035 FOR VALUES FROM ('2035-01-01') TO ('2036-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_DateProvided_idx3"; -- --- Name: service_history_services_2036; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2036 FOR VALUES FROM ('2036-01-01') TO ('2037-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_DateProvided_idx4"; -- --- Name: service_history_services_2037; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2037 FOR VALUES FROM ('2037-01-01') TO ('2038-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_idx"; -- --- Name: service_history_services_2038; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2038 FOR VALUES FROM ('2038-01-01') TO ('2039-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_idx1"; -- --- Name: service_history_services_2039; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2039 FOR VALUES FROM ('2039-01-01') TO ('2040-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_idx2"; -- --- Name: service_history_services_2040; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2040 FOR VALUES FROM ('2040-01-01') TO ('2041-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_idx3"; -- --- Name: service_history_services_2041; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2041 FOR VALUES FROM ('2041-01-01') TO ('2042-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_RecordType_idx4"; -- --- Name: service_history_services_2042; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2042 FOR VALUES FROM ('2042-01-01') TO ('2043-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_ServicesID_data_source_id_idx"; -- --- Name: service_history_services_2043; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2043 FOR VALUES FROM ('2043-01-01') TO ('2044-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_ServicesID_idx"; -- --- Name: service_history_services_2044; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2044 FOR VALUES FROM ('2044-01-01') TO ('2045-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_ServicesID_idx1"; -- --- Name: service_history_services_2045; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2045 FOR VALUES FROM ('2045-01-01') TO ('2046-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_ServicesID_idx2"; -- --- Name: service_history_services_2046; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2046 FOR VALUES FROM ('2046-01-01') TO ('2047-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_ServicesID_idx3"; -- --- Name: service_history_services_2047; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2047 FOR VALUES FROM ('2047-01-01') TO ('2048-01-01'); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_11_ServicesID_idx4"; -- --- Name: service_history_services_2048; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2048 FOR VALUES FROM ('2048-01-01') TO ('2049-01-01'); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_11_importer_log_id_idx; -- --- Name: service_history_services_2049; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2049 FOR VALUES FROM ('2049-01-01') TO ('2050-01-01'); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_11_pkey; -- --- Name: service_history_services_2050; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_11_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_2050 FOR VALUES FROM ('2050-01-01') TO ('2051-01-01'); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_11_source_type_source_id_idx; -- --- Name: service_history_services_remainder; Type: TABLE ATTACH; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services ATTACH PARTITION public.service_history_services_remainder DEFAULT; +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateCreated_idx"; -- --- Name: Affiliation id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Affiliation" ALTER COLUMN id SET DEFAULT nextval('public."Affiliation_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateCreated_idx1"; -- --- Name: Assessment id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Assessment" ALTER COLUMN id SET DEFAULT nextval('public."Assessment_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateCreated_idx2"; -- --- Name: AssessmentQuestions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."AssessmentQuestions" ALTER COLUMN id SET DEFAULT nextval('public."AssessmentQuestions_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateCreated_idx3"; -- --- Name: AssessmentResults id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."AssessmentResults" ALTER COLUMN id SET DEFAULT nextval('public."AssessmentResults_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateCreated_idx4"; -- --- Name: CEParticipation id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CEParticipation" ALTER COLUMN id SET DEFAULT nextval('public."CEParticipation_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateDeleted_idx"; -- --- Name: Client id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Client" ALTER COLUMN id SET DEFAULT nextval('public."Client_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateDeleted_idx1"; -- --- Name: CurrentLivingSituation id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CurrentLivingSituation" ALTER COLUMN id SET DEFAULT nextval('public."CurrentLivingSituation_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateDeleted_idx2"; -- --- Name: CustomAssessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomAssessments" ALTER COLUMN id SET DEFAULT nextval('public."CustomAssessments_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateDeleted_idx3"; -- --- Name: CustomCaseNote id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomCaseNote" ALTER COLUMN id SET DEFAULT nextval('public."CustomCaseNote_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateDeleted_idx4"; -- --- Name: CustomClientAddress id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomClientAddress" ALTER COLUMN id SET DEFAULT nextval('public."CustomClientAddress_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateProvided_idx"; -- --- Name: CustomClientAssessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomClientAssessments" ALTER COLUMN id SET DEFAULT nextval('public."CustomClientAssessments_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateProvided_idx1"; -- --- Name: CustomClientContactPoint id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomClientContactPoint" ALTER COLUMN id SET DEFAULT nextval('public."CustomClientContactPoint_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateProvided_idx2"; -- --- Name: CustomClientName id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomClientName" ALTER COLUMN id SET DEFAULT nextval('public."CustomClientName_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateProvided_idx3"; -- --- Name: CustomDataElementDefinitions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomDataElementDefinitions" ALTER COLUMN id SET DEFAULT nextval('public."CustomDataElementDefinitions_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateProvided_idx4"; -- --- Name: CustomDataElements id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomDataElements" ALTER COLUMN id SET DEFAULT nextval('public."CustomDataElements_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateUpdated_idx"; -- --- Name: CustomProjectAssessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomProjectAssessments" ALTER COLUMN id SET DEFAULT nextval('public."CustomProjectAssessments_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateUpdated_idx1"; -- --- Name: CustomServiceCategories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomServiceCategories" ALTER COLUMN id SET DEFAULT nextval('public."CustomServiceCategories_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateUpdated_idx2"; -- --- Name: CustomServiceTypes id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomServiceTypes" ALTER COLUMN id SET DEFAULT nextval('public."CustomServiceTypes_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateUpdated_idx3"; -- --- Name: CustomServices id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomServices" ALTER COLUMN id SET DEFAULT nextval('public."CustomServices_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_DateUpdated_idx4"; -- --- Name: Disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Disabilities" ALTER COLUMN id SET DEFAULT nextval('public."Disabilities_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx"; -- --- Name: EmploymentEducation id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."EmploymentEducation" ALTER COLUMN id SET DEFAULT nextval('public."EmploymentEducation_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx1"; -- --- Name: Enrollment id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Enrollment" ALTER COLUMN id SET DEFAULT nextval('public."Enrollment_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx2"; -- --- Name: EnrollmentCoC id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."EnrollmentCoC" ALTER COLUMN id SET DEFAULT nextval('public."EnrollmentCoC_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx3"; -- --- Name: Event id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Event" ALTER COLUMN id SET DEFAULT nextval('public."Event_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx4"; -- --- Name: Exit id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Exit" ALTER COLUMN id SET DEFAULT nextval('public."Exit_id_seq"'::regclass); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_EnrollmentID_PersonalID_idx5"; -- --- Name: Export id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Export" ALTER COLUMN id SET DEFAULT nextval('public."Export_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_EnrollmentID_idx"; -- --- Name: Funder id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Funder" ALTER COLUMN id SET DEFAULT nextval('public."Funder_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_EnrollmentID_idx1"; -- --- Name: Geography id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Geography" ALTER COLUMN id SET DEFAULT nextval('public."Geography_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_EnrollmentID_idx2"; -- --- Name: HMISParticipation id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."HMISParticipation" ALTER COLUMN id SET DEFAULT nextval('public."HMISParticipation_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_EnrollmentID_idx3"; -- --- Name: HealthAndDV id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."HealthAndDV" ALTER COLUMN id SET DEFAULT nextval('public."HealthAndDV_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_EnrollmentID_idx4"; -- --- Name: IncomeBenefits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."IncomeBenefits" ALTER COLUMN id SET DEFAULT nextval('public."IncomeBenefits_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_ExportID_idx"; -- --- Name: Inventory id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Inventory" ALTER COLUMN id SET DEFAULT nextval('public."Inventory_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_ExportID_idx1"; -- --- Name: Organization id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Organization" ALTER COLUMN id SET DEFAULT nextval('public."Organization_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_ExportID_idx2"; -- --- Name: Project id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Project" ALTER COLUMN id SET DEFAULT nextval('public."Project_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_ExportID_idx3"; -- --- Name: ProjectCoC id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."ProjectCoC" ALTER COLUMN id SET DEFAULT nextval('public."ProjectCoC_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_ExportID_idx4"; -- --- Name: Services id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Services" ALTER COLUMN id SET DEFAULT nextval('public."Services_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_PersonalID_idx"; -- --- Name: User id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."User" ALTER COLUMN id SET DEFAULT nextval('public."User_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_PersonalID_idx1"; -- --- Name: YouthEducationStatus id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."YouthEducationStatus" ALTER COLUMN id SET DEFAULT nextval('public."YouthEducationStatus_id_seq"'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_PersonalID_idx2"; -- --- Name: ac_hmis_projects_import_attempts id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ac_hmis_projects_import_attempts ALTER COLUMN id SET DEFAULT nextval('public.ac_hmis_projects_import_attempts_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_PersonalID_idx3"; -- --- Name: ad_hoc_batches id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ad_hoc_batches ALTER COLUMN id SET DEFAULT nextval('public.ad_hoc_batches_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_PersonalID_idx4"; -- --- Name: ad_hoc_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ad_hoc_clients ALTER COLUMN id SET DEFAULT nextval('public.ad_hoc_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx"; -- --- Name: ad_hoc_data_sources id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ad_hoc_data_sources ALTER COLUMN id SET DEFAULT nextval('public.ad_hoc_data_sources_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx1"; -- --- Name: administrative_events id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.administrative_events ALTER COLUMN id SET DEFAULT nextval('public.administrative_events_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx2"; -- --- Name: anomalies id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.anomalies ALTER COLUMN id SET DEFAULT nextval('public.anomalies_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx3"; -- --- Name: ansd_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ansd_enrollments ALTER COLUMN id SET DEFAULT nextval('public.ansd_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_DateDeleted_idx4"; -- --- Name: ansd_events id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ansd_events ALTER COLUMN id SET DEFAULT nextval('public.ansd_events_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_DateProvided_idx"; -- --- Name: api_client_data_source_ids id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.api_client_data_source_ids ALTER COLUMN id SET DEFAULT nextval('public.api_client_data_source_ids_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_DateProvided_idx1"; -- --- Name: assessment_answer_lookups id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.assessment_answer_lookups ALTER COLUMN id SET DEFAULT nextval('public.assessment_answer_lookups_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_DateProvided_idx2"; -- --- Name: available_file_tags id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.available_file_tags ALTER COLUMN id SET DEFAULT nextval('public.available_file_tags_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_DateProvided_idx3"; -- --- Name: bo_configs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.bo_configs ALTER COLUMN id SET DEFAULT nextval('public.bo_configs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_DateProvided_idx4"; -- --- Name: boston_project_scorecard_reports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.boston_project_scorecard_reports ALTER COLUMN id SET DEFAULT nextval('public.boston_project_scorecard_reports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_idx"; -- --- Name: boston_report_configs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.boston_report_configs ALTER COLUMN id SET DEFAULT nextval('public.boston_report_configs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_idx1"; -- --- Name: cas_availabilities id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_availabilities ALTER COLUMN id SET DEFAULT nextval('public.cas_availabilities_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_idx2"; -- --- Name: cas_ce_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_ce_assessments ALTER COLUMN id SET DEFAULT nextval('public.cas_ce_assessments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_idx3"; -- --- Name: cas_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_enrollments ALTER COLUMN id SET DEFAULT nextval('public.cas_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_RecordType_idx4"; -- --- Name: cas_houseds id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_houseds ALTER COLUMN id SET DEFAULT nextval('public.cas_houseds_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_ServicesID_data_source_id_idx"; -- --- Name: cas_non_hmis_client_histories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_non_hmis_client_histories ALTER COLUMN id SET DEFAULT nextval('public.cas_non_hmis_client_histories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_ServicesID_idx"; -- --- Name: cas_programs_to_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_programs_to_projects ALTER COLUMN id SET DEFAULT nextval('public.cas_programs_to_projects_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_ServicesID_idx1"; -- --- Name: cas_referral_events id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_referral_events ALTER COLUMN id SET DEFAULT nextval('public.cas_referral_events_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_ServicesID_idx2"; -- --- Name: cas_reports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_reports ALTER COLUMN id SET DEFAULT nextval('public.cas_reports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_ServicesID_idx3"; -- --- Name: cas_vacancies id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_vacancies ALTER COLUMN id SET DEFAULT nextval('public.cas_vacancies_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_12_ServicesID_idx4"; -- --- Name: ce_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ce_assessments ALTER COLUMN id SET DEFAULT nextval('public.ce_assessments_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_12_importer_log_id_idx; -- --- Name: ce_performance_ce_aprs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ce_performance_ce_aprs ALTER COLUMN id SET DEFAULT nextval('public.ce_performance_ce_aprs_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_12_pkey; -- --- Name: ce_performance_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_12_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ce_performance_clients ALTER COLUMN id SET DEFAULT nextval('public.ce_performance_clients_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_12_source_type_source_id_idx; -- --- Name: ce_performance_goals id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ce_performance_goals ALTER COLUMN id SET DEFAULT nextval('public.ce_performance_goals_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateCreated_idx"; -- --- Name: ce_performance_results id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ce_performance_results ALTER COLUMN id SET DEFAULT nextval('public.ce_performance_results_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateCreated_idx1"; -- --- Name: census_by_project_types id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.census_by_project_types ALTER COLUMN id SET DEFAULT nextval('public.census_by_project_types_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateCreated_idx2"; -- --- Name: census_groups id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.census_groups ALTER COLUMN id SET DEFAULT nextval('public.census_groups_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateCreated_idx3"; -- --- Name: census_values id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.census_values ALTER COLUMN id SET DEFAULT nextval('public.census_values_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateCreated_idx4"; -- --- Name: census_variables id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.census_variables ALTER COLUMN id SET DEFAULT nextval('public.census_variables_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateDeleted_idx"; -- --- Name: censuses id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.censuses ALTER COLUMN id SET DEFAULT nextval('public.censuses_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateDeleted_idx1"; -- --- Name: ch_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ch_enrollments ALTER COLUMN id SET DEFAULT nextval('public.ch_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateDeleted_idx2"; -- --- Name: children id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.children ALTER COLUMN id SET DEFAULT nextval('public.children_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateDeleted_idx3"; -- --- Name: chronics id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.chronics ALTER COLUMN id SET DEFAULT nextval('public.chronics_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateDeleted_idx4"; -- --- Name: clh_locations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.clh_locations ALTER COLUMN id SET DEFAULT nextval('public.clh_locations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateProvided_idx"; -- --- Name: client_contacts id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.client_contacts ALTER COLUMN id SET DEFAULT nextval('public.client_contacts_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateProvided_idx1"; -- --- Name: client_matches id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.client_matches ALTER COLUMN id SET DEFAULT nextval('public.client_matches_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateProvided_idx2"; -- --- Name: client_merge_histories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.client_merge_histories ALTER COLUMN id SET DEFAULT nextval('public.client_merge_histories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateProvided_idx3"; -- --- Name: client_notes id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.client_notes ALTER COLUMN id SET DEFAULT nextval('public.client_notes_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateProvided_idx4"; -- --- Name: client_roi_authorizations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.client_roi_authorizations ALTER COLUMN id SET DEFAULT nextval('public.client_roi_authorizations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateUpdated_idx"; -- --- Name: client_split_histories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.client_split_histories ALTER COLUMN id SET DEFAULT nextval('public.client_split_histories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateUpdated_idx1"; -- --- Name: coc_codes id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.coc_codes ALTER COLUMN id SET DEFAULT nextval('public.coc_codes_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateUpdated_idx2"; -- --- Name: coc_pit_counts id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.coc_pit_counts ALTER COLUMN id SET DEFAULT nextval('public.coc_pit_counts_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateUpdated_idx3"; -- --- Name: cohort_client_changes id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cohort_client_changes ALTER COLUMN id SET DEFAULT nextval('public.cohort_client_changes_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_DateUpdated_idx4"; -- --- Name: cohort_client_notes id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cohort_client_notes ALTER COLUMN id SET DEFAULT nextval('public.cohort_client_notes_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx"; -- --- Name: cohort_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cohort_clients ALTER COLUMN id SET DEFAULT nextval('public.cohort_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx1"; -- --- Name: cohort_column_options id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cohort_column_options ALTER COLUMN id SET DEFAULT nextval('public.cohort_column_options_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx2"; -- --- Name: cohort_tabs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cohort_tabs ALTER COLUMN id SET DEFAULT nextval('public.cohort_tabs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx3"; -- --- Name: cohorts id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cohorts ALTER COLUMN id SET DEFAULT nextval('public.cohorts_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx4"; -- --- Name: configs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.configs ALTER COLUMN id SET DEFAULT nextval('public.configs_id_seq'::regclass); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_EnrollmentID_PersonalID_idx5"; -- --- Name: contacts id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.contacts ALTER COLUMN id SET DEFAULT nextval('public.contacts_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_EnrollmentID_idx"; -- --- Name: csg_engage_agencies id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.csg_engage_agencies ALTER COLUMN id SET DEFAULT nextval('public.csg_engage_agencies_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_EnrollmentID_idx1"; -- --- Name: csg_engage_program_mappings id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.csg_engage_program_mappings ALTER COLUMN id SET DEFAULT nextval('public.csg_engage_program_mappings_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_EnrollmentID_idx2"; -- --- Name: csg_engage_program_reports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.csg_engage_program_reports ALTER COLUMN id SET DEFAULT nextval('public.csg_engage_program_reports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_EnrollmentID_idx3"; -- --- Name: csg_engage_programs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.csg_engage_programs ALTER COLUMN id SET DEFAULT nextval('public.csg_engage_programs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_EnrollmentID_idx4"; -- --- Name: csg_engage_reports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.csg_engage_reports ALTER COLUMN id SET DEFAULT nextval('public.csg_engage_reports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_ExportID_idx"; -- --- Name: custom_imports_b_al_rows id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.custom_imports_b_al_rows ALTER COLUMN id SET DEFAULT nextval('public.custom_imports_b_al_rows_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_ExportID_idx1"; -- --- Name: custom_imports_b_contacts_rows id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.custom_imports_b_contacts_rows ALTER COLUMN id SET DEFAULT nextval('public.custom_imports_b_contacts_rows_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_ExportID_idx2"; -- --- Name: custom_imports_b_coo_rows id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.custom_imports_b_coo_rows ALTER COLUMN id SET DEFAULT nextval('public.custom_imports_b_coo_rows_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_ExportID_idx3"; -- --- Name: custom_imports_b_services_rows id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.custom_imports_b_services_rows ALTER COLUMN id SET DEFAULT nextval('public.custom_imports_b_services_rows_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_ExportID_idx4"; -- --- Name: custom_imports_config id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.custom_imports_config ALTER COLUMN id SET DEFAULT nextval('public.custom_imports_config_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_PersonalID_idx"; -- --- Name: custom_imports_files id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.custom_imports_files ALTER COLUMN id SET DEFAULT nextval('public.custom_imports_files_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_PersonalID_idx1"; -- --- Name: dashboard_export_reports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.dashboard_export_reports ALTER COLUMN id SET DEFAULT nextval('public.dashboard_export_reports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_PersonalID_idx2"; -- --- Name: data_monitorings id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.data_monitorings ALTER COLUMN id SET DEFAULT nextval('public.data_monitorings_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_PersonalID_idx3"; -- --- Name: data_sources id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.data_sources ALTER COLUMN id SET DEFAULT nextval('public.data_sources_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_PersonalID_idx4"; -- --- Name: datasets id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.datasets ALTER COLUMN id SET DEFAULT nextval('public.datasets_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx"; -- --- Name: direct_financial_assistances id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.direct_financial_assistances ALTER COLUMN id SET DEFAULT nextval('public.direct_financial_assistances_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx1"; -- --- Name: document_exports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.document_exports ALTER COLUMN id SET DEFAULT nextval('public.document_exports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx2"; -- --- Name: eccovia_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eccovia_assessments ALTER COLUMN id SET DEFAULT nextval('public.eccovia_assessments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx3"; -- --- Name: eccovia_case_managers id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eccovia_case_managers ALTER COLUMN id SET DEFAULT nextval('public.eccovia_case_managers_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_DateDeleted_idx4"; -- --- Name: eccovia_client_contacts id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eccovia_client_contacts ALTER COLUMN id SET DEFAULT nextval('public.eccovia_client_contacts_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_DateProvided_idx"; -- --- Name: eccovia_fetches id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eccovia_fetches ALTER COLUMN id SET DEFAULT nextval('public.eccovia_fetches_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_DateProvided_idx1"; -- --- Name: enrollment_change_histories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.enrollment_change_histories ALTER COLUMN id SET DEFAULT nextval('public.enrollment_change_histories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_DateProvided_idx2"; -- --- Name: enrollment_extras id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.enrollment_extras ALTER COLUMN id SET DEFAULT nextval('public.enrollment_extras_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_DateProvided_idx3"; -- --- Name: eto_api_configs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eto_api_configs ALTER COLUMN id SET DEFAULT nextval('public.eto_api_configs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_DateProvided_idx4"; -- --- Name: eto_client_lookups id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eto_client_lookups ALTER COLUMN id SET DEFAULT nextval('public.eto_client_lookups_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_idx"; -- --- Name: eto_subject_response_lookups id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eto_subject_response_lookups ALTER COLUMN id SET DEFAULT nextval('public.eto_subject_response_lookups_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_idx1"; -- --- Name: eto_touch_point_lookups id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eto_touch_point_lookups ALTER COLUMN id SET DEFAULT nextval('public.eto_touch_point_lookups_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_idx2"; -- --- Name: eto_touch_point_response_times id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eto_touch_point_response_times ALTER COLUMN id SET DEFAULT nextval('public.eto_touch_point_response_times_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_idx3"; -- --- Name: exports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.exports ALTER COLUMN id SET DEFAULT nextval('public.exports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_RecordType_idx4"; -- --- Name: exports_ad_hoc_anons id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.exports_ad_hoc_anons ALTER COLUMN id SET DEFAULT nextval('public.exports_ad_hoc_anons_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_ServicesID_data_source_id_idx"; -- --- Name: exports_ad_hocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.exports_ad_hocs ALTER COLUMN id SET DEFAULT nextval('public.exports_ad_hocs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_ServicesID_idx"; -- --- Name: external_ids id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.external_ids ALTER COLUMN id SET DEFAULT nextval('public.external_ids_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_ServicesID_idx1"; -- --- Name: external_reporting_cohort_permissions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.external_reporting_cohort_permissions ALTER COLUMN id SET DEFAULT nextval('public.external_reporting_cohort_permissions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_ServicesID_idx2"; -- --- Name: external_reporting_project_permissions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.external_reporting_project_permissions ALTER COLUMN id SET DEFAULT nextval('public.external_reporting_project_permissions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_ServicesID_idx3"; -- --- Name: external_request_logs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.external_request_logs ALTER COLUMN id SET DEFAULT nextval('public.external_request_logs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_13_ServicesID_idx4"; -- --- Name: fake_data id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.fake_data ALTER COLUMN id SET DEFAULT nextval('public.fake_data_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_13_importer_log_id_idx; -- --- Name: favorites id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.favorites ALTER COLUMN id SET DEFAULT nextval('public.favorites_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_13_pkey; -- --- Name: federal_census_breakdowns id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_13_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.federal_census_breakdowns ALTER COLUMN id SET DEFAULT nextval('public.federal_census_breakdowns_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_13_source_type_source_id_idx; -- --- Name: files id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.files ALTER COLUMN id SET DEFAULT nextval('public.files_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateCreated_idx"; -- --- Name: financial_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.financial_clients ALTER COLUMN id SET DEFAULT nextval('public.financial_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateCreated_idx1"; -- --- Name: financial_providers id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.financial_providers ALTER COLUMN id SET DEFAULT nextval('public.financial_providers_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateCreated_idx2"; -- --- Name: financial_transactions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.financial_transactions ALTER COLUMN id SET DEFAULT nextval('public.financial_transactions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateCreated_idx3"; -- --- Name: generate_service_history_batch_logs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.generate_service_history_batch_logs ALTER COLUMN id SET DEFAULT nextval('public.generate_service_history_batch_logs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateCreated_idx4"; -- --- Name: generate_service_history_log id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.generate_service_history_log ALTER COLUMN id SET DEFAULT nextval('public.generate_service_history_log_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateDeleted_idx"; -- --- Name: generic_services id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.generic_services ALTER COLUMN id SET DEFAULT nextval('public.generic_services_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateDeleted_idx1"; -- --- Name: grades id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.grades ALTER COLUMN id SET DEFAULT nextval('public.grades_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateDeleted_idx2"; -- --- Name: group_viewable_entities id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.group_viewable_entities ALTER COLUMN id SET DEFAULT nextval('public.group_viewable_entities_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateDeleted_idx3"; -- --- Name: hap_report_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hap_report_clients ALTER COLUMN id SET DEFAULT nextval('public.hap_report_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateDeleted_idx4"; -- --- Name: hap_report_eraps id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hap_report_eraps ALTER COLUMN id SET DEFAULT nextval('public.hap_report_eraps_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateProvided_idx"; -- --- Name: health_emergency_ama_restrictions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_ama_restrictions ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_ama_restrictions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateProvided_idx1"; -- --- Name: health_emergency_clinical_triages id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_clinical_triages ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_clinical_triages_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateProvided_idx2"; -- --- Name: health_emergency_isolations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_isolations ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_isolations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateProvided_idx3"; -- --- Name: health_emergency_test_batches id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_test_batches ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_test_batches_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateProvided_idx4"; -- --- Name: health_emergency_tests id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_tests ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_tests_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateUpdated_idx"; -- --- Name: health_emergency_triages id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_triages ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_triages_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateUpdated_idx1"; -- --- Name: health_emergency_uploaded_tests id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_uploaded_tests ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_uploaded_tests_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateUpdated_idx2"; -- --- Name: health_emergency_vaccinations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_vaccinations ALTER COLUMN id SET DEFAULT nextval('public.health_emergency_vaccinations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateUpdated_idx3"; -- --- Name: helps id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.helps ALTER COLUMN id SET DEFAULT nextval('public.helps_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_DateUpdated_idx4"; -- --- Name: hmis_2020_affiliations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_affiliations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_affiliations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_2020_aggregated_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_aggregated_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_aggregated_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_2020_aggregated_exits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_aggregated_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_aggregated_exits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis_2020_assessment_questions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_assessment_questions ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_assessment_questions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis_2020_assessment_results id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_assessment_results ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_assessment_results_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis_2020_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_assessments_id_seq'::regclass); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis_2020_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_EnrollmentID_idx"; -- --- Name: hmis_2020_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_current_living_situations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_EnrollmentID_idx1"; -- --- Name: hmis_2020_disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_disabilities ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_disabilities_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_EnrollmentID_idx2"; -- --- Name: hmis_2020_employment_educations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_employment_educations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_employment_educations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_EnrollmentID_idx3"; -- --- Name: hmis_2020_enrollment_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_enrollment_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_enrollment_cocs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_EnrollmentID_idx4"; -- --- Name: hmis_2020_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_ExportID_idx"; -- --- Name: hmis_2020_events id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_events_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_ExportID_idx1"; -- --- Name: hmis_2020_exits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_exits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_ExportID_idx2"; -- --- Name: hmis_2020_exports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_exports ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_exports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_ExportID_idx3"; -- --- Name: hmis_2020_funders id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_funders ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_funders_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_ExportID_idx4"; -- --- Name: hmis_2020_health_and_dvs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_health_and_dvs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_health_and_dvs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_PersonalID_idx"; -- --- Name: hmis_2020_income_benefits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_income_benefits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_income_benefits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_PersonalID_idx1"; -- --- Name: hmis_2020_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_inventories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_PersonalID_idx2"; -- --- Name: hmis_2020_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_organizations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_organizations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_PersonalID_idx3"; -- --- Name: hmis_2020_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_project_cocs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_PersonalID_idx4"; -- --- Name: hmis_2020_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_projects ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_projects_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx"; -- --- Name: hmis_2020_services id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_services ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_services_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx1"; -- --- Name: hmis_2020_users id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_users ALTER COLUMN id SET DEFAULT nextval('public.hmis_2020_users_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx2"; -- --- Name: hmis_2022_affiliations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_affiliations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_affiliations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx3"; -- --- Name: hmis_2022_assessment_questions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_assessment_questions ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_assessment_questions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_DateDeleted_idx4"; -- --- Name: hmis_2022_assessment_results id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_assessment_results ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_assessment_results_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_DateProvided_idx"; -- --- Name: hmis_2022_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_assessments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_DateProvided_idx1"; -- --- Name: hmis_2022_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_DateProvided_idx2"; -- --- Name: hmis_2022_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_current_living_situations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_DateProvided_idx3"; -- --- Name: hmis_2022_disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_disabilities ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_disabilities_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_DateProvided_idx4"; -- --- Name: hmis_2022_employment_educations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_employment_educations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_employment_educations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_idx"; -- --- Name: hmis_2022_enrollment_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_enrollment_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_enrollment_cocs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_idx1"; -- --- Name: hmis_2022_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_idx2"; -- --- Name: hmis_2022_events id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_events_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_idx3"; -- --- Name: hmis_2022_exits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_exits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_RecordType_idx4"; -- --- Name: hmis_2022_exports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_exports ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_exports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_ServicesID_data_source_id_idx"; -- --- Name: hmis_2022_funders id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_funders ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_funders_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_ServicesID_idx"; -- --- Name: hmis_2022_health_and_dvs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_health_and_dvs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_health_and_dvs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_ServicesID_idx1"; -- --- Name: hmis_2022_income_benefits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_income_benefits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_income_benefits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_ServicesID_idx2"; -- --- Name: hmis_2022_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_inventories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_ServicesID_idx3"; -- --- Name: hmis_2022_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_organizations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_organizations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_14_ServicesID_idx4"; -- --- Name: hmis_2022_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_project_cocs_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_14_importer_log_id_idx; -- --- Name: hmis_2022_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_projects ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_projects_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_14_pkey; -- --- Name: hmis_2022_services id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_14_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_services ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_services_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_14_source_type_source_id_idx; -- --- Name: hmis_2022_users id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_users ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_users_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateCreated_idx"; -- --- Name: hmis_2022_youth_education_statuses id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_youth_education_statuses ALTER COLUMN id SET DEFAULT nextval('public.hmis_2022_youth_education_statuses_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateCreated_idx1"; -- --- Name: hmis_2024_affiliations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_affiliations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_affiliations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateCreated_idx2"; -- --- Name: hmis_2024_assessment_questions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_assessment_questions ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_assessment_questions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateCreated_idx3"; -- --- Name: hmis_2024_assessment_results id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_assessment_results ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_assessment_results_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateCreated_idx4"; -- --- Name: hmis_2024_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_assessments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateDeleted_idx"; -- --- Name: hmis_2024_ce_participations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_ce_participations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_ce_participations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateDeleted_idx1"; -- --- Name: hmis_2024_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateDeleted_idx2"; -- --- Name: hmis_2024_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_current_living_situations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateDeleted_idx3"; -- --- Name: hmis_2024_disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_disabilities ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_disabilities_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateDeleted_idx4"; -- --- Name: hmis_2024_employment_educations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_employment_educations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_employment_educations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateProvided_idx"; -- --- Name: hmis_2024_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateProvided_idx1"; -- --- Name: hmis_2024_events id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_events_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateProvided_idx2"; -- --- Name: hmis_2024_exits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_exits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateProvided_idx3"; -- --- Name: hmis_2024_exports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_exports ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_exports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateProvided_idx4"; -- --- Name: hmis_2024_funders id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_funders ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_funders_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateUpdated_idx"; -- --- Name: hmis_2024_health_and_dvs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_health_and_dvs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_health_and_dvs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateUpdated_idx1"; -- --- Name: hmis_2024_hmis_participations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_hmis_participations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_hmis_participations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateUpdated_idx2"; -- --- Name: hmis_2024_income_benefits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_income_benefits ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_income_benefits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateUpdated_idx3"; -- --- Name: hmis_2024_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_inventories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_DateUpdated_idx4"; -- --- Name: hmis_2024_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_organizations ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_organizations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_2024_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_project_cocs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_2024_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_projects ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_projects_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis_2024_services id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_services ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_services_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis_2024_users id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_users ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_users_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis_2024_youth_education_statuses id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_youth_education_statuses ALTER COLUMN id SET DEFAULT nextval('public.hmis_2024_youth_education_statuses_id_seq'::regclass); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis_active_ranges id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_active_ranges ALTER COLUMN id SET DEFAULT nextval('public.hmis_active_ranges_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_EnrollmentID_idx"; -- --- Name: hmis_aggregated_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_aggregated_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_aggregated_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_EnrollmentID_idx1"; -- --- Name: hmis_aggregated_exits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_aggregated_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_aggregated_exits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_EnrollmentID_idx2"; -- --- Name: hmis_assessment_details id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_assessment_details ALTER COLUMN id SET DEFAULT nextval('public.hmis_assessment_details_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_EnrollmentID_idx3"; -- --- Name: hmis_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_assessments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_EnrollmentID_idx4"; -- --- Name: hmis_case_notes id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_case_notes ALTER COLUMN id SET DEFAULT nextval('public.hmis_case_notes_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_ExportID_idx"; -- --- Name: hmis_client_alerts id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_client_alerts ALTER COLUMN id SET DEFAULT nextval('public.hmis_client_alerts_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_ExportID_idx1"; -- --- Name: hmis_client_attributes_defined_text id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_client_attributes_defined_text ALTER COLUMN id SET DEFAULT nextval('public.hmis_client_attributes_defined_text_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_ExportID_idx2"; -- --- Name: hmis_client_merge_audits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_client_merge_audits ALTER COLUMN id SET DEFAULT nextval('public.hmis_client_merge_audits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_ExportID_idx3"; -- --- Name: hmis_client_merge_histories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_client_merge_histories ALTER COLUMN id SET DEFAULT nextval('public.hmis_client_merge_histories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_ExportID_idx4"; -- --- Name: hmis_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_PersonalID_idx"; -- --- Name: hmis_csv_2020_affiliations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_affiliations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_affiliations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_PersonalID_idx1"; -- --- Name: hmis_csv_2020_assessment_questions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_assessment_questions ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_assessment_questions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_PersonalID_idx2"; -- --- Name: hmis_csv_2020_assessment_results id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_assessment_results ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_assessment_results_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_PersonalID_idx3"; -- --- Name: hmis_csv_2020_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_assessments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_PersonalID_idx4"; -- --- Name: hmis_csv_2020_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx"; -- --- Name: hmis_csv_2020_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_current_living_situations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx1"; -- --- Name: hmis_csv_2020_disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_disabilities ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_disabilities_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx2"; -- --- Name: hmis_csv_2020_employment_educations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_employment_educations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_employment_educations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx3"; -- --- Name: hmis_csv_2020_enrollment_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_enrollment_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_enrollment_cocs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_DateDeleted_idx4"; -- --- Name: hmis_csv_2020_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_DateProvided_idx"; -- --- Name: hmis_csv_2020_events id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_events_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_DateProvided_idx1"; -- --- Name: hmis_csv_2020_exits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_exits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_DateProvided_idx2"; -- --- Name: hmis_csv_2020_exports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_exports ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_exports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_DateProvided_idx3"; -- --- Name: hmis_csv_2020_funders id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_funders ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_funders_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_DateProvided_idx4"; -- --- Name: hmis_csv_2020_health_and_dvs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_health_and_dvs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_health_and_dvs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_idx"; -- --- Name: hmis_csv_2020_income_benefits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_income_benefits ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_income_benefits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_idx1"; -- --- Name: hmis_csv_2020_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_inventories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_idx2"; -- --- Name: hmis_csv_2020_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_organizations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_organizations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_idx3"; -- --- Name: hmis_csv_2020_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_project_cocs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_RecordType_idx4"; -- --- Name: hmis_csv_2020_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_projects ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_projects_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_ServicesID_data_source_id_idx"; -- --- Name: hmis_csv_2020_services id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_services ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_services_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_ServicesID_idx"; -- --- Name: hmis_csv_2020_users id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_users ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2020_users_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_ServicesID_idx1"; -- --- Name: hmis_csv_2022_affiliations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_affiliations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_affiliations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_ServicesID_idx2"; -- --- Name: hmis_csv_2022_assessment_questions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_assessment_questions ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_assessment_questions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_ServicesID_idx3"; -- --- Name: hmis_csv_2022_assessment_results id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_assessment_results ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_assessment_results_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_15_ServicesID_idx4"; -- --- Name: hmis_csv_2022_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_assessments_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_15_importer_log_id_idx; -- --- Name: hmis_csv_2022_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_clients_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_15_pkey; -- --- Name: hmis_csv_2022_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_15_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_current_living_situations_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_15_source_type_source_id_idx; -- --- Name: hmis_csv_2022_disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_disabilities ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_disabilities_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateCreated_idx"; -- --- Name: hmis_csv_2022_employment_educations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_employment_educations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_employment_educations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateCreated_idx1"; -- --- Name: hmis_csv_2022_enrollment_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_enrollment_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_enrollment_cocs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateCreated_idx2"; -- --- Name: hmis_csv_2022_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateCreated_idx3"; -- --- Name: hmis_csv_2022_events id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_events_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateCreated_idx4"; -- --- Name: hmis_csv_2022_exits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_exits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateDeleted_idx"; -- --- Name: hmis_csv_2022_exports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_exports ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_exports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateDeleted_idx1"; -- --- Name: hmis_csv_2022_funders id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_funders ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_funders_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateDeleted_idx2"; -- --- Name: hmis_csv_2022_health_and_dvs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_health_and_dvs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_health_and_dvs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateDeleted_idx3"; -- --- Name: hmis_csv_2022_income_benefits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_income_benefits ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_income_benefits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateDeleted_idx4"; -- --- Name: hmis_csv_2022_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_inventories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateProvided_idx"; -- --- Name: hmis_csv_2022_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_organizations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_organizations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateProvided_idx1"; -- --- Name: hmis_csv_2022_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_project_cocs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateProvided_idx2"; -- --- Name: hmis_csv_2022_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_projects ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_projects_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateProvided_idx3"; -- --- Name: hmis_csv_2022_services id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_services ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_services_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateProvided_idx4"; -- --- Name: hmis_csv_2022_users id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_users ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_users_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateUpdated_idx"; -- --- Name: hmis_csv_2022_youth_education_statuses id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_youth_education_statuses ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2022_youth_education_statuses_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateUpdated_idx1"; -- --- Name: hmis_csv_2024_affiliations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_affiliations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_affiliations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateUpdated_idx2"; -- --- Name: hmis_csv_2024_assessment_questions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_assessment_questions ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_assessment_questions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateUpdated_idx3"; -- --- Name: hmis_csv_2024_assessment_results id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_assessment_results ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_assessment_results_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_DateUpdated_idx4"; -- --- Name: hmis_csv_2024_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_assessments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_csv_2024_ce_participations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_ce_participations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_ce_participations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_csv_2024_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis_csv_2024_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_current_living_situations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis_csv_2024_disabilities id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_disabilities ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_disabilities_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis_csv_2024_employment_educations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_employment_educations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_employment_educations_id_seq'::regclass); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis_csv_2024_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_EnrollmentID_idx"; -- --- Name: hmis_csv_2024_events id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_events_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_EnrollmentID_idx1"; -- --- Name: hmis_csv_2024_exits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_exits ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_exits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_EnrollmentID_idx2"; -- --- Name: hmis_csv_2024_exports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_exports ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_exports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_EnrollmentID_idx3"; -- --- Name: hmis_csv_2024_funders id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_funders ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_funders_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_EnrollmentID_idx4"; -- --- Name: hmis_csv_2024_health_and_dvs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_health_and_dvs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_health_and_dvs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_ExportID_idx"; -- --- Name: hmis_csv_2024_hmis_participations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_hmis_participations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_hmis_participations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_ExportID_idx1"; -- --- Name: hmis_csv_2024_income_benefits id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_income_benefits ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_income_benefits_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_ExportID_idx2"; -- --- Name: hmis_csv_2024_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_inventories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_ExportID_idx3"; -- --- Name: hmis_csv_2024_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_organizations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_organizations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_ExportID_idx4"; -- --- Name: hmis_csv_2024_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_project_cocs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_PersonalID_idx"; -- --- Name: hmis_csv_2024_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_projects ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_projects_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_PersonalID_idx1"; -- --- Name: hmis_csv_2024_services id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_services ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_services_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_PersonalID_idx2"; -- --- Name: hmis_csv_2024_users id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_users ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_users_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_PersonalID_idx3"; -- --- Name: hmis_csv_2024_youth_education_statuses id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_youth_education_statuses ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_2024_youth_education_statuses_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_PersonalID_idx4"; -- --- Name: hmis_csv_import_errors id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_import_errors ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_import_errors_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx"; -- --- Name: hmis_csv_import_validations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_import_validations ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_import_validations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx1"; -- --- Name: hmis_csv_importer_logs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_importer_logs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_importer_logs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx2"; -- --- Name: hmis_csv_load_errors id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_load_errors ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_load_errors_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx3"; -- --- Name: hmis_csv_loader_logs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_loader_logs ALTER COLUMN id SET DEFAULT nextval('public.hmis_csv_loader_logs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_DateDeleted_idx4"; -- --- Name: hmis_dqt_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_assessments ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_assessments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_DateProvided_idx"; -- --- Name: hmis_dqt_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_DateProvided_idx1"; -- --- Name: hmis_dqt_current_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_current_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_current_living_situations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_DateProvided_idx2"; -- --- Name: hmis_dqt_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_DateProvided_idx3"; -- --- Name: hmis_dqt_events id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_events ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_events_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_DateProvided_idx4"; -- --- Name: hmis_dqt_goals id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_goals ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_goals_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_idx"; -- --- Name: hmis_dqt_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_inventories ALTER COLUMN id SET DEFAULT nextval('public.hmis_dqt_inventories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_idx1"; -- --- Name: hmis_external_form_publications id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_form_publications ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_form_publications_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_idx2"; -- --- Name: hmis_external_form_submissions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_form_submissions ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_form_submissions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_idx3"; -- --- Name: hmis_external_referral_household_members id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_referral_household_members ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_referral_household_members_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_RecordType_idx4"; -- --- Name: hmis_external_referral_postings id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_referral_postings ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_referral_postings_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_ServicesID_data_source_id_idx"; -- --- Name: hmis_external_referral_requests id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_referral_requests ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_referral_requests_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_ServicesID_idx"; -- --- Name: hmis_external_referrals id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_referrals ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_referrals_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_ServicesID_idx1"; -- --- Name: hmis_external_unit_availability_syncs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_unit_availability_syncs ALTER COLUMN id SET DEFAULT nextval('public.hmis_external_unit_availability_syncs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_ServicesID_idx2"; -- --- Name: hmis_form_definitions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_form_definitions ALTER COLUMN id SET DEFAULT nextval('public.hmis_form_definitions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_ServicesID_idx3"; -- --- Name: hmis_form_instances id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_form_instances ALTER COLUMN id SET DEFAULT nextval('public.hmis_form_instances_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_16_ServicesID_idx4"; -- --- Name: hmis_form_processors id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_form_processors ALTER COLUMN id SET DEFAULT nextval('public.hmis_form_processors_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_16_importer_log_id_idx; -- --- Name: hmis_forms id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_forms ALTER COLUMN id SET DEFAULT nextval('public.hmis_forms_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_16_pkey; -- --- Name: hmis_group_viewable_entities id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_16_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_group_viewable_entities ALTER COLUMN id SET DEFAULT nextval('public.hmis_group_viewable_entities_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_16_source_type_source_id_idx; -- --- Name: hmis_import_configs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_import_configs ALTER COLUMN id SET DEFAULT nextval('public.hmis_import_configs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateCreated_idx"; -- --- Name: hmis_project_configs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_project_configs ALTER COLUMN id SET DEFAULT nextval('public.hmis_project_configs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateCreated_idx1"; -- --- Name: hmis_project_unit_type_mappings id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_project_unit_type_mappings ALTER COLUMN id SET DEFAULT nextval('public.hmis_project_unit_type_mappings_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateCreated_idx2"; -- --- Name: hmis_scan_card_codes id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_scan_card_codes ALTER COLUMN id SET DEFAULT nextval('public.hmis_scan_card_codes_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateCreated_idx3"; -- --- Name: hmis_staff id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_staff ALTER COLUMN id SET DEFAULT nextval('public.hmis_staff_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateCreated_idx4"; -- --- Name: hmis_staff_assignment_relationships id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_staff_assignment_relationships ALTER COLUMN id SET DEFAULT nextval('public.hmis_staff_assignment_relationships_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateDeleted_idx"; -- --- Name: hmis_staff_assignments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_staff_assignments ALTER COLUMN id SET DEFAULT nextval('public.hmis_staff_assignments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateDeleted_idx1"; -- --- Name: hmis_staff_x_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_staff_x_clients ALTER COLUMN id SET DEFAULT nextval('public.hmis_staff_x_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateDeleted_idx2"; -- --- Name: hmis_supplemental_data_sets id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_supplemental_data_sets ALTER COLUMN id SET DEFAULT nextval('public.hmis_supplemental_data_sets_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateDeleted_idx3"; -- --- Name: hmis_supplemental_field_values id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_supplemental_field_values ALTER COLUMN id SET DEFAULT nextval('public.hmis_supplemental_field_values_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateDeleted_idx4"; -- --- Name: hmis_unit_occupancy id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_unit_occupancy ALTER COLUMN id SET DEFAULT nextval('public.hmis_unit_occupancy_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateProvided_idx"; -- --- Name: hmis_unit_types id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_unit_types ALTER COLUMN id SET DEFAULT nextval('public.hmis_unit_types_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateProvided_idx1"; -- --- Name: hmis_units id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_units ALTER COLUMN id SET DEFAULT nextval('public.hmis_units_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateProvided_idx2"; -- --- Name: homeless_summary_report_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.homeless_summary_report_clients ALTER COLUMN id SET DEFAULT nextval('public.homeless_summary_report_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateProvided_idx3"; -- --- Name: homeless_summary_report_results id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.homeless_summary_report_results ALTER COLUMN id SET DEFAULT nextval('public.homeless_summary_report_results_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateProvided_idx4"; -- --- Name: hopwa_caper_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hopwa_caper_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hopwa_caper_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateUpdated_idx"; -- --- Name: hopwa_caper_services id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hopwa_caper_services ALTER COLUMN id SET DEFAULT nextval('public.hopwa_caper_services_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateUpdated_idx1"; -- --- Name: housing_resolution_plans id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.housing_resolution_plans ALTER COLUMN id SET DEFAULT nextval('public.housing_resolution_plans_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateUpdated_idx2"; -- --- Name: hud_chronics id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_chronics ALTER COLUMN id SET DEFAULT nextval('public.hud_chronics_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateUpdated_idx3"; -- --- Name: hud_create_logs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_create_logs ALTER COLUMN id SET DEFAULT nextval('public.hud_create_logs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_DateUpdated_idx4"; -- --- Name: hud_lsa_summary_results id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_lsa_summary_results ALTER COLUMN id SET DEFAULT nextval('public.hud_lsa_summary_results_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx"; -- --- Name: hud_report_apr_ce_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_apr_ce_assessments ALTER COLUMN id SET DEFAULT nextval('public.hud_report_apr_ce_assessments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx1"; -- --- Name: hud_report_apr_ce_events id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_apr_ce_events ALTER COLUMN id SET DEFAULT nextval('public.hud_report_apr_ce_events_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx2"; -- --- Name: hud_report_apr_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_apr_clients ALTER COLUMN id SET DEFAULT nextval('public.hud_report_apr_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx3"; -- --- Name: hud_report_apr_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_apr_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hud_report_apr_living_situations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx4"; -- --- Name: hud_report_cells id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_cells ALTER COLUMN id SET DEFAULT nextval('public.hud_report_cells_id_seq'::regclass); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_EnrollmentID_PersonalID_idx5"; -- --- Name: hud_report_dq_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_dq_clients ALTER COLUMN id SET DEFAULT nextval('public.hud_report_dq_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_EnrollmentID_idx"; -- --- Name: hud_report_dq_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_dq_living_situations ALTER COLUMN id SET DEFAULT nextval('public.hud_report_dq_living_situations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_EnrollmentID_idx1"; -- --- Name: hud_report_hic_funders id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_hic_funders ALTER COLUMN id SET DEFAULT nextval('public.hud_report_hic_funders_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_EnrollmentID_idx2"; -- --- Name: hud_report_hic_inventories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_hic_inventories ALTER COLUMN id SET DEFAULT nextval('public.hud_report_hic_inventories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_EnrollmentID_idx3"; -- --- Name: hud_report_hic_organizations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_hic_organizations ALTER COLUMN id SET DEFAULT nextval('public.hud_report_hic_organizations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_EnrollmentID_idx4"; -- --- Name: hud_report_hic_project_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_hic_project_cocs ALTER COLUMN id SET DEFAULT nextval('public.hud_report_hic_project_cocs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_ExportID_idx"; -- --- Name: hud_report_hic_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_hic_projects ALTER COLUMN id SET DEFAULT nextval('public.hud_report_hic_projects_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_ExportID_idx1"; -- --- Name: hud_report_instances id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_instances ALTER COLUMN id SET DEFAULT nextval('public.hud_report_instances_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_ExportID_idx2"; -- --- Name: hud_report_path_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_path_clients ALTER COLUMN id SET DEFAULT nextval('public.hud_report_path_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_ExportID_idx3"; -- --- Name: hud_report_pit_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_pit_clients ALTER COLUMN id SET DEFAULT nextval('public.hud_report_pit_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_ExportID_idx4"; -- --- Name: hud_report_spm_bed_nights id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_spm_bed_nights ALTER COLUMN id SET DEFAULT nextval('public.hud_report_spm_bed_nights_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_PersonalID_idx"; -- --- Name: hud_report_spm_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_spm_clients ALTER COLUMN id SET DEFAULT nextval('public.hud_report_spm_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_PersonalID_idx1"; -- --- Name: hud_report_spm_enrollment_links id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_spm_enrollment_links ALTER COLUMN id SET DEFAULT nextval('public.hud_report_spm_enrollment_links_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_PersonalID_idx2"; -- --- Name: hud_report_spm_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_spm_enrollments ALTER COLUMN id SET DEFAULT nextval('public.hud_report_spm_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_PersonalID_idx3"; -- --- Name: hud_report_spm_episodes id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_spm_episodes ALTER COLUMN id SET DEFAULT nextval('public.hud_report_spm_episodes_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_PersonalID_idx4"; -- --- Name: hud_report_spm_returns id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_spm_returns ALTER COLUMN id SET DEFAULT nextval('public.hud_report_spm_returns_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx"; -- --- Name: hud_report_universe_members id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_universe_members ALTER COLUMN id SET DEFAULT nextval('public.hud_report_universe_members_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx1"; -- --- Name: identify_duplicates_log id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.identify_duplicates_log ALTER COLUMN id SET DEFAULT nextval('public.identify_duplicates_log_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx2"; -- --- Name: import_logs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.import_logs ALTER COLUMN id SET DEFAULT nextval('public.import_logs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx3"; -- --- Name: import_overrides id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.import_overrides ALTER COLUMN id SET DEFAULT nextval('public.import_overrides_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_DateDeleted_idx4"; -- --- Name: inbound_api_configurations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.inbound_api_configurations ALTER COLUMN id SET DEFAULT nextval('public.inbound_api_configurations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_DateProvided_idx"; -- --- Name: income_benefits_report_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.income_benefits_report_clients ALTER COLUMN id SET DEFAULT nextval('public.income_benefits_report_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_DateProvided_idx1"; -- --- Name: income_benefits_report_incomes id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.income_benefits_report_incomes ALTER COLUMN id SET DEFAULT nextval('public.income_benefits_report_incomes_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_DateProvided_idx2"; -- --- Name: income_benefits_reports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.income_benefits_reports ALTER COLUMN id SET DEFAULT nextval('public.income_benefits_reports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_DateProvided_idx3"; -- --- Name: internal_systems id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.internal_systems ALTER COLUMN id SET DEFAULT nextval('public.internal_systems_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_DateProvided_idx4"; -- --- Name: involved_in_imports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.involved_in_imports ALTER COLUMN id SET DEFAULT nextval('public.involved_in_imports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_idx"; -- --- Name: lftp_s3_syncs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lftp_s3_syncs ALTER COLUMN id SET DEFAULT nextval('public.lftp_s3_syncs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_idx1"; -- --- Name: longitudinal_spm_results id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.longitudinal_spm_results ALTER COLUMN id SET DEFAULT nextval('public.longitudinal_spm_results_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_idx2"; -- --- Name: longitudinal_spm_spms id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.longitudinal_spm_spms ALTER COLUMN id SET DEFAULT nextval('public.longitudinal_spm_spms_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_idx3"; -- --- Name: longitudinal_spms id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.longitudinal_spms ALTER COLUMN id SET DEFAULT nextval('public.longitudinal_spms_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_RecordType_idx4"; -- --- Name: lookups_ethnicities id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_ethnicities ALTER COLUMN id SET DEFAULT nextval('public.lookups_ethnicities_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_ServicesID_data_source_id_idx"; -- --- Name: lookups_funding_sources id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_funding_sources ALTER COLUMN id SET DEFAULT nextval('public.lookups_funding_sources_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_ServicesID_idx"; -- --- Name: lookups_genders id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_genders ALTER COLUMN id SET DEFAULT nextval('public.lookups_genders_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_ServicesID_idx1"; -- --- Name: lookups_living_situations id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_living_situations ALTER COLUMN id SET DEFAULT nextval('public.lookups_living_situations_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_ServicesID_idx2"; -- --- Name: lookups_project_types id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_project_types ALTER COLUMN id SET DEFAULT nextval('public.lookups_project_types_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_ServicesID_idx3"; -- --- Name: lookups_relationships id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_relationships ALTER COLUMN id SET DEFAULT nextval('public.lookups_relationships_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_17_ServicesID_idx4"; -- --- Name: lookups_tracking_methods id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_tracking_methods ALTER COLUMN id SET DEFAULT nextval('public.lookups_tracking_methods_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_17_importer_log_id_idx; -- --- Name: lookups_yes_no_etcs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_yes_no_etcs ALTER COLUMN id SET DEFAULT nextval('public.lookups_yes_no_etcs_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_17_pkey; -- --- Name: lsa_rds_state_logs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_17_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lsa_rds_state_logs ALTER COLUMN id SET DEFAULT nextval('public.lsa_rds_state_logs_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_17_source_type_source_id_idx; -- --- Name: ma_monthly_performance_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ma_monthly_performance_enrollments ALTER COLUMN id SET DEFAULT nextval('public.ma_monthly_performance_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateCreated_idx"; -- --- Name: ma_monthly_performance_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ma_monthly_performance_projects ALTER COLUMN id SET DEFAULT nextval('public.ma_monthly_performance_projects_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateCreated_idx1"; -- --- Name: ma_yya_report_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ma_yya_report_clients ALTER COLUMN id SET DEFAULT nextval('public.ma_yya_report_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateCreated_idx2"; -- --- Name: new_service_history id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.new_service_history ALTER COLUMN id SET DEFAULT nextval('public.new_service_history_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateCreated_idx3"; -- --- Name: nightly_census_by_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.nightly_census_by_projects ALTER COLUMN id SET DEFAULT nextval('public.nightly_census_by_projects_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateCreated_idx4"; -- --- Name: non_hmis_uploads id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.non_hmis_uploads ALTER COLUMN id SET DEFAULT nextval('public.non_hmis_uploads_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateDeleted_idx"; -- --- Name: performance_measurement_goals id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.performance_measurement_goals ALTER COLUMN id SET DEFAULT nextval('public.performance_measurement_goals_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateDeleted_idx1"; -- --- Name: performance_metrics_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.performance_metrics_clients ALTER COLUMN id SET DEFAULT nextval('public.performance_metrics_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateDeleted_idx2"; -- --- Name: places id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.places ALTER COLUMN id SET DEFAULT nextval('public.places_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateDeleted_idx3"; -- --- Name: pm_client_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.pm_client_projects ALTER COLUMN id SET DEFAULT nextval('public.pm_client_projects_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateDeleted_idx4"; -- --- Name: pm_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.pm_clients ALTER COLUMN id SET DEFAULT nextval('public.pm_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateProvided_idx"; -- --- Name: pm_coc_static_spms id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.pm_coc_static_spms ALTER COLUMN id SET DEFAULT nextval('public.pm_coc_static_spms_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateProvided_idx1"; -- --- Name: pm_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.pm_projects ALTER COLUMN id SET DEFAULT nextval('public.pm_projects_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateProvided_idx2"; -- --- Name: pm_results id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.pm_results ALTER COLUMN id SET DEFAULT nextval('public.pm_results_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateProvided_idx3"; -- --- Name: project_data_quality id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_data_quality ALTER COLUMN id SET DEFAULT nextval('public.project_data_quality_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateProvided_idx4"; -- --- Name: project_groups id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_groups ALTER COLUMN id SET DEFAULT nextval('public.project_groups_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateUpdated_idx"; -- --- Name: project_pass_fails id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_pass_fails ALTER COLUMN id SET DEFAULT nextval('public.project_pass_fails_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateUpdated_idx1"; -- --- Name: project_pass_fails_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_pass_fails_clients ALTER COLUMN id SET DEFAULT nextval('public.project_pass_fails_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateUpdated_idx2"; -- --- Name: project_pass_fails_projects id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_pass_fails_projects ALTER COLUMN id SET DEFAULT nextval('public.project_pass_fails_projects_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateUpdated_idx3"; -- --- Name: project_project_groups id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_project_groups ALTER COLUMN id SET DEFAULT nextval('public.project_project_groups_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_DateUpdated_idx4"; -- --- Name: project_scorecard_reports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_scorecard_reports ALTER COLUMN id SET DEFAULT nextval('public.project_scorecard_reports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx"; -- --- Name: psc_feedback_surveys id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.psc_feedback_surveys ALTER COLUMN id SET DEFAULT nextval('public.psc_feedback_surveys_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx1"; -- --- Name: public_report_reports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.public_report_reports ALTER COLUMN id SET DEFAULT nextval('public.public_report_reports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx2"; -- --- Name: public_report_settings id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.public_report_settings ALTER COLUMN id SET DEFAULT nextval('public.public_report_settings_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx3"; -- --- Name: published_reports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.published_reports ALTER COLUMN id SET DEFAULT nextval('public.published_reports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx4"; -- --- Name: recent_items id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.recent_items ALTER COLUMN id SET DEFAULT nextval('public.recent_items_id_seq'::regclass); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_EnrollmentID_PersonalID_idx5"; -- --- Name: recurring_hmis_export_links id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.recurring_hmis_export_links ALTER COLUMN id SET DEFAULT nextval('public.recurring_hmis_export_links_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_EnrollmentID_idx"; -- --- Name: recurring_hmis_exports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.recurring_hmis_exports ALTER COLUMN id SET DEFAULT nextval('public.recurring_hmis_exports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_EnrollmentID_idx1"; -- --- Name: remote_configs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.remote_configs ALTER COLUMN id SET DEFAULT nextval('public.remote_configs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_EnrollmentID_idx2"; -- --- Name: remote_credentials id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.remote_credentials ALTER COLUMN id SET DEFAULT nextval('public.remote_credentials_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_EnrollmentID_idx3"; -- --- Name: report_definitions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.report_definitions ALTER COLUMN id SET DEFAULT nextval('public.report_definitions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_EnrollmentID_idx4"; -- --- Name: report_tokens id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.report_tokens ALTER COLUMN id SET DEFAULT nextval('public.report_tokens_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_ExportID_idx"; -- --- Name: secure_files id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.secure_files ALTER COLUMN id SET DEFAULT nextval('public.secure_files_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_ExportID_idx1"; -- --- Name: service_history_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_enrollments ALTER COLUMN id SET DEFAULT nextval('public.service_history_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_ExportID_idx2"; -- --- Name: service_history_services_was_for_inheritance id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_was_for_inheritance ALTER COLUMN id SET DEFAULT nextval('public.service_history_services_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_ExportID_idx3"; -- --- Name: service_scanning_scanner_ids id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_scanning_scanner_ids ALTER COLUMN id SET DEFAULT nextval('public.service_scanning_scanner_ids_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_ExportID_idx4"; -- --- Name: service_scanning_services id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_scanning_services ALTER COLUMN id SET DEFAULT nextval('public.service_scanning_services_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_PersonalID_idx"; -- --- Name: shape_block_groups id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_block_groups ALTER COLUMN id SET DEFAULT nextval('public.shape_block_groups_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_PersonalID_idx1"; -- --- Name: shape_cocs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_cocs ALTER COLUMN id SET DEFAULT nextval('public.shape_cocs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_PersonalID_idx2"; -- --- Name: shape_counties id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_counties ALTER COLUMN id SET DEFAULT nextval('public.shape_counties_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_PersonalID_idx3"; -- --- Name: shape_places id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_places ALTER COLUMN id SET DEFAULT nextval('public.shape_places_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_PersonalID_idx4"; -- --- Name: shape_states id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_states ALTER COLUMN id SET DEFAULT nextval('public.shape_states_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx"; -- --- Name: shape_towns id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_towns ALTER COLUMN id SET DEFAULT nextval('public.shape_towns_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx1"; -- --- Name: shape_zip_codes id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_zip_codes ALTER COLUMN id SET DEFAULT nextval('public.shape_zip_codes_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx2"; -- --- Name: simple_report_cells id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.simple_report_cells ALTER COLUMN id SET DEFAULT nextval('public.simple_report_cells_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx3"; -- --- Name: simple_report_instances id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.simple_report_instances ALTER COLUMN id SET DEFAULT nextval('public.simple_report_instances_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_DateDeleted_idx4"; -- --- Name: simple_report_universe_members id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.simple_report_universe_members ALTER COLUMN id SET DEFAULT nextval('public.simple_report_universe_members_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_DateProvided_idx"; -- --- Name: synthetic_assessments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.synthetic_assessments ALTER COLUMN id SET DEFAULT nextval('public.synthetic_assessments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_DateProvided_idx1"; -- --- Name: synthetic_ce_assessment_project_configs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.synthetic_ce_assessment_project_configs ALTER COLUMN id SET DEFAULT nextval('public.synthetic_ce_assessment_project_configs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_DateProvided_idx2"; -- --- Name: synthetic_events id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.synthetic_events ALTER COLUMN id SET DEFAULT nextval('public.synthetic_events_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_DateProvided_idx3"; -- --- Name: synthetic_youth_education_statuses id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.synthetic_youth_education_statuses ALTER COLUMN id SET DEFAULT nextval('public.synthetic_youth_education_statuses_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_DateProvided_idx4"; -- --- Name: system_colors id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.system_colors ALTER COLUMN id SET DEFAULT nextval('public.system_colors_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_idx"; -- --- Name: system_pathways_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.system_pathways_clients ALTER COLUMN id SET DEFAULT nextval('public.system_pathways_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_idx1"; -- --- Name: system_pathways_enrollments id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.system_pathways_enrollments ALTER COLUMN id SET DEFAULT nextval('public.system_pathways_enrollments_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_idx2"; -- --- Name: taggings id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.taggings ALTER COLUMN id SET DEFAULT nextval('public.taggings_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_idx3"; -- --- Name: tags id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.tags ALTER COLUMN id SET DEFAULT nextval('public.tags_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_RecordType_idx4"; -- --- Name: talentlms_completed_trainings id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.talentlms_completed_trainings ALTER COLUMN id SET DEFAULT nextval('public.talentlms_completed_trainings_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_ServicesID_data_source_id_idx"; -- --- Name: talentlms_configs id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.talentlms_configs ALTER COLUMN id SET DEFAULT nextval('public.talentlms_configs_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_ServicesID_idx"; -- --- Name: talentlms_courses id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.talentlms_courses ALTER COLUMN id SET DEFAULT nextval('public.talentlms_courses_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_ServicesID_idx1"; -- --- Name: talentlms_logins id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.talentlms_logins ALTER COLUMN id SET DEFAULT nextval('public.talentlms_logins_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_ServicesID_idx2"; -- --- Name: text_message_messages id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.text_message_messages ALTER COLUMN id SET DEFAULT nextval('public.text_message_messages_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_ServicesID_idx3"; -- --- Name: text_message_topic_subscribers id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.text_message_topic_subscribers ALTER COLUMN id SET DEFAULT nextval('public.text_message_topic_subscribers_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_18_ServicesID_idx4"; -- --- Name: text_message_topics id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.text_message_topics ALTER COLUMN id SET DEFAULT nextval('public.text_message_topics_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_18_importer_log_id_idx; -- --- Name: themes id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.themes ALTER COLUMN id SET DEFAULT nextval('public.themes_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_18_pkey; -- --- Name: tx_research_exports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_18_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.tx_research_exports ALTER COLUMN id SET DEFAULT nextval('public.tx_research_exports_id_seq'::regclass); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_18_source_type_source_id_idx; -- --- Name: uploads id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.uploads ALTER COLUMN id SET DEFAULT nextval('public.uploads_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateCreated_idx"; -- --- Name: user_client_permissions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.user_client_permissions ALTER COLUMN id SET DEFAULT nextval('public.user_client_permissions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateCreated_idx1"; -- --- Name: user_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.user_clients ALTER COLUMN id SET DEFAULT nextval('public.user_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateCreated_idx2"; -- --- Name: user_viewable_entities id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.user_viewable_entities ALTER COLUMN id SET DEFAULT nextval('public.user_viewable_entities_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateCreated_idx3"; -- --- Name: va_check_histories id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.va_check_histories ALTER COLUMN id SET DEFAULT nextval('public.va_check_histories_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateCreated_idx4"; -- --- Name: verification_sources id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.verification_sources ALTER COLUMN id SET DEFAULT nextval('public.verification_sources_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateDeleted_idx"; -- --- Name: versions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.versions ALTER COLUMN id SET DEFAULT nextval('public.versions_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateDeleted_idx1"; -- --- Name: vispdats id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.vispdats ALTER COLUMN id SET DEFAULT nextval('public.vispdats_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateDeleted_idx2"; -- --- Name: warehouse_client_service_history id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.warehouse_client_service_history ALTER COLUMN id SET DEFAULT nextval('public.warehouse_client_service_history_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateDeleted_idx3"; -- --- Name: warehouse_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.warehouse_clients ALTER COLUMN id SET DEFAULT nextval('public.warehouse_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateDeleted_idx4"; -- --- Name: warehouse_clients_processed id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.warehouse_clients_processed ALTER COLUMN id SET DEFAULT nextval('public.warehouse_clients_processed_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateProvided_idx"; -- --- Name: warehouse_reports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.warehouse_reports ALTER COLUMN id SET DEFAULT nextval('public.warehouse_reports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateProvided_idx1"; -- --- Name: weather id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.weather ALTER COLUMN id SET DEFAULT nextval('public.weather_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateProvided_idx2"; -- --- Name: whitelisted_projects_for_clients id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.whitelisted_projects_for_clients ALTER COLUMN id SET DEFAULT nextval('public.whitelisted_projects_for_clients_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateProvided_idx3"; -- --- Name: youth_case_managements id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.youth_case_managements ALTER COLUMN id SET DEFAULT nextval('public.youth_case_managements_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateProvided_idx4"; -- --- Name: youth_exports id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.youth_exports ALTER COLUMN id SET DEFAULT nextval('public.youth_exports_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateUpdated_idx"; -- --- Name: youth_follow_ups id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.youth_follow_ups ALTER COLUMN id SET DEFAULT nextval('public.youth_follow_ups_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateUpdated_idx1"; -- --- Name: youth_intakes id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.youth_intakes ALTER COLUMN id SET DEFAULT nextval('public.youth_intakes_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateUpdated_idx2"; -- --- Name: youth_referrals id; Type: DEFAULT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.youth_referrals ALTER COLUMN id SET DEFAULT nextval('public.youth_referrals_id_seq'::regclass); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateUpdated_idx3"; -- --- Name: Affiliation Affiliation_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Affiliation" - ADD CONSTRAINT "Affiliation_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_DateUpdated_idx4"; -- --- Name: AssessmentQuestions AssessmentQuestions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."AssessmentQuestions" - ADD CONSTRAINT "AssessmentQuestions_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx"; -- --- Name: AssessmentResults AssessmentResults_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."AssessmentResults" - ADD CONSTRAINT "AssessmentResults_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx1"; -- --- Name: Assessment Assessment_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Assessment" - ADD CONSTRAINT "Assessment_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx2"; -- --- Name: CEParticipation CEParticipation_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CEParticipation" - ADD CONSTRAINT "CEParticipation_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx3"; -- --- Name: ClientUnencrypted ClientUnencrypted_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."ClientUnencrypted" - ADD CONSTRAINT "ClientUnencrypted_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx4"; -- --- Name: Client Client_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Client" - ADD CONSTRAINT "Client_pkey" PRIMARY KEY (id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_EnrollmentID_PersonalID_idx5"; -- --- Name: CurrentLivingSituation CurrentLivingSituation_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CurrentLivingSituation" - ADD CONSTRAINT "CurrentLivingSituation_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_EnrollmentID_idx"; -- --- Name: CustomAssessments CustomAssessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomAssessments" - ADD CONSTRAINT "CustomAssessments_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_EnrollmentID_idx1"; -- --- Name: CustomCaseNote CustomCaseNote_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomCaseNote" - ADD CONSTRAINT "CustomCaseNote_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_EnrollmentID_idx2"; -- --- Name: CustomClientAddress CustomClientAddress_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomClientAddress" - ADD CONSTRAINT "CustomClientAddress_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_EnrollmentID_idx3"; -- --- Name: CustomClientAssessments CustomClientAssessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomClientAssessments" - ADD CONSTRAINT "CustomClientAssessments_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_EnrollmentID_idx4"; -- --- Name: CustomClientContactPoint CustomClientContactPoint_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomClientContactPoint" - ADD CONSTRAINT "CustomClientContactPoint_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_ExportID_idx"; -- --- Name: CustomClientName CustomClientName_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomClientName" - ADD CONSTRAINT "CustomClientName_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_ExportID_idx1"; -- --- Name: CustomDataElementDefinitions CustomDataElementDefinitions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomDataElementDefinitions" - ADD CONSTRAINT "CustomDataElementDefinitions_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_ExportID_idx2"; -- --- Name: CustomDataElements CustomDataElements_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomDataElements" - ADD CONSTRAINT "CustomDataElements_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_ExportID_idx3"; -- --- Name: CustomProjectAssessments CustomProjectAssessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomProjectAssessments" - ADD CONSTRAINT "CustomProjectAssessments_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_ExportID_idx4"; -- --- Name: CustomServiceCategories CustomServiceCategories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomServiceCategories" - ADD CONSTRAINT "CustomServiceCategories_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_PersonalID_idx"; -- --- Name: CustomServiceTypes CustomServiceTypes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomServiceTypes" - ADD CONSTRAINT "CustomServiceTypes_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_PersonalID_idx1"; -- --- Name: CustomServices CustomServices_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."CustomServices" - ADD CONSTRAINT "CustomServices_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_PersonalID_idx2"; -- --- Name: Disabilities Disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Disabilities" - ADD CONSTRAINT "Disabilities_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_PersonalID_idx3"; -- --- Name: EmploymentEducation EmploymentEducation_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."EmploymentEducation" - ADD CONSTRAINT "EmploymentEducation_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_PersonalID_idx4"; -- --- Name: EnrollmentCoC EnrollmentCoC_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."EnrollmentCoC" - ADD CONSTRAINT "EnrollmentCoC_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx"; -- --- Name: Enrollment Enrollment_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Enrollment" - ADD CONSTRAINT "Enrollment_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx1"; -- --- Name: Event Event_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Event" - ADD CONSTRAINT "Event_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx2"; -- --- Name: Exit Exit_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Exit" - ADD CONSTRAINT "Exit_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx3"; -- --- Name: Export Export_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Export" - ADD CONSTRAINT "Export_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_DateDeleted_idx4"; -- --- Name: Funder Funder_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Funder" - ADD CONSTRAINT "Funder_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_DateProvided_idx"; -- --- Name: Geography Geography_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Geography" - ADD CONSTRAINT "Geography_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_DateProvided_idx1"; -- --- Name: HMISParticipation HMISParticipation_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."HMISParticipation" - ADD CONSTRAINT "HMISParticipation_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_DateProvided_idx2"; -- --- Name: HealthAndDV HealthAndDV_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."HealthAndDV" - ADD CONSTRAINT "HealthAndDV_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_DateProvided_idx3"; -- --- Name: IncomeBenefits IncomeBenefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."IncomeBenefits" - ADD CONSTRAINT "IncomeBenefits_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_DateProvided_idx4"; -- --- Name: Inventory Inventory_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Inventory" - ADD CONSTRAINT "Inventory_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_idx"; -- --- Name: Organization Organization_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Organization" - ADD CONSTRAINT "Organization_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_idx1"; -- --- Name: ProjectCoC ProjectCoC_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."ProjectCoC" - ADD CONSTRAINT "ProjectCoC_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_idx2"; -- --- Name: Project Project_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Project" - ADD CONSTRAINT "Project_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_idx3"; -- --- Name: Services Services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."Services" - ADD CONSTRAINT "Services_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_RecordType_idx4"; -- --- Name: User User_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."User" - ADD CONSTRAINT "User_pkey" PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_ServicesID_data_source_id_idx"; -- --- Name: YouthEducationStatus YouthEducationStatus_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public."YouthEducationStatus" - ADD CONSTRAINT "YouthEducationStatus_pkey" PRIMARY KEY (id); - +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_ServicesID_idx"; + -- --- Name: ac_hmis_projects_import_attempts ac_hmis_projects_import_attempts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ac_hmis_projects_import_attempts - ADD CONSTRAINT ac_hmis_projects_import_attempts_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_ServicesID_idx1"; -- --- Name: ad_hoc_batches ad_hoc_batches_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ad_hoc_batches - ADD CONSTRAINT ad_hoc_batches_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_ServicesID_idx2"; -- --- Name: ad_hoc_clients ad_hoc_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ad_hoc_clients - ADD CONSTRAINT ad_hoc_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_ServicesID_idx3"; -- --- Name: ad_hoc_data_sources ad_hoc_data_sources_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ad_hoc_data_sources - ADD CONSTRAINT ad_hoc_data_sources_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_19_ServicesID_idx4"; -- --- Name: administrative_events administrative_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.administrative_events - ADD CONSTRAINT administrative_events_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_19_importer_log_id_idx; -- --- Name: anomalies anomalies_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.anomalies - ADD CONSTRAINT anomalies_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_19_pkey; -- --- Name: ansd_enrollments ansd_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_19_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ansd_enrollments - ADD CONSTRAINT ansd_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_19_source_type_source_id_idx; -- --- Name: ansd_events ansd_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ansd_events - ADD CONSTRAINT ansd_events_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateCreated_idx"; -- --- Name: api_client_data_source_ids api_client_data_source_ids_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.api_client_data_source_ids - ADD CONSTRAINT api_client_data_source_ids_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateCreated_idx1"; -- --- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ar_internal_metadata - ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateCreated_idx2"; -- --- Name: assessment_answer_lookups assessment_answer_lookups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.assessment_answer_lookups - ADD CONSTRAINT assessment_answer_lookups_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateCreated_idx3"; -- --- Name: available_file_tags available_file_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.available_file_tags - ADD CONSTRAINT available_file_tags_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateCreated_idx4"; -- --- Name: bo_configs bo_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.bo_configs - ADD CONSTRAINT bo_configs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateDeleted_idx"; -- --- Name: boston_project_scorecard_reports boston_project_scorecard_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.boston_project_scorecard_reports - ADD CONSTRAINT boston_project_scorecard_reports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateDeleted_idx1"; -- --- Name: boston_report_configs boston_report_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.boston_report_configs - ADD CONSTRAINT boston_report_configs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateDeleted_idx2"; -- --- Name: cas_availabilities cas_availabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_availabilities - ADD CONSTRAINT cas_availabilities_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateDeleted_idx3"; -- --- Name: cas_ce_assessments cas_ce_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_ce_assessments - ADD CONSTRAINT cas_ce_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateDeleted_idx4"; -- --- Name: cas_enrollments cas_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_enrollments - ADD CONSTRAINT cas_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateProvided_idx"; -- --- Name: cas_houseds cas_houseds_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_houseds - ADD CONSTRAINT cas_houseds_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateProvided_idx1"; -- --- Name: cas_non_hmis_client_histories cas_non_hmis_client_histories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_non_hmis_client_histories - ADD CONSTRAINT cas_non_hmis_client_histories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateProvided_idx2"; -- --- Name: cas_programs_to_projects cas_programs_to_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_programs_to_projects - ADD CONSTRAINT cas_programs_to_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateProvided_idx3"; -- --- Name: cas_referral_events cas_referral_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_referral_events - ADD CONSTRAINT cas_referral_events_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateProvided_idx4"; -- --- Name: cas_reports cas_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_reports - ADD CONSTRAINT cas_reports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateUpdated_idx"; -- --- Name: cas_vacancies cas_vacancies_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cas_vacancies - ADD CONSTRAINT cas_vacancies_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateUpdated_idx1"; -- --- Name: ce_assessments ce_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ce_assessments - ADD CONSTRAINT ce_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateUpdated_idx2"; -- --- Name: ce_performance_ce_aprs ce_performance_ce_aprs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ce_performance_ce_aprs - ADD CONSTRAINT ce_performance_ce_aprs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateUpdated_idx3"; -- --- Name: ce_performance_clients ce_performance_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ce_performance_clients - ADD CONSTRAINT ce_performance_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_DateUpdated_idx4"; -- --- Name: ce_performance_goals ce_performance_goals_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ce_performance_goals - ADD CONSTRAINT ce_performance_goals_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx"; -- --- Name: ce_performance_results ce_performance_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ce_performance_results - ADD CONSTRAINT ce_performance_results_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx1"; -- --- Name: census_by_project_types census_by_project_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.census_by_project_types - ADD CONSTRAINT census_by_project_types_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx2"; -- --- Name: census_groups census_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.census_groups - ADD CONSTRAINT census_groups_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx3"; -- --- Name: census_values census_values_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.census_values - ADD CONSTRAINT census_values_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx4"; -- --- Name: census_variables census_variables_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.census_variables - ADD CONSTRAINT census_variables_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_EnrollmentID_PersonalID_idx5"; -- --- Name: censuses censuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.censuses - ADD CONSTRAINT censuses_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_EnrollmentID_idx"; -- --- Name: ch_enrollments ch_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ch_enrollments - ADD CONSTRAINT ch_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_EnrollmentID_idx1"; -- --- Name: children children_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.children - ADD CONSTRAINT children_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_EnrollmentID_idx2"; -- --- Name: chronics chronics_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.chronics - ADD CONSTRAINT chronics_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_EnrollmentID_idx3"; -- --- Name: clh_locations clh_locations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.clh_locations - ADD CONSTRAINT clh_locations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_EnrollmentID_idx4"; -- --- Name: client_contacts client_contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.client_contacts - ADD CONSTRAINT client_contacts_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_ExportID_idx"; -- --- Name: client_matches client_matches_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.client_matches - ADD CONSTRAINT client_matches_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_ExportID_idx1"; -- --- Name: client_merge_histories client_merge_histories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.client_merge_histories - ADD CONSTRAINT client_merge_histories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_ExportID_idx2"; -- --- Name: client_notes client_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.client_notes - ADD CONSTRAINT client_notes_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_ExportID_idx3"; -- --- Name: client_roi_authorizations client_roi_authorizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.client_roi_authorizations - ADD CONSTRAINT client_roi_authorizations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_ExportID_idx4"; -- --- Name: client_split_histories client_split_histories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.client_split_histories - ADD CONSTRAINT client_split_histories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_PersonalID_idx"; -- --- Name: coc_codes coc_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.coc_codes - ADD CONSTRAINT coc_codes_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_PersonalID_idx1"; -- --- Name: coc_pit_counts coc_pit_counts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.coc_pit_counts - ADD CONSTRAINT coc_pit_counts_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_PersonalID_idx2"; -- --- Name: cohort_client_changes cohort_client_changes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cohort_client_changes - ADD CONSTRAINT cohort_client_changes_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_PersonalID_idx3"; -- --- Name: cohort_client_notes cohort_client_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cohort_client_notes - ADD CONSTRAINT cohort_client_notes_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_PersonalID_idx4"; -- --- Name: cohort_clients cohort_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cohort_clients - ADD CONSTRAINT cohort_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx"; -- --- Name: cohort_column_options cohort_column_options_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cohort_column_options - ADD CONSTRAINT cohort_column_options_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx1"; -- --- Name: cohort_tabs cohort_tabs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cohort_tabs - ADD CONSTRAINT cohort_tabs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx2"; -- --- Name: cohorts cohorts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.cohorts - ADD CONSTRAINT cohorts_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx3"; -- --- Name: configs configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.configs - ADD CONSTRAINT configs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_DateDeleted_idx4"; -- --- Name: contacts contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.contacts - ADD CONSTRAINT contacts_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_DateProvided_idx"; -- --- Name: csg_engage_agencies csg_engage_agencies_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.csg_engage_agencies - ADD CONSTRAINT csg_engage_agencies_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_DateProvided_idx1"; -- --- Name: csg_engage_program_mappings csg_engage_program_mappings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.csg_engage_program_mappings - ADD CONSTRAINT csg_engage_program_mappings_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_DateProvided_idx2"; -- --- Name: csg_engage_program_reports csg_engage_program_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.csg_engage_program_reports - ADD CONSTRAINT csg_engage_program_reports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_DateProvided_idx3"; -- --- Name: csg_engage_programs csg_engage_programs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.csg_engage_programs - ADD CONSTRAINT csg_engage_programs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_DateProvided_idx4"; -- --- Name: csg_engage_reports csg_engage_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.csg_engage_reports - ADD CONSTRAINT csg_engage_reports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_idx"; -- --- Name: custom_imports_b_al_rows custom_imports_b_al_rows_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.custom_imports_b_al_rows - ADD CONSTRAINT custom_imports_b_al_rows_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_idx1"; -- --- Name: custom_imports_b_contacts_rows custom_imports_b_contacts_rows_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.custom_imports_b_contacts_rows - ADD CONSTRAINT custom_imports_b_contacts_rows_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_idx2"; -- --- Name: custom_imports_b_coo_rows custom_imports_b_coo_rows_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.custom_imports_b_coo_rows - ADD CONSTRAINT custom_imports_b_coo_rows_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_idx3"; -- --- Name: custom_imports_b_services_rows custom_imports_b_services_rows_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.custom_imports_b_services_rows - ADD CONSTRAINT custom_imports_b_services_rows_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_RecordType_idx4"; -- --- Name: custom_imports_config custom_imports_config_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.custom_imports_config - ADD CONSTRAINT custom_imports_config_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_ServicesID_data_source_id_idx"; -- --- Name: custom_imports_files custom_imports_files_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.custom_imports_files - ADD CONSTRAINT custom_imports_files_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_ServicesID_idx"; -- --- Name: dashboard_export_reports dashboard_export_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.dashboard_export_reports - ADD CONSTRAINT dashboard_export_reports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_ServicesID_idx1"; -- --- Name: data_monitorings data_monitorings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.data_monitorings - ADD CONSTRAINT data_monitorings_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_ServicesID_idx2"; -- --- Name: data_sources data_sources_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.data_sources - ADD CONSTRAINT data_sources_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_ServicesID_idx3"; -- --- Name: datasets datasets_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.datasets - ADD CONSTRAINT datasets_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_ServicesID_idx4"; -- --- Name: direct_financial_assistances direct_financial_assistances_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_ServicesID_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.direct_financial_assistances - ADD CONSTRAINT direct_financial_assistances_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_1_ServicesID_importer_log_id_idx"; -- --- Name: document_exports document_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.document_exports - ADD CONSTRAINT document_exports_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_1_importer_log_id_idx; -- --- Name: eccovia_assessments eccovia_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eccovia_assessments - ADD CONSTRAINT eccovia_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_1_pkey; -- --- Name: eccovia_case_managers eccovia_case_managers_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_1_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eccovia_case_managers - ADD CONSTRAINT eccovia_case_managers_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_1_source_type_source_id_idx; -- --- Name: eccovia_client_contacts eccovia_client_contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eccovia_client_contacts - ADD CONSTRAINT eccovia_client_contacts_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateCreated_idx"; -- --- Name: eccovia_fetches eccovia_fetches_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eccovia_fetches - ADD CONSTRAINT eccovia_fetches_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateCreated_idx1"; -- --- Name: enrollment_change_histories enrollment_change_histories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.enrollment_change_histories - ADD CONSTRAINT enrollment_change_histories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateCreated_idx2"; -- --- Name: enrollment_extras enrollment_extras_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.enrollment_extras - ADD CONSTRAINT enrollment_extras_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateCreated_idx3"; -- --- Name: eto_api_configs eto_api_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eto_api_configs - ADD CONSTRAINT eto_api_configs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateCreated_idx4"; -- --- Name: eto_client_lookups eto_client_lookups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eto_client_lookups - ADD CONSTRAINT eto_client_lookups_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateDeleted_idx"; -- --- Name: eto_subject_response_lookups eto_subject_response_lookups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eto_subject_response_lookups - ADD CONSTRAINT eto_subject_response_lookups_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateDeleted_idx1"; -- --- Name: eto_touch_point_lookups eto_touch_point_lookups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eto_touch_point_lookups - ADD CONSTRAINT eto_touch_point_lookups_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateDeleted_idx2"; -- --- Name: eto_touch_point_response_times eto_touch_point_response_times_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.eto_touch_point_response_times - ADD CONSTRAINT eto_touch_point_response_times_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateDeleted_idx3"; -- --- Name: exports_ad_hoc_anons exports_ad_hoc_anons_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.exports_ad_hoc_anons - ADD CONSTRAINT exports_ad_hoc_anons_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateDeleted_idx4"; -- --- Name: exports_ad_hocs exports_ad_hocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.exports_ad_hocs - ADD CONSTRAINT exports_ad_hocs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateProvided_idx"; -- --- Name: exports exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.exports - ADD CONSTRAINT exports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateProvided_idx1"; -- --- Name: external_ids external_ids_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.external_ids - ADD CONSTRAINT external_ids_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateProvided_idx2"; -- --- Name: external_reporting_cohort_permissions external_reporting_cohort_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.external_reporting_cohort_permissions - ADD CONSTRAINT external_reporting_cohort_permissions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateProvided_idx3"; -- --- Name: external_reporting_project_permissions external_reporting_project_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.external_reporting_project_permissions - ADD CONSTRAINT external_reporting_project_permissions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateProvided_idx4"; -- --- Name: external_request_logs external_request_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.external_request_logs - ADD CONSTRAINT external_request_logs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateUpdated_idx"; -- --- Name: fake_data fake_data_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.fake_data - ADD CONSTRAINT fake_data_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateUpdated_idx1"; -- --- Name: favorites favorites_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.favorites - ADD CONSTRAINT favorites_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateUpdated_idx2"; -- --- Name: federal_census_breakdowns federal_census_breakdowns_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.federal_census_breakdowns - ADD CONSTRAINT federal_census_breakdowns_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateUpdated_idx3"; -- --- Name: files files_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.files - ADD CONSTRAINT files_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_DateUpdated_idx4"; -- --- Name: financial_clients financial_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.financial_clients - ADD CONSTRAINT financial_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx"; -- --- Name: financial_providers financial_providers_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.financial_providers - ADD CONSTRAINT financial_providers_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx1"; -- --- Name: financial_transactions financial_transactions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.financial_transactions - ADD CONSTRAINT financial_transactions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx2"; -- --- Name: generate_service_history_batch_logs generate_service_history_batch_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.generate_service_history_batch_logs - ADD CONSTRAINT generate_service_history_batch_logs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx3"; -- --- Name: generate_service_history_log generate_service_history_log_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.generate_service_history_log - ADD CONSTRAINT generate_service_history_log_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx4"; -- --- Name: generic_services generic_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.generic_services - ADD CONSTRAINT generic_services_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_EnrollmentID_PersonalID_idx5"; -- --- Name: grades grades_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.grades - ADD CONSTRAINT grades_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_EnrollmentID_idx"; -- --- Name: group_viewable_entities group_viewable_entities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.group_viewable_entities - ADD CONSTRAINT group_viewable_entities_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_EnrollmentID_idx1"; -- --- Name: hap_report_clients hap_report_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hap_report_clients - ADD CONSTRAINT hap_report_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_EnrollmentID_idx2"; -- --- Name: hap_report_eraps hap_report_eraps_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hap_report_eraps - ADD CONSTRAINT hap_report_eraps_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_EnrollmentID_idx3"; -- --- Name: health_emergency_ama_restrictions health_emergency_ama_restrictions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_ama_restrictions - ADD CONSTRAINT health_emergency_ama_restrictions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_EnrollmentID_idx4"; -- --- Name: health_emergency_clinical_triages health_emergency_clinical_triages_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_clinical_triages - ADD CONSTRAINT health_emergency_clinical_triages_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_ExportID_idx"; -- --- Name: health_emergency_isolations health_emergency_isolations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_isolations - ADD CONSTRAINT health_emergency_isolations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_ExportID_idx1"; -- --- Name: health_emergency_test_batches health_emergency_test_batches_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_test_batches - ADD CONSTRAINT health_emergency_test_batches_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_ExportID_idx2"; -- --- Name: health_emergency_tests health_emergency_tests_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_tests - ADD CONSTRAINT health_emergency_tests_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_ExportID_idx3"; -- --- Name: health_emergency_triages health_emergency_triages_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_triages - ADD CONSTRAINT health_emergency_triages_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_ExportID_idx4"; -- --- Name: health_emergency_uploaded_tests health_emergency_uploaded_tests_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_uploaded_tests - ADD CONSTRAINT health_emergency_uploaded_tests_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_PersonalID_idx"; -- --- Name: health_emergency_vaccinations health_emergency_vaccinations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.health_emergency_vaccinations - ADD CONSTRAINT health_emergency_vaccinations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_PersonalID_idx1"; -- --- Name: helps helps_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.helps - ADD CONSTRAINT helps_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_PersonalID_idx2"; -- --- Name: hmis_2020_affiliations hmis_2020_affiliations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_affiliations - ADD CONSTRAINT hmis_2020_affiliations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_PersonalID_idx3"; -- --- Name: hmis_2020_aggregated_enrollments hmis_2020_aggregated_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_aggregated_enrollments - ADD CONSTRAINT hmis_2020_aggregated_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_PersonalID_idx4"; -- --- Name: hmis_2020_aggregated_exits hmis_2020_aggregated_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_aggregated_exits - ADD CONSTRAINT hmis_2020_aggregated_exits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx"; -- --- Name: hmis_2020_assessment_questions hmis_2020_assessment_questions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_assessment_questions - ADD CONSTRAINT hmis_2020_assessment_questions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx1"; -- --- Name: hmis_2020_assessment_results hmis_2020_assessment_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_assessment_results - ADD CONSTRAINT hmis_2020_assessment_results_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx2"; -- --- Name: hmis_2020_assessments hmis_2020_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_assessments - ADD CONSTRAINT hmis_2020_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx3"; -- --- Name: hmis_2020_clients hmis_2020_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_clients - ADD CONSTRAINT hmis_2020_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_DateDeleted_idx4"; -- --- Name: hmis_2020_current_living_situations hmis_2020_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_current_living_situations - ADD CONSTRAINT hmis_2020_current_living_situations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_DateProvided_idx"; -- --- Name: hmis_2020_disabilities hmis_2020_disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_disabilities - ADD CONSTRAINT hmis_2020_disabilities_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_DateProvided_idx1"; -- --- Name: hmis_2020_employment_educations hmis_2020_employment_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_employment_educations - ADD CONSTRAINT hmis_2020_employment_educations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_DateProvided_idx2"; -- --- Name: hmis_2020_enrollment_cocs hmis_2020_enrollment_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_enrollment_cocs - ADD CONSTRAINT hmis_2020_enrollment_cocs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_DateProvided_idx3"; -- --- Name: hmis_2020_enrollments hmis_2020_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_enrollments - ADD CONSTRAINT hmis_2020_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_DateProvided_idx4"; -- --- Name: hmis_2020_events hmis_2020_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_events - ADD CONSTRAINT hmis_2020_events_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_idx"; -- --- Name: hmis_2020_exits hmis_2020_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_exits - ADD CONSTRAINT hmis_2020_exits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_idx1"; -- --- Name: hmis_2020_exports hmis_2020_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_exports - ADD CONSTRAINT hmis_2020_exports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_idx2"; -- --- Name: hmis_2020_funders hmis_2020_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_funders - ADD CONSTRAINT hmis_2020_funders_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_idx3"; -- --- Name: hmis_2020_health_and_dvs hmis_2020_health_and_dvs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_health_and_dvs - ADD CONSTRAINT hmis_2020_health_and_dvs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_RecordType_idx4"; -- --- Name: hmis_2020_income_benefits hmis_2020_income_benefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_income_benefits - ADD CONSTRAINT hmis_2020_income_benefits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_ServicesID_data_source_id_idx"; -- --- Name: hmis_2020_inventories hmis_2020_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_inventories - ADD CONSTRAINT hmis_2020_inventories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_ServicesID_idx"; -- --- Name: hmis_2020_organizations hmis_2020_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_organizations - ADD CONSTRAINT hmis_2020_organizations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_ServicesID_idx1"; -- --- Name: hmis_2020_project_cocs hmis_2020_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_project_cocs - ADD CONSTRAINT hmis_2020_project_cocs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_ServicesID_idx2"; -- --- Name: hmis_2020_projects hmis_2020_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_projects - ADD CONSTRAINT hmis_2020_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_ServicesID_idx3"; -- --- Name: hmis_2020_services hmis_2020_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_services - ADD CONSTRAINT hmis_2020_services_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_20_ServicesID_idx4"; -- --- Name: hmis_2020_users hmis_2020_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2020_users - ADD CONSTRAINT hmis_2020_users_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_20_importer_log_id_idx; -- --- Name: hmis_2022_affiliations hmis_2022_affiliations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_affiliations - ADD CONSTRAINT hmis_2022_affiliations_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_20_pkey; -- --- Name: hmis_2022_assessment_questions hmis_2022_assessment_questions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_20_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_assessment_questions - ADD CONSTRAINT hmis_2022_assessment_questions_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_20_source_type_source_id_idx; -- --- Name: hmis_2022_assessment_results hmis_2022_assessment_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_assessment_results - ADD CONSTRAINT hmis_2022_assessment_results_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateCreated_idx"; -- --- Name: hmis_2022_assessments hmis_2022_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_assessments - ADD CONSTRAINT hmis_2022_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateCreated_idx1"; -- --- Name: hmis_2022_clients hmis_2022_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_clients - ADD CONSTRAINT hmis_2022_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateCreated_idx2"; -- --- Name: hmis_2022_current_living_situations hmis_2022_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_current_living_situations - ADD CONSTRAINT hmis_2022_current_living_situations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateCreated_idx3"; -- --- Name: hmis_2022_disabilities hmis_2022_disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_disabilities - ADD CONSTRAINT hmis_2022_disabilities_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateCreated_idx4"; -- --- Name: hmis_2022_employment_educations hmis_2022_employment_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_employment_educations - ADD CONSTRAINT hmis_2022_employment_educations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateDeleted_idx"; -- --- Name: hmis_2022_enrollment_cocs hmis_2022_enrollment_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_enrollment_cocs - ADD CONSTRAINT hmis_2022_enrollment_cocs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateDeleted_idx1"; -- --- Name: hmis_2022_enrollments hmis_2022_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_enrollments - ADD CONSTRAINT hmis_2022_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateDeleted_idx2"; -- --- Name: hmis_2022_events hmis_2022_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_events - ADD CONSTRAINT hmis_2022_events_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateDeleted_idx3"; -- --- Name: hmis_2022_exits hmis_2022_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_exits - ADD CONSTRAINT hmis_2022_exits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateDeleted_idx4"; -- --- Name: hmis_2022_exports hmis_2022_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_exports - ADD CONSTRAINT hmis_2022_exports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateProvided_idx"; -- --- Name: hmis_2022_funders hmis_2022_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_funders - ADD CONSTRAINT hmis_2022_funders_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateProvided_idx1"; -- --- Name: hmis_2022_health_and_dvs hmis_2022_health_and_dvs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_health_and_dvs - ADD CONSTRAINT hmis_2022_health_and_dvs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateProvided_idx2"; -- --- Name: hmis_2022_income_benefits hmis_2022_income_benefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_income_benefits - ADD CONSTRAINT hmis_2022_income_benefits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateProvided_idx3"; -- --- Name: hmis_2022_inventories hmis_2022_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_inventories - ADD CONSTRAINT hmis_2022_inventories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateProvided_idx4"; -- --- Name: hmis_2022_organizations hmis_2022_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_organizations - ADD CONSTRAINT hmis_2022_organizations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateUpdated_idx"; -- --- Name: hmis_2022_project_cocs hmis_2022_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_project_cocs - ADD CONSTRAINT hmis_2022_project_cocs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateUpdated_idx1"; -- --- Name: hmis_2022_projects hmis_2022_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_projects - ADD CONSTRAINT hmis_2022_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateUpdated_idx2"; -- --- Name: hmis_2022_services hmis_2022_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_services - ADD CONSTRAINT hmis_2022_services_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateUpdated_idx3"; -- --- Name: hmis_2022_users hmis_2022_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_users - ADD CONSTRAINT hmis_2022_users_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_DateUpdated_idx4"; -- --- Name: hmis_2022_youth_education_statuses hmis_2022_youth_education_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2022_youth_education_statuses - ADD CONSTRAINT hmis_2022_youth_education_statuses_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_2024_affiliations hmis_2024_affiliations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_affiliations - ADD CONSTRAINT hmis_2024_affiliations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_2024_assessment_questions hmis_2024_assessment_questions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_assessment_questions - ADD CONSTRAINT hmis_2024_assessment_questions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis_2024_assessment_results hmis_2024_assessment_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_assessment_results - ADD CONSTRAINT hmis_2024_assessment_results_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis_2024_assessments hmis_2024_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_assessments - ADD CONSTRAINT hmis_2024_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis_2024_ce_participations hmis_2024_ce_participations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_ce_participations - ADD CONSTRAINT hmis_2024_ce_participations_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis_2024_clients hmis_2024_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_clients - ADD CONSTRAINT hmis_2024_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_EnrollmentID_idx"; -- --- Name: hmis_2024_current_living_situations hmis_2024_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_current_living_situations - ADD CONSTRAINT hmis_2024_current_living_situations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_EnrollmentID_idx1"; -- --- Name: hmis_2024_disabilities hmis_2024_disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_disabilities - ADD CONSTRAINT hmis_2024_disabilities_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_EnrollmentID_idx2"; -- --- Name: hmis_2024_employment_educations hmis_2024_employment_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_employment_educations - ADD CONSTRAINT hmis_2024_employment_educations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_EnrollmentID_idx3"; -- --- Name: hmis_2024_enrollments hmis_2024_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_enrollments - ADD CONSTRAINT hmis_2024_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_EnrollmentID_idx4"; -- --- Name: hmis_2024_events hmis_2024_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_events - ADD CONSTRAINT hmis_2024_events_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_ExportID_idx"; -- --- Name: hmis_2024_exits hmis_2024_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_exits - ADD CONSTRAINT hmis_2024_exits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_ExportID_idx1"; -- --- Name: hmis_2024_exports hmis_2024_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_exports - ADD CONSTRAINT hmis_2024_exports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_ExportID_idx2"; -- --- Name: hmis_2024_funders hmis_2024_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_funders - ADD CONSTRAINT hmis_2024_funders_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_ExportID_idx3"; -- --- Name: hmis_2024_health_and_dvs hmis_2024_health_and_dvs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_health_and_dvs - ADD CONSTRAINT hmis_2024_health_and_dvs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_ExportID_idx4"; -- --- Name: hmis_2024_hmis_participations hmis_2024_hmis_participations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_hmis_participations - ADD CONSTRAINT hmis_2024_hmis_participations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_PersonalID_idx"; -- --- Name: hmis_2024_income_benefits hmis_2024_income_benefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_income_benefits - ADD CONSTRAINT hmis_2024_income_benefits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_PersonalID_idx1"; -- --- Name: hmis_2024_inventories hmis_2024_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_inventories - ADD CONSTRAINT hmis_2024_inventories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_PersonalID_idx2"; -- --- Name: hmis_2024_organizations hmis_2024_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_organizations - ADD CONSTRAINT hmis_2024_organizations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_PersonalID_idx3"; -- --- Name: hmis_2024_project_cocs hmis_2024_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_project_cocs - ADD CONSTRAINT hmis_2024_project_cocs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_PersonalID_idx4"; -- --- Name: hmis_2024_projects hmis_2024_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_projects - ADD CONSTRAINT hmis_2024_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx"; -- --- Name: hmis_2024_services hmis_2024_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_services - ADD CONSTRAINT hmis_2024_services_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx1"; -- --- Name: hmis_2024_users hmis_2024_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_users - ADD CONSTRAINT hmis_2024_users_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx2"; -- --- Name: hmis_2024_youth_education_statuses hmis_2024_youth_education_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_2024_youth_education_statuses - ADD CONSTRAINT hmis_2024_youth_education_statuses_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx3"; -- --- Name: hmis_active_ranges hmis_active_ranges_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_active_ranges - ADD CONSTRAINT hmis_active_ranges_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_DateDeleted_idx4"; -- --- Name: hmis_aggregated_enrollments hmis_aggregated_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_aggregated_enrollments - ADD CONSTRAINT hmis_aggregated_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_DateProvided_idx"; -- --- Name: hmis_aggregated_exits hmis_aggregated_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_aggregated_exits - ADD CONSTRAINT hmis_aggregated_exits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_DateProvided_idx1"; -- --- Name: hmis_assessment_details hmis_assessment_details_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_assessment_details - ADD CONSTRAINT hmis_assessment_details_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_DateProvided_idx2"; -- --- Name: hmis_assessments hmis_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_assessments - ADD CONSTRAINT hmis_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_DateProvided_idx3"; -- --- Name: hmis_case_notes hmis_case_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_case_notes - ADD CONSTRAINT hmis_case_notes_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_DateProvided_idx4"; -- --- Name: hmis_client_alerts hmis_client_alerts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_client_alerts - ADD CONSTRAINT hmis_client_alerts_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_idx"; -- --- Name: hmis_client_attributes_defined_text hmis_client_attributes_defined_text_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_client_attributes_defined_text - ADD CONSTRAINT hmis_client_attributes_defined_text_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_idx1"; -- --- Name: hmis_client_merge_audits hmis_client_merge_audits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_client_merge_audits - ADD CONSTRAINT hmis_client_merge_audits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_idx2"; -- --- Name: hmis_client_merge_histories hmis_client_merge_histories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_client_merge_histories - ADD CONSTRAINT hmis_client_merge_histories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_idx3"; -- --- Name: hmis_clients hmis_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_clients - ADD CONSTRAINT hmis_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_RecordType_idx4"; -- --- Name: hmis_csv_2020_affiliations hmis_csv_2020_affiliations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_affiliations - ADD CONSTRAINT hmis_csv_2020_affiliations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_ServicesID_data_source_id_idx"; -- --- Name: hmis_csv_2020_assessment_questions hmis_csv_2020_assessment_questions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_assessment_questions - ADD CONSTRAINT hmis_csv_2020_assessment_questions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_ServicesID_idx"; -- --- Name: hmis_csv_2020_assessment_results hmis_csv_2020_assessment_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_assessment_results - ADD CONSTRAINT hmis_csv_2020_assessment_results_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_ServicesID_idx1"; -- --- Name: hmis_csv_2020_assessments hmis_csv_2020_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_assessments - ADD CONSTRAINT hmis_csv_2020_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_ServicesID_idx2"; -- --- Name: hmis_csv_2020_clients hmis_csv_2020_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_clients - ADD CONSTRAINT hmis_csv_2020_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_ServicesID_idx3"; -- --- Name: hmis_csv_2020_current_living_situations hmis_csv_2020_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_current_living_situations - ADD CONSTRAINT hmis_csv_2020_current_living_situations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_21_ServicesID_idx4"; -- --- Name: hmis_csv_2020_disabilities hmis_csv_2020_disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_disabilities - ADD CONSTRAINT hmis_csv_2020_disabilities_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_21_importer_log_id_idx; -- --- Name: hmis_csv_2020_employment_educations hmis_csv_2020_employment_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_employment_educations - ADD CONSTRAINT hmis_csv_2020_employment_educations_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_21_pkey; -- --- Name: hmis_csv_2020_enrollment_cocs hmis_csv_2020_enrollment_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_21_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_enrollment_cocs - ADD CONSTRAINT hmis_csv_2020_enrollment_cocs_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_21_source_type_source_id_idx; -- --- Name: hmis_csv_2020_enrollments hmis_csv_2020_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_enrollments - ADD CONSTRAINT hmis_csv_2020_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateCreated_idx"; -- --- Name: hmis_csv_2020_events hmis_csv_2020_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_events - ADD CONSTRAINT hmis_csv_2020_events_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateCreated_idx1"; -- --- Name: hmis_csv_2020_exits hmis_csv_2020_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_exits - ADD CONSTRAINT hmis_csv_2020_exits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateCreated_idx2"; -- --- Name: hmis_csv_2020_exports hmis_csv_2020_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_exports - ADD CONSTRAINT hmis_csv_2020_exports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateCreated_idx3"; -- --- Name: hmis_csv_2020_funders hmis_csv_2020_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_funders - ADD CONSTRAINT hmis_csv_2020_funders_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateCreated_idx4"; -- --- Name: hmis_csv_2020_health_and_dvs hmis_csv_2020_health_and_dvs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_health_and_dvs - ADD CONSTRAINT hmis_csv_2020_health_and_dvs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateDeleted_idx"; -- --- Name: hmis_csv_2020_income_benefits hmis_csv_2020_income_benefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_income_benefits - ADD CONSTRAINT hmis_csv_2020_income_benefits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateDeleted_idx1"; -- --- Name: hmis_csv_2020_inventories hmis_csv_2020_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_inventories - ADD CONSTRAINT hmis_csv_2020_inventories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateDeleted_idx2"; -- --- Name: hmis_csv_2020_organizations hmis_csv_2020_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_organizations - ADD CONSTRAINT hmis_csv_2020_organizations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateDeleted_idx3"; -- --- Name: hmis_csv_2020_project_cocs hmis_csv_2020_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_project_cocs - ADD CONSTRAINT hmis_csv_2020_project_cocs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateDeleted_idx4"; -- --- Name: hmis_csv_2020_projects hmis_csv_2020_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_projects - ADD CONSTRAINT hmis_csv_2020_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateProvided_idx"; -- --- Name: hmis_csv_2020_services hmis_csv_2020_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_services - ADD CONSTRAINT hmis_csv_2020_services_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateProvided_idx1"; -- --- Name: hmis_csv_2020_users hmis_csv_2020_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2020_users - ADD CONSTRAINT hmis_csv_2020_users_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateProvided_idx2"; -- --- Name: hmis_csv_2022_affiliations hmis_csv_2022_affiliations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_affiliations - ADD CONSTRAINT hmis_csv_2022_affiliations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateProvided_idx3"; -- --- Name: hmis_csv_2022_assessment_questions hmis_csv_2022_assessment_questions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_assessment_questions - ADD CONSTRAINT hmis_csv_2022_assessment_questions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateProvided_idx4"; -- --- Name: hmis_csv_2022_assessment_results hmis_csv_2022_assessment_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_assessment_results - ADD CONSTRAINT hmis_csv_2022_assessment_results_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateUpdated_idx"; -- --- Name: hmis_csv_2022_assessments hmis_csv_2022_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_assessments - ADD CONSTRAINT hmis_csv_2022_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateUpdated_idx1"; -- --- Name: hmis_csv_2022_clients hmis_csv_2022_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_clients - ADD CONSTRAINT hmis_csv_2022_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateUpdated_idx2"; -- --- Name: hmis_csv_2022_current_living_situations hmis_csv_2022_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_current_living_situations - ADD CONSTRAINT hmis_csv_2022_current_living_situations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateUpdated_idx3"; -- --- Name: hmis_csv_2022_disabilities hmis_csv_2022_disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_disabilities - ADD CONSTRAINT hmis_csv_2022_disabilities_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_DateUpdated_idx4"; -- --- Name: hmis_csv_2022_employment_educations hmis_csv_2022_employment_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_employment_educations - ADD CONSTRAINT hmis_csv_2022_employment_educations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_csv_2022_enrollment_cocs hmis_csv_2022_enrollment_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_enrollment_cocs - ADD CONSTRAINT hmis_csv_2022_enrollment_cocs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_csv_2022_enrollments hmis_csv_2022_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_enrollments - ADD CONSTRAINT hmis_csv_2022_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis_csv_2022_events hmis_csv_2022_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_events - ADD CONSTRAINT hmis_csv_2022_events_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis_csv_2022_exits hmis_csv_2022_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_exits - ADD CONSTRAINT hmis_csv_2022_exits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis_csv_2022_exports hmis_csv_2022_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_exports - ADD CONSTRAINT hmis_csv_2022_exports_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis_csv_2022_funders hmis_csv_2022_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_funders - ADD CONSTRAINT hmis_csv_2022_funders_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_EnrollmentID_idx"; -- --- Name: hmis_csv_2022_health_and_dvs hmis_csv_2022_health_and_dvs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_health_and_dvs - ADD CONSTRAINT hmis_csv_2022_health_and_dvs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_EnrollmentID_idx1"; -- --- Name: hmis_csv_2022_income_benefits hmis_csv_2022_income_benefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_income_benefits - ADD CONSTRAINT hmis_csv_2022_income_benefits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_EnrollmentID_idx2"; -- --- Name: hmis_csv_2022_inventories hmis_csv_2022_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_inventories - ADD CONSTRAINT hmis_csv_2022_inventories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_EnrollmentID_idx3"; -- --- Name: hmis_csv_2022_organizations hmis_csv_2022_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_organizations - ADD CONSTRAINT hmis_csv_2022_organizations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_EnrollmentID_idx4"; -- --- Name: hmis_csv_2022_project_cocs hmis_csv_2022_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_project_cocs - ADD CONSTRAINT hmis_csv_2022_project_cocs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_ExportID_idx"; -- --- Name: hmis_csv_2022_projects hmis_csv_2022_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_projects - ADD CONSTRAINT hmis_csv_2022_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_ExportID_idx1"; -- --- Name: hmis_csv_2022_services hmis_csv_2022_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_services - ADD CONSTRAINT hmis_csv_2022_services_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_ExportID_idx2"; -- --- Name: hmis_csv_2022_users hmis_csv_2022_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_users - ADD CONSTRAINT hmis_csv_2022_users_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_ExportID_idx3"; -- --- Name: hmis_csv_2022_youth_education_statuses hmis_csv_2022_youth_education_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2022_youth_education_statuses - ADD CONSTRAINT hmis_csv_2022_youth_education_statuses_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_ExportID_idx4"; -- --- Name: hmis_csv_2024_affiliations hmis_csv_2024_affiliations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_affiliations - ADD CONSTRAINT hmis_csv_2024_affiliations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_PersonalID_idx"; -- --- Name: hmis_csv_2024_assessment_questions hmis_csv_2024_assessment_questions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_assessment_questions - ADD CONSTRAINT hmis_csv_2024_assessment_questions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_PersonalID_idx1"; -- --- Name: hmis_csv_2024_assessment_results hmis_csv_2024_assessment_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_assessment_results - ADD CONSTRAINT hmis_csv_2024_assessment_results_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_PersonalID_idx2"; -- --- Name: hmis_csv_2024_assessments hmis_csv_2024_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_assessments - ADD CONSTRAINT hmis_csv_2024_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_PersonalID_idx3"; -- --- Name: hmis_csv_2024_ce_participations hmis_csv_2024_ce_participations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_ce_participations - ADD CONSTRAINT hmis_csv_2024_ce_participations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_PersonalID_idx4"; -- --- Name: hmis_csv_2024_clients hmis_csv_2024_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_clients - ADD CONSTRAINT hmis_csv_2024_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx"; -- --- Name: hmis_csv_2024_current_living_situations hmis_csv_2024_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_current_living_situations - ADD CONSTRAINT hmis_csv_2024_current_living_situations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx1"; -- --- Name: hmis_csv_2024_disabilities hmis_csv_2024_disabilities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_disabilities - ADD CONSTRAINT hmis_csv_2024_disabilities_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx2"; -- --- Name: hmis_csv_2024_employment_educations hmis_csv_2024_employment_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_employment_educations - ADD CONSTRAINT hmis_csv_2024_employment_educations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx3"; -- --- Name: hmis_csv_2024_enrollments hmis_csv_2024_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_enrollments - ADD CONSTRAINT hmis_csv_2024_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_DateDeleted_idx4"; -- --- Name: hmis_csv_2024_events hmis_csv_2024_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_events - ADD CONSTRAINT hmis_csv_2024_events_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_DateProvided_idx"; -- --- Name: hmis_csv_2024_exits hmis_csv_2024_exits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_exits - ADD CONSTRAINT hmis_csv_2024_exits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_DateProvided_idx1"; -- --- Name: hmis_csv_2024_exports hmis_csv_2024_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_exports - ADD CONSTRAINT hmis_csv_2024_exports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_DateProvided_idx2"; -- --- Name: hmis_csv_2024_funders hmis_csv_2024_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_funders - ADD CONSTRAINT hmis_csv_2024_funders_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_DateProvided_idx3"; -- --- Name: hmis_csv_2024_health_and_dvs hmis_csv_2024_health_and_dvs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_health_and_dvs - ADD CONSTRAINT hmis_csv_2024_health_and_dvs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_DateProvided_idx4"; -- --- Name: hmis_csv_2024_hmis_participations hmis_csv_2024_hmis_participations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_hmis_participations - ADD CONSTRAINT hmis_csv_2024_hmis_participations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_idx"; -- --- Name: hmis_csv_2024_income_benefits hmis_csv_2024_income_benefits_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_income_benefits - ADD CONSTRAINT hmis_csv_2024_income_benefits_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_idx1"; -- --- Name: hmis_csv_2024_inventories hmis_csv_2024_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_inventories - ADD CONSTRAINT hmis_csv_2024_inventories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_idx2"; -- --- Name: hmis_csv_2024_organizations hmis_csv_2024_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_organizations - ADD CONSTRAINT hmis_csv_2024_organizations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_idx3"; -- --- Name: hmis_csv_2024_project_cocs hmis_csv_2024_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_project_cocs - ADD CONSTRAINT hmis_csv_2024_project_cocs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_RecordType_idx4"; -- --- Name: hmis_csv_2024_projects hmis_csv_2024_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_projects - ADD CONSTRAINT hmis_csv_2024_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_ServicesID_data_source_id_idx"; -- --- Name: hmis_csv_2024_services hmis_csv_2024_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_services - ADD CONSTRAINT hmis_csv_2024_services_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_ServicesID_idx"; -- --- Name: hmis_csv_2024_users hmis_csv_2024_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_users - ADD CONSTRAINT hmis_csv_2024_users_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_ServicesID_idx1"; -- --- Name: hmis_csv_2024_youth_education_statuses hmis_csv_2024_youth_education_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_2024_youth_education_statuses - ADD CONSTRAINT hmis_csv_2024_youth_education_statuses_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_ServicesID_idx2"; -- --- Name: hmis_csv_import_errors hmis_csv_import_errors_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_import_errors - ADD CONSTRAINT hmis_csv_import_errors_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_ServicesID_idx3"; -- --- Name: hmis_csv_import_validations hmis_csv_import_validations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_import_validations - ADD CONSTRAINT hmis_csv_import_validations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_22_ServicesID_idx4"; -- --- Name: hmis_csv_importer_logs hmis_csv_importer_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_importer_logs - ADD CONSTRAINT hmis_csv_importer_logs_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_22_importer_log_id_idx; -- --- Name: hmis_csv_load_errors hmis_csv_load_errors_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_load_errors - ADD CONSTRAINT hmis_csv_load_errors_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_22_pkey; -- --- Name: hmis_csv_loader_logs hmis_csv_loader_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_22_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_csv_loader_logs - ADD CONSTRAINT hmis_csv_loader_logs_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_22_source_type_source_id_idx; -- --- Name: hmis_dqt_assessments hmis_dqt_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_assessments - ADD CONSTRAINT hmis_dqt_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateCreated_idx"; -- --- Name: hmis_dqt_clients hmis_dqt_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_clients - ADD CONSTRAINT hmis_dqt_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateCreated_idx1"; -- --- Name: hmis_dqt_current_living_situations hmis_dqt_current_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_current_living_situations - ADD CONSTRAINT hmis_dqt_current_living_situations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateCreated_idx2"; -- --- Name: hmis_dqt_enrollments hmis_dqt_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_enrollments - ADD CONSTRAINT hmis_dqt_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateCreated_idx3"; -- --- Name: hmis_dqt_events hmis_dqt_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_events - ADD CONSTRAINT hmis_dqt_events_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateCreated_idx4"; -- --- Name: hmis_dqt_goals hmis_dqt_goals_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_goals - ADD CONSTRAINT hmis_dqt_goals_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateDeleted_idx"; -- --- Name: hmis_dqt_inventories hmis_dqt_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_dqt_inventories - ADD CONSTRAINT hmis_dqt_inventories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateDeleted_idx1"; -- --- Name: hmis_external_form_publications hmis_external_form_publications_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_form_publications - ADD CONSTRAINT hmis_external_form_publications_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateDeleted_idx2"; -- --- Name: hmis_external_form_submissions hmis_external_form_submissions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_form_submissions - ADD CONSTRAINT hmis_external_form_submissions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateDeleted_idx3"; -- --- Name: hmis_external_referral_household_members hmis_external_referral_household_members_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_referral_household_members - ADD CONSTRAINT hmis_external_referral_household_members_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateDeleted_idx4"; -- --- Name: hmis_external_referral_postings hmis_external_referral_postings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_referral_postings - ADD CONSTRAINT hmis_external_referral_postings_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateProvided_idx"; -- --- Name: hmis_external_referral_requests hmis_external_referral_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_referral_requests - ADD CONSTRAINT hmis_external_referral_requests_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateProvided_idx1"; -- --- Name: hmis_external_referrals hmis_external_referrals_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_referrals - ADD CONSTRAINT hmis_external_referrals_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateProvided_idx2"; -- --- Name: hmis_external_unit_availability_syncs hmis_external_unit_availability_syncs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_external_unit_availability_syncs - ADD CONSTRAINT hmis_external_unit_availability_syncs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateProvided_idx3"; -- --- Name: hmis_form_definitions hmis_form_definitions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_form_definitions - ADD CONSTRAINT hmis_form_definitions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateProvided_idx4"; -- --- Name: hmis_form_instances hmis_form_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_form_instances - ADD CONSTRAINT hmis_form_instances_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateUpdated_idx"; -- --- Name: hmis_form_processors hmis_form_processors_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_form_processors - ADD CONSTRAINT hmis_form_processors_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateUpdated_idx1"; -- --- Name: hmis_forms hmis_forms_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_forms - ADD CONSTRAINT hmis_forms_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateUpdated_idx2"; -- --- Name: hmis_group_viewable_entities hmis_group_viewable_entities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_group_viewable_entities - ADD CONSTRAINT hmis_group_viewable_entities_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateUpdated_idx3"; -- --- Name: hmis_import_configs hmis_import_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_import_configs - ADD CONSTRAINT hmis_import_configs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_DateUpdated_idx4"; -- --- Name: hmis_project_configs hmis_project_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_project_configs - ADD CONSTRAINT hmis_project_configs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_project_unit_type_mappings hmis_project_unit_type_mappings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_project_unit_type_mappings - ADD CONSTRAINT hmis_project_unit_type_mappings_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_scan_card_codes hmis_scan_card_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_scan_card_codes - ADD CONSTRAINT hmis_scan_card_codes_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis_staff_assignment_relationships hmis_staff_assignment_relationships_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_staff_assignment_relationships - ADD CONSTRAINT hmis_staff_assignment_relationships_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis_staff_assignments hmis_staff_assignments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_staff_assignments - ADD CONSTRAINT hmis_staff_assignments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis_staff hmis_staff_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_staff - ADD CONSTRAINT hmis_staff_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis_staff_x_clients hmis_staff_x_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_staff_x_clients - ADD CONSTRAINT hmis_staff_x_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_EnrollmentID_idx"; -- --- Name: hmis_supplemental_data_sets hmis_supplemental_data_sets_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_supplemental_data_sets - ADD CONSTRAINT hmis_supplemental_data_sets_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_EnrollmentID_idx1"; -- --- Name: hmis_supplemental_field_values hmis_supplemental_field_values_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_supplemental_field_values - ADD CONSTRAINT hmis_supplemental_field_values_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_EnrollmentID_idx2"; -- --- Name: hmis_unit_occupancy hmis_unit_occupancy_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_unit_occupancy - ADD CONSTRAINT hmis_unit_occupancy_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_EnrollmentID_idx3"; -- --- Name: hmis_unit_types hmis_unit_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_unit_types - ADD CONSTRAINT hmis_unit_types_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_EnrollmentID_idx4"; -- --- Name: hmis_units hmis_units_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hmis_units - ADD CONSTRAINT hmis_units_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_ExportID_idx"; -- --- Name: homeless_summary_report_clients homeless_summary_report_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.homeless_summary_report_clients - ADD CONSTRAINT homeless_summary_report_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_ExportID_idx1"; -- --- Name: homeless_summary_report_results homeless_summary_report_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.homeless_summary_report_results - ADD CONSTRAINT homeless_summary_report_results_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_ExportID_idx2"; -- --- Name: hopwa_caper_enrollments hopwa_caper_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hopwa_caper_enrollments - ADD CONSTRAINT hopwa_caper_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_ExportID_idx3"; -- --- Name: hopwa_caper_services hopwa_caper_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hopwa_caper_services - ADD CONSTRAINT hopwa_caper_services_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_ExportID_idx4"; -- --- Name: housing_resolution_plans housing_resolution_plans_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.housing_resolution_plans - ADD CONSTRAINT housing_resolution_plans_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_PersonalID_idx"; -- --- Name: hud_chronics hud_chronics_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_chronics - ADD CONSTRAINT hud_chronics_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_PersonalID_idx1"; -- --- Name: hud_create_logs hud_create_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_create_logs - ADD CONSTRAINT hud_create_logs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_PersonalID_idx2"; -- --- Name: hud_lsa_summary_results hud_lsa_summary_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_lsa_summary_results - ADD CONSTRAINT hud_lsa_summary_results_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_PersonalID_idx3"; -- --- Name: hud_report_apr_ce_assessments hud_report_apr_ce_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_apr_ce_assessments - ADD CONSTRAINT hud_report_apr_ce_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_PersonalID_idx4"; -- --- Name: hud_report_apr_ce_events hud_report_apr_ce_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_apr_ce_events - ADD CONSTRAINT hud_report_apr_ce_events_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx"; -- --- Name: hud_report_apr_clients hud_report_apr_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_apr_clients - ADD CONSTRAINT hud_report_apr_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx1"; -- --- Name: hud_report_apr_living_situations hud_report_apr_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_apr_living_situations - ADD CONSTRAINT hud_report_apr_living_situations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx2"; -- --- Name: hud_report_cells hud_report_cells_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_cells - ADD CONSTRAINT hud_report_cells_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx3"; -- --- Name: hud_report_dq_clients hud_report_dq_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_dq_clients - ADD CONSTRAINT hud_report_dq_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_DateDeleted_idx4"; -- --- Name: hud_report_dq_living_situations hud_report_dq_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_dq_living_situations - ADD CONSTRAINT hud_report_dq_living_situations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_DateProvided_idx"; -- --- Name: hud_report_hic_funders hud_report_hic_funders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_hic_funders - ADD CONSTRAINT hud_report_hic_funders_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_DateProvided_idx1"; -- --- Name: hud_report_hic_inventories hud_report_hic_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_hic_inventories - ADD CONSTRAINT hud_report_hic_inventories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_DateProvided_idx2"; -- --- Name: hud_report_hic_organizations hud_report_hic_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_hic_organizations - ADD CONSTRAINT hud_report_hic_organizations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_DateProvided_idx3"; -- --- Name: hud_report_hic_project_cocs hud_report_hic_project_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_hic_project_cocs - ADD CONSTRAINT hud_report_hic_project_cocs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_DateProvided_idx4"; -- --- Name: hud_report_hic_projects hud_report_hic_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_hic_projects - ADD CONSTRAINT hud_report_hic_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_idx"; -- --- Name: hud_report_instances hud_report_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_instances - ADD CONSTRAINT hud_report_instances_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_idx1"; -- --- Name: hud_report_path_clients hud_report_path_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_path_clients - ADD CONSTRAINT hud_report_path_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_idx2"; -- --- Name: hud_report_pit_clients hud_report_pit_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_pit_clients - ADD CONSTRAINT hud_report_pit_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_idx3"; -- --- Name: hud_report_spm_bed_nights hud_report_spm_bed_nights_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_spm_bed_nights - ADD CONSTRAINT hud_report_spm_bed_nights_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_RecordType_idx4"; -- --- Name: hud_report_spm_clients hud_report_spm_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_spm_clients - ADD CONSTRAINT hud_report_spm_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_ServicesID_data_source_id_idx"; -- --- Name: hud_report_spm_enrollment_links hud_report_spm_enrollment_links_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_spm_enrollment_links - ADD CONSTRAINT hud_report_spm_enrollment_links_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_ServicesID_idx"; -- --- Name: hud_report_spm_enrollments hud_report_spm_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_spm_enrollments - ADD CONSTRAINT hud_report_spm_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_ServicesID_idx1"; -- --- Name: hud_report_spm_episodes hud_report_spm_episodes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_spm_episodes - ADD CONSTRAINT hud_report_spm_episodes_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_ServicesID_idx2"; -- --- Name: hud_report_spm_returns hud_report_spm_returns_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_spm_returns - ADD CONSTRAINT hud_report_spm_returns_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_ServicesID_idx3"; -- --- Name: hud_report_universe_members hud_report_universe_members_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.hud_report_universe_members - ADD CONSTRAINT hud_report_universe_members_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_23_ServicesID_idx4"; -- --- Name: identify_duplicates_log identify_duplicates_log_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.identify_duplicates_log - ADD CONSTRAINT identify_duplicates_log_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_23_importer_log_id_idx; -- --- Name: import_logs import_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.import_logs - ADD CONSTRAINT import_logs_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_23_pkey; -- --- Name: import_overrides import_overrides_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_23_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.import_overrides - ADD CONSTRAINT import_overrides_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_23_source_type_source_id_idx; -- --- Name: inbound_api_configurations inbound_api_configurations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.inbound_api_configurations - ADD CONSTRAINT inbound_api_configurations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateCreated_idx"; -- --- Name: income_benefits_report_clients income_benefits_report_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.income_benefits_report_clients - ADD CONSTRAINT income_benefits_report_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateCreated_idx1"; -- --- Name: income_benefits_report_incomes income_benefits_report_incomes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.income_benefits_report_incomes - ADD CONSTRAINT income_benefits_report_incomes_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateCreated_idx2"; -- --- Name: income_benefits_reports income_benefits_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.income_benefits_reports - ADD CONSTRAINT income_benefits_reports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateCreated_idx3"; -- --- Name: internal_systems internal_systems_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.internal_systems - ADD CONSTRAINT internal_systems_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateCreated_idx4"; -- --- Name: involved_in_imports involved_in_imports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.involved_in_imports - ADD CONSTRAINT involved_in_imports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateDeleted_idx"; -- --- Name: lftp_s3_syncs lftp_s3_syncs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lftp_s3_syncs - ADD CONSTRAINT lftp_s3_syncs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateDeleted_idx1"; -- --- Name: longitudinal_spm_results longitudinal_spm_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.longitudinal_spm_results - ADD CONSTRAINT longitudinal_spm_results_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateDeleted_idx2"; -- --- Name: longitudinal_spm_spms longitudinal_spm_spms_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.longitudinal_spm_spms - ADD CONSTRAINT longitudinal_spm_spms_pkey PRIMARY KEY (id); - +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateDeleted_idx3"; + -- --- Name: longitudinal_spms longitudinal_spms_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.longitudinal_spms - ADD CONSTRAINT longitudinal_spms_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateDeleted_idx4"; -- --- Name: lookups_ethnicities lookups_ethnicities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_ethnicities - ADD CONSTRAINT lookups_ethnicities_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateProvided_idx"; -- --- Name: lookups_funding_sources lookups_funding_sources_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_funding_sources - ADD CONSTRAINT lookups_funding_sources_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateProvided_idx1"; -- --- Name: lookups_genders lookups_genders_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_genders - ADD CONSTRAINT lookups_genders_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateProvided_idx2"; -- --- Name: lookups_living_situations lookups_living_situations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_living_situations - ADD CONSTRAINT lookups_living_situations_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateProvided_idx3"; -- --- Name: lookups_project_types lookups_project_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_project_types - ADD CONSTRAINT lookups_project_types_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateProvided_idx4"; -- --- Name: lookups_relationships lookups_relationships_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_relationships - ADD CONSTRAINT lookups_relationships_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateUpdated_idx"; -- --- Name: lookups_tracking_methods lookups_tracking_methods_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_tracking_methods - ADD CONSTRAINT lookups_tracking_methods_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateUpdated_idx1"; -- --- Name: lookups_yes_no_etcs lookups_yes_no_etcs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lookups_yes_no_etcs - ADD CONSTRAINT lookups_yes_no_etcs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateUpdated_idx2"; -- --- Name: lsa_rds_state_logs lsa_rds_state_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.lsa_rds_state_logs - ADD CONSTRAINT lsa_rds_state_logs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateUpdated_idx3"; -- --- Name: ma_monthly_performance_enrollments ma_monthly_performance_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ma_monthly_performance_enrollments - ADD CONSTRAINT ma_monthly_performance_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_DateUpdated_idx4"; -- --- Name: ma_monthly_performance_projects ma_monthly_performance_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ma_monthly_performance_projects - ADD CONSTRAINT ma_monthly_performance_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx"; -- --- Name: ma_yya_report_clients ma_yya_report_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.ma_yya_report_clients - ADD CONSTRAINT ma_yya_report_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx1"; -- --- Name: new_service_history new_service_history_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.new_service_history - ADD CONSTRAINT new_service_history_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx2"; -- --- Name: nightly_census_by_projects nightly_census_by_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.nightly_census_by_projects - ADD CONSTRAINT nightly_census_by_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx3"; -- --- Name: non_hmis_uploads non_hmis_uploads_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.non_hmis_uploads - ADD CONSTRAINT non_hmis_uploads_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx4"; -- --- Name: performance_measurement_goals performance_measurement_goals_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.performance_measurement_goals - ADD CONSTRAINT performance_measurement_goals_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_EnrollmentID_PersonalID_idx5"; -- --- Name: performance_metrics_clients performance_metrics_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.performance_metrics_clients - ADD CONSTRAINT performance_metrics_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_EnrollmentID_idx"; -- --- Name: places places_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.places - ADD CONSTRAINT places_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_EnrollmentID_idx1"; -- --- Name: pm_client_projects pm_client_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.pm_client_projects - ADD CONSTRAINT pm_client_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_EnrollmentID_idx2"; -- --- Name: pm_clients pm_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.pm_clients - ADD CONSTRAINT pm_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_EnrollmentID_idx3"; -- --- Name: pm_coc_static_spms pm_coc_static_spms_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.pm_coc_static_spms - ADD CONSTRAINT pm_coc_static_spms_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_EnrollmentID_idx4"; -- --- Name: pm_projects pm_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.pm_projects - ADD CONSTRAINT pm_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_ExportID_idx"; -- --- Name: pm_results pm_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.pm_results - ADD CONSTRAINT pm_results_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_ExportID_idx1"; -- --- Name: project_data_quality project_data_quality_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_data_quality - ADD CONSTRAINT project_data_quality_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_ExportID_idx2"; -- --- Name: project_groups project_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_groups - ADD CONSTRAINT project_groups_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_ExportID_idx3"; -- --- Name: project_pass_fails_clients project_pass_fails_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_pass_fails_clients - ADD CONSTRAINT project_pass_fails_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_ExportID_idx4"; -- --- Name: project_pass_fails project_pass_fails_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_pass_fails - ADD CONSTRAINT project_pass_fails_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_PersonalID_idx"; -- --- Name: project_pass_fails_projects project_pass_fails_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_pass_fails_projects - ADD CONSTRAINT project_pass_fails_projects_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_PersonalID_idx1"; -- --- Name: project_project_groups project_project_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_project_groups - ADD CONSTRAINT project_project_groups_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_PersonalID_idx2"; -- --- Name: project_scorecard_reports project_scorecard_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.project_scorecard_reports - ADD CONSTRAINT project_scorecard_reports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_PersonalID_idx3"; -- --- Name: psc_feedback_surveys psc_feedback_surveys_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.psc_feedback_surveys - ADD CONSTRAINT psc_feedback_surveys_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_PersonalID_idx4"; -- --- Name: public_report_reports public_report_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.public_report_reports - ADD CONSTRAINT public_report_reports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx"; -- --- Name: public_report_settings public_report_settings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.public_report_settings - ADD CONSTRAINT public_report_settings_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx1"; -- --- Name: published_reports published_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.published_reports - ADD CONSTRAINT published_reports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx2"; -- --- Name: recent_items recent_items_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.recent_items - ADD CONSTRAINT recent_items_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx3"; -- --- Name: recurring_hmis_export_links recurring_hmis_export_links_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.recurring_hmis_export_links - ADD CONSTRAINT recurring_hmis_export_links_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_DateDeleted_idx4"; -- --- Name: recurring_hmis_exports recurring_hmis_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.recurring_hmis_exports - ADD CONSTRAINT recurring_hmis_exports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_DateProvided_idx"; -- --- Name: remote_configs remote_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.remote_configs - ADD CONSTRAINT remote_configs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_DateProvided_idx1"; -- --- Name: remote_credentials remote_credentials_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.remote_credentials - ADD CONSTRAINT remote_credentials_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_DateProvided_idx2"; -- --- Name: report_definitions report_definitions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.report_definitions - ADD CONSTRAINT report_definitions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_DateProvided_idx3"; -- --- Name: report_tokens report_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.report_tokens - ADD CONSTRAINT report_tokens_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_DateProvided_idx4"; -- --- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.schema_migrations - ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_idx"; -- --- Name: secure_files secure_files_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.secure_files - ADD CONSTRAINT secure_files_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_idx1"; -- --- Name: service_history_enrollments service_history_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_enrollments - ADD CONSTRAINT service_history_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_idx2"; -- --- Name: service_history_services service_history_services_partitioned_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services - ADD CONSTRAINT service_history_services_partitioned_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_idx3"; -- --- Name: service_history_services_2000 service_history_services_2000_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2000 - ADD CONSTRAINT service_history_services_2000_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_RecordType_idx4"; -- --- Name: service_history_services_2001 service_history_services_2001_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2001 - ADD CONSTRAINT service_history_services_2001_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_ServicesID_data_source_id_idx"; -- --- Name: service_history_services_2002 service_history_services_2002_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2002 - ADD CONSTRAINT service_history_services_2002_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_ServicesID_idx"; -- --- Name: service_history_services_2003 service_history_services_2003_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2003 - ADD CONSTRAINT service_history_services_2003_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_ServicesID_idx1"; -- --- Name: service_history_services_2004 service_history_services_2004_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2004 - ADD CONSTRAINT service_history_services_2004_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_ServicesID_idx2"; -- --- Name: service_history_services_2005 service_history_services_2005_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2005 - ADD CONSTRAINT service_history_services_2005_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_ServicesID_idx3"; -- --- Name: service_history_services_2006 service_history_services_2006_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2006 - ADD CONSTRAINT service_history_services_2006_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_24_ServicesID_idx4"; -- --- Name: service_history_services_2007 service_history_services_2007_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2007 - ADD CONSTRAINT service_history_services_2007_pkey PRIMARY KEY (id, date); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_24_importer_log_id_idx; -- --- Name: service_history_services_2008 service_history_services_2008_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2008 - ADD CONSTRAINT service_history_services_2008_pkey PRIMARY KEY (id, date); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_24_pkey; -- --- Name: service_history_services_2009 service_history_services_2009_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_24_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2009 - ADD CONSTRAINT service_history_services_2009_pkey PRIMARY KEY (id, date); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_24_source_type_source_id_idx; -- --- Name: service_history_services_2010 service_history_services_2010_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2010 - ADD CONSTRAINT service_history_services_2010_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateCreated_idx"; -- --- Name: service_history_services_2011 service_history_services_2011_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2011 - ADD CONSTRAINT service_history_services_2011_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateCreated_idx1"; -- --- Name: service_history_services_2012 service_history_services_2012_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2012 - ADD CONSTRAINT service_history_services_2012_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateCreated_idx2"; -- --- Name: service_history_services_2013 service_history_services_2013_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2013 - ADD CONSTRAINT service_history_services_2013_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateCreated_idx3"; -- --- Name: service_history_services_2014 service_history_services_2014_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2014 - ADD CONSTRAINT service_history_services_2014_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateCreated_idx4"; -- --- Name: service_history_services_2015 service_history_services_2015_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2015 - ADD CONSTRAINT service_history_services_2015_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateDeleted_idx"; -- --- Name: service_history_services_2016 service_history_services_2016_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2016 - ADD CONSTRAINT service_history_services_2016_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateDeleted_idx1"; -- --- Name: service_history_services_2017 service_history_services_2017_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2017 - ADD CONSTRAINT service_history_services_2017_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateDeleted_idx2"; -- --- Name: service_history_services_2018 service_history_services_2018_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2018 - ADD CONSTRAINT service_history_services_2018_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateDeleted_idx3"; -- --- Name: service_history_services_2019 service_history_services_2019_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2019 - ADD CONSTRAINT service_history_services_2019_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateDeleted_idx4"; -- --- Name: service_history_services_2020 service_history_services_2020_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2020 - ADD CONSTRAINT service_history_services_2020_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateProvided_idx"; -- --- Name: service_history_services_2021 service_history_services_2021_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2021 - ADD CONSTRAINT service_history_services_2021_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateProvided_idx1"; -- --- Name: service_history_services_2022 service_history_services_2022_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2022 - ADD CONSTRAINT service_history_services_2022_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateProvided_idx2"; -- --- Name: service_history_services_2023 service_history_services_2023_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2023 - ADD CONSTRAINT service_history_services_2023_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateProvided_idx3"; -- --- Name: service_history_services_2024 service_history_services_2024_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2024 - ADD CONSTRAINT service_history_services_2024_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateProvided_idx4"; -- --- Name: service_history_services_2025 service_history_services_2025_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2025 - ADD CONSTRAINT service_history_services_2025_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateUpdated_idx"; -- --- Name: service_history_services_2026 service_history_services_2026_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2026 - ADD CONSTRAINT service_history_services_2026_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateUpdated_idx1"; -- --- Name: service_history_services_2027 service_history_services_2027_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2027 - ADD CONSTRAINT service_history_services_2027_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateUpdated_idx2"; -- --- Name: service_history_services_2028 service_history_services_2028_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2028 - ADD CONSTRAINT service_history_services_2028_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateUpdated_idx3"; -- --- Name: service_history_services_2029 service_history_services_2029_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2029 - ADD CONSTRAINT service_history_services_2029_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_DateUpdated_idx4"; -- --- Name: service_history_services_2030 service_history_services_2030_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2030 - ADD CONSTRAINT service_history_services_2030_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx"; -- --- Name: service_history_services_2031 service_history_services_2031_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2031 - ADD CONSTRAINT service_history_services_2031_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx1"; -- --- Name: service_history_services_2032 service_history_services_2032_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2032 - ADD CONSTRAINT service_history_services_2032_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx2"; -- --- Name: service_history_services_2033 service_history_services_2033_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2033 - ADD CONSTRAINT service_history_services_2033_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx3"; -- --- Name: service_history_services_2034 service_history_services_2034_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2034 - ADD CONSTRAINT service_history_services_2034_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx4"; -- --- Name: service_history_services_2035 service_history_services_2035_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2035 - ADD CONSTRAINT service_history_services_2035_pkey PRIMARY KEY (id, date); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_EnrollmentID_PersonalID_idx5"; -- --- Name: service_history_services_2036 service_history_services_2036_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2036 - ADD CONSTRAINT service_history_services_2036_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_EnrollmentID_idx"; -- --- Name: service_history_services_2037 service_history_services_2037_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2037 - ADD CONSTRAINT service_history_services_2037_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_EnrollmentID_idx1"; -- --- Name: service_history_services_2038 service_history_services_2038_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2038 - ADD CONSTRAINT service_history_services_2038_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_EnrollmentID_idx2"; -- --- Name: service_history_services_2039 service_history_services_2039_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2039 - ADD CONSTRAINT service_history_services_2039_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_EnrollmentID_idx3"; -- --- Name: service_history_services_2040 service_history_services_2040_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2040 - ADD CONSTRAINT service_history_services_2040_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_EnrollmentID_idx4"; -- --- Name: service_history_services_2041 service_history_services_2041_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2041 - ADD CONSTRAINT service_history_services_2041_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_ExportID_idx"; -- --- Name: service_history_services_2042 service_history_services_2042_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2042 - ADD CONSTRAINT service_history_services_2042_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_ExportID_idx1"; -- --- Name: service_history_services_2043 service_history_services_2043_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2043 - ADD CONSTRAINT service_history_services_2043_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_ExportID_idx2"; -- --- Name: service_history_services_2044 service_history_services_2044_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2044 - ADD CONSTRAINT service_history_services_2044_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_ExportID_idx3"; -- --- Name: service_history_services_2045 service_history_services_2045_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2045 - ADD CONSTRAINT service_history_services_2045_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_ExportID_idx4"; -- --- Name: service_history_services_2046 service_history_services_2046_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2046 - ADD CONSTRAINT service_history_services_2046_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_PersonalID_idx"; -- --- Name: service_history_services_2047 service_history_services_2047_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2047 - ADD CONSTRAINT service_history_services_2047_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_PersonalID_idx1"; -- --- Name: service_history_services_2048 service_history_services_2048_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2048 - ADD CONSTRAINT service_history_services_2048_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_PersonalID_idx2"; -- --- Name: service_history_services_2049 service_history_services_2049_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2049 - ADD CONSTRAINT service_history_services_2049_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_PersonalID_idx3"; -- --- Name: service_history_services_2050 service_history_services_2050_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_2050 - ADD CONSTRAINT service_history_services_2050_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_PersonalID_idx4"; -- --- Name: service_history_services_was_for_inheritance service_history_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_was_for_inheritance - ADD CONSTRAINT service_history_services_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx"; -- --- Name: service_history_services_remainder service_history_services_remainder_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_history_services_remainder - ADD CONSTRAINT service_history_services_remainder_pkey PRIMARY KEY (id, date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx1"; -- --- Name: service_scanning_scanner_ids service_scanning_scanner_ids_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_scanning_scanner_ids - ADD CONSTRAINT service_scanning_scanner_ids_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx2"; -- --- Name: service_scanning_services service_scanning_services_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.service_scanning_services - ADD CONSTRAINT service_scanning_services_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx3"; -- --- Name: shape_block_groups shape_block_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_block_groups - ADD CONSTRAINT shape_block_groups_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_DateDeleted_idx4"; -- --- Name: shape_cocs shape_cocs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_cocs - ADD CONSTRAINT shape_cocs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_DateProvided_idx"; -- --- Name: shape_counties shape_counties_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_counties - ADD CONSTRAINT shape_counties_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_DateProvided_idx1"; -- --- Name: shape_places shape_places_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_places - ADD CONSTRAINT shape_places_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_DateProvided_idx2"; -- --- Name: shape_states shape_states_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_states - ADD CONSTRAINT shape_states_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_DateProvided_idx3"; -- --- Name: shape_towns shape_towns_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_towns - ADD CONSTRAINT shape_towns_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_DateProvided_idx4"; -- --- Name: shape_zip_codes shape_zip_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.shape_zip_codes - ADD CONSTRAINT shape_zip_codes_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_idx"; -- --- Name: simple_report_cells simple_report_cells_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.simple_report_cells - ADD CONSTRAINT simple_report_cells_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_idx1"; -- --- Name: simple_report_instances simple_report_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.simple_report_instances - ADD CONSTRAINT simple_report_instances_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_idx2"; -- --- Name: simple_report_universe_members simple_report_universe_members_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.simple_report_universe_members - ADD CONSTRAINT simple_report_universe_members_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_idx3"; -- --- Name: synthetic_assessments synthetic_assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.synthetic_assessments - ADD CONSTRAINT synthetic_assessments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_RecordType_idx4"; -- --- Name: synthetic_ce_assessment_project_configs synthetic_ce_assessment_project_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.synthetic_ce_assessment_project_configs - ADD CONSTRAINT synthetic_ce_assessment_project_configs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_ServicesID_data_source_id_idx"; -- --- Name: synthetic_events synthetic_events_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.synthetic_events - ADD CONSTRAINT synthetic_events_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_ServicesID_idx"; -- --- Name: synthetic_youth_education_statuses synthetic_youth_education_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.synthetic_youth_education_statuses - ADD CONSTRAINT synthetic_youth_education_statuses_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_ServicesID_idx1"; -- --- Name: system_colors system_colors_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.system_colors - ADD CONSTRAINT system_colors_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_ServicesID_idx2"; -- --- Name: system_pathways_clients system_pathways_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.system_pathways_clients - ADD CONSTRAINT system_pathways_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_ServicesID_idx3"; -- --- Name: system_pathways_enrollments system_pathways_enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.system_pathways_enrollments - ADD CONSTRAINT system_pathways_enrollments_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_25_ServicesID_idx4"; -- --- Name: taggings taggings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.taggings - ADD CONSTRAINT taggings_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_25_importer_log_id_idx; -- --- Name: tags tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.tags - ADD CONSTRAINT tags_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_25_pkey; -- --- Name: talentlms_completed_trainings talentlms_completed_trainings_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_25_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.talentlms_completed_trainings - ADD CONSTRAINT talentlms_completed_trainings_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_25_source_type_source_id_idx; -- --- Name: talentlms_configs talentlms_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.talentlms_configs - ADD CONSTRAINT talentlms_configs_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateCreated_idx"; -- --- Name: talentlms_courses talentlms_courses_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.talentlms_courses - ADD CONSTRAINT talentlms_courses_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateCreated_idx1"; -- --- Name: talentlms_logins talentlms_logins_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.talentlms_logins - ADD CONSTRAINT talentlms_logins_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateCreated_idx2"; -- --- Name: text_message_messages text_message_messages_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.text_message_messages - ADD CONSTRAINT text_message_messages_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateCreated_idx3"; -- --- Name: text_message_topic_subscribers text_message_topic_subscribers_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.text_message_topic_subscribers - ADD CONSTRAINT text_message_topic_subscribers_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateCreated_idx4"; -- --- Name: text_message_topics text_message_topics_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.text_message_topics - ADD CONSTRAINT text_message_topics_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateDeleted_idx"; -- --- Name: themes themes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.themes - ADD CONSTRAINT themes_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateDeleted_idx1"; -- --- Name: tx_research_exports tx_research_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.tx_research_exports - ADD CONSTRAINT tx_research_exports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateDeleted_idx2"; -- --- Name: uploads uploads_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.uploads - ADD CONSTRAINT uploads_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateDeleted_idx3"; -- --- Name: user_client_permissions user_client_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.user_client_permissions - ADD CONSTRAINT user_client_permissions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateDeleted_idx4"; -- --- Name: user_clients user_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.user_clients - ADD CONSTRAINT user_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateProvided_idx"; -- --- Name: user_viewable_entities user_viewable_entities_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.user_viewable_entities - ADD CONSTRAINT user_viewable_entities_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateProvided_idx1"; -- --- Name: va_check_histories va_check_histories_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.va_check_histories - ADD CONSTRAINT va_check_histories_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateProvided_idx2"; -- --- Name: verification_sources verification_sources_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.verification_sources - ADD CONSTRAINT verification_sources_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateProvided_idx3"; -- --- Name: versions versions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.versions - ADD CONSTRAINT versions_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateProvided_idx4"; -- --- Name: vispdats vispdats_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.vispdats - ADD CONSTRAINT vispdats_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateUpdated_idx"; -- --- Name: warehouse_client_service_history warehouse_client_service_history_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.warehouse_client_service_history - ADD CONSTRAINT warehouse_client_service_history_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateUpdated_idx1"; -- --- Name: warehouse_clients warehouse_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.warehouse_clients - ADD CONSTRAINT warehouse_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateUpdated_idx2"; -- --- Name: warehouse_clients_processed warehouse_clients_processed_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.warehouse_clients_processed - ADD CONSTRAINT warehouse_clients_processed_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateUpdated_idx3"; -- --- Name: warehouse_reports warehouse_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.warehouse_reports - ADD CONSTRAINT warehouse_reports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_DateUpdated_idx4"; -- --- Name: weather weather_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.weather - ADD CONSTRAINT weather_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx"; -- --- Name: whitelisted_projects_for_clients whitelisted_projects_for_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.whitelisted_projects_for_clients - ADD CONSTRAINT whitelisted_projects_for_clients_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx1"; -- --- Name: youth_case_managements youth_case_managements_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.youth_case_managements - ADD CONSTRAINT youth_case_managements_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx2"; -- --- Name: youth_exports youth_exports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.youth_exports - ADD CONSTRAINT youth_exports_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx3"; -- --- Name: youth_follow_ups youth_follow_ups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.youth_follow_ups - ADD CONSTRAINT youth_follow_ups_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx4"; -- --- Name: youth_intakes youth_intakes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.youth_intakes - ADD CONSTRAINT youth_intakes_pkey PRIMARY KEY (id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_EnrollmentID_PersonalID_idx5"; -- --- Name: youth_referrals youth_referrals_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -ALTER TABLE ONLY public.youth_referrals - ADD CONSTRAINT youth_referrals_pkey PRIMARY KEY (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_EnrollmentID_idx"; -- --- Name: ClientUnencrypted_DateCreated_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "ClientUnencrypted_DateCreated_idx" ON public."ClientUnencrypted" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_EnrollmentID_idx1"; -- --- Name: ClientUnencrypted_DateDeleted_data_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "ClientUnencrypted_DateDeleted_data_source_id_idx" ON public."ClientUnencrypted" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_EnrollmentID_idx2"; -- --- Name: ClientUnencrypted_DateUpdated_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "ClientUnencrypted_DateUpdated_idx" ON public."ClientUnencrypted" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_EnrollmentID_idx3"; -- --- Name: ClientUnencrypted_ExportID_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "ClientUnencrypted_ExportID_idx" ON public."ClientUnencrypted" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_EnrollmentID_idx4"; -- --- Name: ClientUnencrypted_FirstName_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "ClientUnencrypted_FirstName_idx" ON public."ClientUnencrypted" USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_ExportID_idx"; -- --- Name: ClientUnencrypted_LastName_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "ClientUnencrypted_LastName_idx" ON public."ClientUnencrypted" USING btree ("LastName"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_ExportID_idx1"; -- --- Name: ClientUnencrypted_PersonalID_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "ClientUnencrypted_PersonalID_idx" ON public."ClientUnencrypted" USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_ExportID_idx2"; -- --- Name: ClientUnencrypted_creator_id_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "ClientUnencrypted_creator_id_idx" ON public."ClientUnencrypted" USING btree (creator_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_ExportID_idx3"; -- --- Name: ClientUnencrypted_data_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "ClientUnencrypted_data_source_id_idx" ON public."ClientUnencrypted" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_ExportID_idx4"; -- --- Name: ClientUnencrypted_pending_date_deleted_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "ClientUnencrypted_pending_date_deleted_idx" ON public."ClientUnencrypted" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_PersonalID_idx"; -- --- Name: Disabilities_DateDeleted_data_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Disabilities_DateDeleted_data_source_id_idx" ON public."Disabilities" USING btree ("DateDeleted", data_source_id) WHERE ("DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_PersonalID_idx1"; -- --- Name: Disabilities_DateDeleted_data_source_id_idx1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Disabilities_DateDeleted_data_source_id_idx1" ON public."Disabilities" USING btree ("DateDeleted", data_source_id) WHERE ("DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_PersonalID_idx2"; -- --- Name: Disabilities_DateDeleted_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Disabilities_DateDeleted_idx" ON public."Disabilities" USING btree ("DateDeleted") WHERE ("DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_PersonalID_idx3"; -- --- Name: Enrollment_2735; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Enrollment_2735" ON public."Enrollment" USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_PersonalID_idx4"; -- --- Name: Enrollment_3085; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Enrollment_3085" ON public."Enrollment" USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx"; -- --- Name: Enrollment_34e3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Enrollment_34e3" ON public."Enrollment" USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx1"; -- --- Name: Enrollment_42af; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Enrollment_42af" ON public."Enrollment" USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx2"; -- --- Name: Enrollment_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Enrollment_42d5" ON public."Enrollment" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx3"; -- --- Name: Enrollment_4337; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Enrollment_4337" ON public."Enrollment" USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_DateDeleted_idx4"; -- --- Name: Enrollment_5328; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Enrollment_5328" ON public."Enrollment" USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_DateProvided_idx"; -- --- Name: Enrollment_603f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Enrollment_603f" ON public."Enrollment" USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_DateProvided_idx1"; -- --- Name: Enrollment_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Enrollment_634d" ON public."Enrollment" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_DateProvided_idx2"; -- --- Name: Enrollment_c548; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Enrollment_c548" ON public."Enrollment" USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_DateProvided_idx3"; -- --- Name: Enrollment_d381; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Enrollment_d381" ON public."Enrollment" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_DateProvided_idx4"; -- --- Name: Enrollment_f3a2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "Enrollment_f3a2" ON public."Enrollment" USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_idx"; -- --- Name: IncomeBenefits_DateDeleted_data_source_id_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "IncomeBenefits_DateDeleted_data_source_id_idx" ON public."IncomeBenefits" USING btree ("DateDeleted", data_source_id) WHERE ("DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_idx1"; -- --- Name: IncomeBenefits_DateDeleted_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "IncomeBenefits_DateDeleted_idx" ON public."IncomeBenefits" USING btree ("DateDeleted") WHERE ("DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_idx2"; -- --- Name: IncomeBenefits_data_source_id_DateDeleted_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "IncomeBenefits_data_source_id_DateDeleted_idx" ON public."IncomeBenefits" USING btree (data_source_id, "DateDeleted") WHERE ("DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_idx3"; -- --- Name: affiliation_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX affiliation_date_created ON public."Affiliation" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_RecordType_idx4"; -- --- Name: affiliation_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX affiliation_date_updated ON public."Affiliation" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_ServicesID_data_source_id_idx"; -- --- Name: affiliation_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX affiliation_export_id ON public."Affiliation" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_ServicesID_idx"; -- --- Name: apr_client_conflict_columns; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX apr_client_conflict_columns ON public.hud_report_apr_clients USING btree (client_id, data_source_id, report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_ServicesID_idx1"; -- --- Name: aq_aq_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX aq_aq_id_ds_id ON public."AssessmentQuestions" USING btree ("AssessmentQuestionID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_ServicesID_idx2"; -- --- Name: ar_ar_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX ar_ar_id_ds_id ON public."AssessmentResults" USING btree ("AssessmentResultID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_ServicesID_idx3"; -- --- Name: assessment_p_id_en_id_ds_id_a_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX assessment_p_id_en_id_ds_id_a_id ON public."Assessment" USING btree ("PersonalID", "EnrollmentID", data_source_id, "AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_26_ServicesID_idx4"; -- --- Name: assessment_q_a_id_ds_id_p_id_en_id_aq_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX assessment_q_a_id_ds_id_p_id_en_id_aq_id ON public."AssessmentQuestions" USING btree ("AssessmentID", data_source_id, "PersonalID", "EnrollmentID", "AssessmentQuestionID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_26_importer_log_id_idx; -- --- Name: assessment_r_a_id_ds_id_p_id_en_id_ar_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX assessment_r_a_id_ds_id_p_id_en_id_ar_id ON public."AssessmentResults" USING btree ("AssessmentID", data_source_id, "PersonalID", "EnrollmentID", "AssessmentResultID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_26_pkey; -- --- Name: c_r_system_pathways_clients_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_26_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX c_r_system_pathways_clients_idx ON public.system_pathways_clients USING btree (client_id, report_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_26_source_type_source_id_idx; -- --- Name: c_r_system_pathways_enrollments_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX c_r_system_pathways_enrollments_idx ON public.system_pathways_enrollments USING btree (client_id, report_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateCreated_idx"; -- --- Name: ch_enrollments_e_id_ch; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX ch_enrollments_e_id_ch ON public.ch_enrollments USING btree (enrollment_id, chronically_homeless_at_entry); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateCreated_idx1"; -- --- Name: ch_enrollments_e_id_pro; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX ch_enrollments_e_id_pro ON public.ch_enrollments USING btree (enrollment_id, processed_as); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateCreated_idx2"; -- --- Name: client_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX client_date_created ON public."Client" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateCreated_idx3"; -- --- Name: client_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX client_date_updated ON public."Client" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateCreated_idx4"; -- --- Name: client_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX client_export_id ON public."Client" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateDeleted_idx"; -- --- Name: client_first_name; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX client_first_name ON public."Client" USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateDeleted_idx1"; -- --- Name: client_id_ret_index; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX client_id_ret_index ON public.recent_report_enrollments USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateDeleted_idx2"; -- --- Name: client_id_rsh_index; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX client_id_rsh_index ON public.recent_service_history USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateDeleted_idx3"; -- --- Name: client_last_name; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX client_last_name ON public."Client" USING btree ("LastName"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateDeleted_idx4"; -- --- Name: client_personal_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX client_personal_id ON public."Client" USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateProvided_idx"; -- --- Name: coc_code_test; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX coc_code_test ON public."EnrollmentCoC" USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateProvided_idx1"; -- --- Name: computed_project_type_rsh_index; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX computed_project_type_rsh_index ON public.recent_service_history USING btree (computed_project_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateProvided_idx2"; -- --- Name: cur_liv_sit_cur_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX cur_liv_sit_cur_id_ds_id ON public."CurrentLivingSituation" USING btree ("CurrentLivingSitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateProvided_idx3"; -- --- Name: cur_liv_sit_p_id_en_id_ds_id_cur_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX cur_liv_sit_p_id_en_id_ds_id_cur_id ON public."CurrentLivingSituation" USING btree ("PersonalID", "EnrollmentID", data_source_id, "CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateProvided_idx4"; -- --- Name: cur_liv_sit_sit_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX cur_liv_sit_sit_id_ds_id ON public."CurrentLivingSituation" USING btree ("CurrentLivingSitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateUpdated_idx"; -- --- Name: date_rsh_index; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX date_rsh_index ON public.recent_service_history USING btree (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateUpdated_idx1"; -- --- Name: disabilities_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX disabilities_date_created ON public."Disabilities" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateUpdated_idx2"; -- --- Name: disabilities_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX disabilities_date_updated ON public."Disabilities" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateUpdated_idx3"; -- --- Name: disabilities_disability_type_response_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX disabilities_disability_type_response_idx ON public."Disabilities" USING btree ("DisabilityType", "DisabilityResponse", "InformationDate", "PersonalID", "EnrollmentID", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_DateUpdated_idx4"; -- --- Name: disabilities_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX disabilities_export_id ON public."Disabilities" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx"; -- --- Name: dq_client_conflict_columns; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX dq_client_conflict_columns ON public.hud_report_dq_clients USING btree (client_id, data_source_id, report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx1"; -- --- Name: ds_ceparticipation_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX ds_ceparticipation_idx ON public."CEParticipation" USING btree (data_source_id, "CEParticipationID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx2"; -- --- Name: ds_hmisparticipation_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX ds_hmisparticipation_idx ON public."HMISParticipation" USING btree (data_source_id, "HMISParticipationID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx3"; -- --- Name: e_a_c_d_a_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX e_a_c_d_a_idx ON public.eccovia_assessments USING btree (client_id, data_source_id, assessment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx4"; -- --- Name: e_c_C_c_d_a_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "e_c_C_c_d_a_idx" ON public.eccovia_client_contacts USING btree (client_id, data_source_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_EnrollmentID_PersonalID_idx5"; -- --- Name: e_c_m_c_d_a_u_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX e_c_m_c_d_a_u_idx ON public.eccovia_case_managers USING btree (client_id, data_source_id, case_manager_id, user_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_EnrollmentID_idx"; -- --- Name: ee_ee_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX ee_ee_id_ds_id ON public."EmploymentEducation" USING btree ("EmploymentEducationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_EnrollmentID_idx1"; -- --- Name: employment_education_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX employment_education_date_created ON public."EmploymentEducation" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_EnrollmentID_idx2"; -- --- Name: employment_education_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX employment_education_date_updated ON public."EmploymentEducation" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_EnrollmentID_idx3"; -- --- Name: employment_education_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX employment_education_export_id ON public."EmploymentEducation" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_EnrollmentID_idx4"; -- --- Name: en_en_id_p_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX en_en_id_p_id_ds_id ON public."Enrollment" USING btree ("EnrollmentID", "PersonalID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_ExportID_idx"; -- --- Name: en_tt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX en_tt ON public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_ExportID_idx1"; -- --- Name: enrollment_coc_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX enrollment_coc_date_created ON public."EnrollmentCoC" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_ExportID_idx2"; -- --- Name: enrollment_coc_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX enrollment_coc_date_updated ON public."EnrollmentCoC" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_ExportID_idx3"; -- --- Name: enrollment_coc_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX enrollment_coc_export_id ON public."EnrollmentCoC" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_ExportID_idx4"; -- --- Name: enrollment_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX enrollment_date_created ON public."Enrollment" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_PersonalID_idx"; -- --- Name: enrollment_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX enrollment_date_updated ON public."Enrollment" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_PersonalID_idx1"; -- --- Name: enrollment_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX enrollment_export_id ON public."Enrollment" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_PersonalID_idx2"; -- --- Name: entrydate_ret_index; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX entrydate_ret_index ON public.recent_report_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_PersonalID_idx3"; -- --- Name: ev_ev_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX ev_ev_id_ds_id ON public."Event" USING btree ("EventID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_PersonalID_idx4"; -- --- Name: event_ds_id_p_id_en_id_ev_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX event_ds_id_p_id_en_id_ev_id ON public."Event" USING btree (data_source_id, "PersonalID", "EnrollmentID", "EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx"; -- --- Name: ex_id_ds_id_fc_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX ex_id_ds_id_fc_idx ON public.financial_clients USING btree (external_client_id, data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx1"; -- --- Name: exit_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX exit_date_created ON public."Exit" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx2"; -- --- Name: exit_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX exit_date_updated ON public."Exit" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx3"; -- --- Name: exit_en_id_p_id_ds_id_ex_d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX exit_en_id_p_id_ds_id_ex_d ON public."Exit" USING btree ("EnrollmentID", "PersonalID", data_source_id, "ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_DateDeleted_idx4"; -- --- Name: exit_en_id_p_id_ds_id_ex_d_undeleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX exit_en_id_p_id_ds_id_ex_d_undeleted ON public."Exit" USING btree ("EnrollmentID", "PersonalID", data_source_id, "ExitDate") WHERE ("DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_DateProvided_idx"; -- --- Name: exit_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX exit_export_id ON public."Exit" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_DateProvided_idx1"; -- --- Name: exit_p_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX exit_p_id_ds_id ON public."Exit" USING btree ("PersonalID", data_source_id) WHERE ("DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_DateProvided_idx2"; -- --- Name: export_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX export_export_id ON public."Export" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_DateProvided_idx3"; -- --- Name: fq_r_id_p; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX fq_r_id_p ON public.pm_client_projects USING btree (for_question, report_id, period); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_DateProvided_idx4"; -- --- Name: funder_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX funder_date_created ON public."Funder" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_idx"; -- --- Name: funder_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX funder_date_updated ON public."Funder" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_idx1"; -- --- Name: funder_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX funder_export_id ON public."Funder" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_idx2"; -- --- Name: gs_source_id_source_type_uniq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX gs_source_id_source_type_uniq ON public.generic_services USING btree (source_id, source_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_idx3"; -- --- Name: health_and_dv_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX health_and_dv_date_created ON public."HealthAndDV" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_RecordType_idx4"; -- --- Name: health_and_dv_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX health_and_dv_date_updated ON public."HealthAndDV" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_ServicesID_data_source_id_idx"; -- --- Name: health_and_dv_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX health_and_dv_export_id ON public."HealthAndDV" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_ServicesID_idx"; -- --- Name: hmis2022affiliations_9Tjd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022affiliations_9Tjd" ON public.hmis_2022_affiliations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_ServicesID_idx1"; -- --- Name: hmis2022affiliations_MCe3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022affiliations_MCe3" ON public.hmis_2022_affiliations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_ServicesID_idx2"; -- --- Name: hmis2022affiliations_lc0a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022affiliations_lc0a ON public.hmis_2022_affiliations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_ServicesID_idx3"; -- --- Name: hmis2022affiliations_lt6c; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022affiliations_lt6c ON public.hmis_2022_affiliations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_27_ServicesID_idx4"; -- --- Name: hmis2022affiliations_otVM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022affiliations_otVM" ON public.hmis_2022_affiliations USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_27_importer_log_id_idx; -- --- Name: hmis2022assessmentquestions_66AG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentquestions_66AG" ON public.hmis_2022_assessment_questions USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_27_pkey; -- --- Name: hmis2022assessmentquestions_67BE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_27_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentquestions_67BE" ON public.hmis_2022_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_27_source_type_source_id_idx; -- --- Name: hmis2022assessmentquestions_8Qlc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentquestions_8Qlc" ON public.hmis_2022_assessment_questions USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateCreated_idx"; -- --- Name: hmis2022assessmentquestions_FW3S; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentquestions_FW3S" ON public.hmis_2022_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateCreated_idx1"; -- --- Name: hmis2022assessmentquestions_NcX9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentquestions_NcX9" ON public.hmis_2022_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateCreated_idx2"; -- --- Name: hmis2022assessmentquestions_U4bM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentquestions_U4bM" ON public.hmis_2022_assessment_questions USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateCreated_idx3"; -- --- Name: hmis2022assessmentquestions_Y8GY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentquestions_Y8GY" ON public.hmis_2022_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateCreated_idx4"; -- --- Name: hmis2022assessmentquestions_cKeo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentquestions_cKeo" ON public.hmis_2022_assessment_questions USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateDeleted_idx"; -- --- Name: hmis2022assessmentquestions_jsNW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentquestions_jsNW" ON public.hmis_2022_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateDeleted_idx1"; -- --- Name: hmis2022assessmentquestions_mNPM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentquestions_mNPM" ON public.hmis_2022_assessment_questions USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateDeleted_idx2"; -- --- Name: hmis2022assessmentresults_4YlO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentresults_4YlO" ON public.hmis_2022_assessment_results USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateDeleted_idx3"; -- --- Name: hmis2022assessmentresults_A8se; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentresults_A8se" ON public.hmis_2022_assessment_results USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateDeleted_idx4"; -- --- Name: hmis2022assessmentresults_BRi6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentresults_BRi6" ON public.hmis_2022_assessment_results USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateProvided_idx"; -- --- Name: hmis2022assessmentresults_BgP9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentresults_BgP9" ON public.hmis_2022_assessment_results USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateProvided_idx1"; -- --- Name: hmis2022assessmentresults_QszM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentresults_QszM" ON public.hmis_2022_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateProvided_idx2"; -- --- Name: hmis2022assessmentresults_j7wN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentresults_j7wN" ON public.hmis_2022_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateProvided_idx3"; -- --- Name: hmis2022assessmentresults_l8P3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentresults_l8P3" ON public.hmis_2022_assessment_results USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateProvided_idx4"; -- --- Name: hmis2022assessmentresults_pBh1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentresults_pBh1" ON public.hmis_2022_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateUpdated_idx"; -- --- Name: hmis2022assessmentresults_qwBT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentresults_qwBT" ON public.hmis_2022_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateUpdated_idx1"; -- --- Name: hmis2022assessmentresults_wvgD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessmentresults_wvgD" ON public.hmis_2022_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateUpdated_idx2"; -- --- Name: hmis2022assessments_1WRE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_1WRE" ON public.hmis_2022_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateUpdated_idx3"; -- --- Name: hmis2022assessments_1xkk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022assessments_1xkk ON public.hmis_2022_assessments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_DateUpdated_idx4"; -- --- Name: hmis2022assessments_8G4O; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_8G4O" ON public.hmis_2022_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx"; -- --- Name: hmis2022assessments_A3yK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_A3yK" ON public.hmis_2022_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis2022assessments_ACmg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_ACmg" ON public.hmis_2022_assessments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis2022assessments_AlYO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_AlYO" ON public.hmis_2022_assessments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis2022assessments_BXpI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_BXpI" ON public.hmis_2022_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis2022assessments_ByZf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_ByZf" ON public.hmis_2022_assessments USING btree ("AssessmentID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis2022assessments_D5nN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_D5nN" ON public.hmis_2022_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_EnrollmentID_idx"; -- --- Name: hmis2022assessments_KR2P; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_KR2P" ON public.hmis_2022_assessments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_EnrollmentID_idx1"; -- --- Name: hmis2022assessments_LJiY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_LJiY" ON public.hmis_2022_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_EnrollmentID_idx2"; -- --- Name: hmis2022assessments_PDLH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_PDLH" ON public.hmis_2022_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_EnrollmentID_idx3"; -- --- Name: hmis2022assessments_PKqe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_PKqe" ON public.hmis_2022_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_EnrollmentID_idx4"; -- --- Name: hmis2022assessments_W410; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_W410" ON public.hmis_2022_assessments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_ExportID_idx"; -- --- Name: hmis2022assessments_bjSD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_bjSD" ON public.hmis_2022_assessments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_ExportID_idx1"; -- --- Name: hmis2022assessments_fvZW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_fvZW" ON public.hmis_2022_assessments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_ExportID_idx2"; -- --- Name: hmis2022assessments_je8c; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022assessments_je8c ON public.hmis_2022_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_ExportID_idx3"; -- --- Name: hmis2022assessments_lRgj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_lRgj" ON public.hmis_2022_assessments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_ExportID_idx4"; -- --- Name: hmis2022assessments_lWWv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_lWWv" ON public.hmis_2022_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_PersonalID_idx"; -- --- Name: hmis2022assessments_qLFb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_qLFb" ON public.hmis_2022_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_PersonalID_idx1"; -- --- Name: hmis2022assessments_r7np; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022assessments_r7np ON public.hmis_2022_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_PersonalID_idx2"; -- --- Name: hmis2022assessments_sqjV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_sqjV" ON public.hmis_2022_assessments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_PersonalID_idx3"; -- --- Name: hmis2022assessments_t8k1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022assessments_t8k1 ON public.hmis_2022_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_PersonalID_idx4"; -- --- Name: hmis2022assessments_vHPu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_vHPu" ON public.hmis_2022_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx"; -- --- Name: hmis2022assessments_vTjw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022assessments_vTjw" ON public.hmis_2022_assessments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx1"; -- --- Name: hmis2022clients_0K2Q; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_0K2Q" ON public.hmis_2022_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx2"; -- --- Name: hmis2022clients_0nAI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_0nAI" ON public.hmis_2022_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx3"; -- --- Name: hmis2022clients_1ZkA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_1ZkA" ON public.hmis_2022_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_DateDeleted_idx4"; -- --- Name: hmis2022clients_5PV0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_5PV0" ON public.hmis_2022_clients USING btree ("DOB"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_DateProvided_idx"; -- --- Name: hmis2022clients_8dIx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_8dIx" ON public.hmis_2022_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_DateProvided_idx1"; -- --- Name: hmis2022clients_E1Fj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_E1Fj" ON public.hmis_2022_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_DateProvided_idx2"; -- --- Name: hmis2022clients_EuyH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_EuyH" ON public.hmis_2022_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_DateProvided_idx3"; -- --- Name: hmis2022clients_G2Er; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_G2Er" ON public.hmis_2022_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_DateProvided_idx4"; -- --- Name: hmis2022clients_H9sW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_H9sW" ON public.hmis_2022_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_idx"; -- --- Name: hmis2022clients_HLPo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_HLPo" ON public.hmis_2022_clients USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_idx1"; -- --- Name: hmis2022clients_I9Fk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_I9Fk" ON public.hmis_2022_clients USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_idx2"; -- --- Name: hmis2022clients_I9Hf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_I9Hf" ON public.hmis_2022_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_idx3"; -- --- Name: hmis2022clients_IHZO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_IHZO" ON public.hmis_2022_clients USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_RecordType_idx4"; -- --- Name: hmis2022clients_JCgD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_JCgD" ON public.hmis_2022_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_ServicesID_data_source_id_idx"; -- --- Name: hmis2022clients_Lowh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_Lowh" ON public.hmis_2022_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_ServicesID_idx"; -- --- Name: hmis2022clients_NBVb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_NBVb" ON public.hmis_2022_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_ServicesID_idx1"; -- --- Name: hmis2022clients_O4VV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_O4VV" ON public.hmis_2022_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_ServicesID_idx2"; -- --- Name: hmis2022clients_V6Ey; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_V6Ey" ON public.hmis_2022_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_ServicesID_idx3"; -- --- Name: hmis2022clients_WRGs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_WRGs" ON public.hmis_2022_clients USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_28_ServicesID_idx4"; -- --- Name: hmis2022clients_YO8w; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_YO8w" ON public.hmis_2022_clients USING btree ("LastName"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_28_importer_log_id_idx; -- --- Name: hmis2022clients_bgBr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_bgBr" ON public.hmis_2022_clients USING btree ("DOB"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_28_pkey; -- --- Name: hmis2022clients_cWzB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_28_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_cWzB" ON public.hmis_2022_clients USING btree ("DOB"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_28_source_type_source_id_idx; -- --- Name: hmis2022clients_ctEI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_ctEI" ON public.hmis_2022_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateCreated_idx"; -- --- Name: hmis2022clients_fT7G; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_fT7G" ON public.hmis_2022_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateCreated_idx1"; -- --- Name: hmis2022clients_fuco; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022clients_fuco ON public.hmis_2022_clients USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateCreated_idx2"; -- --- Name: hmis2022clients_kDCg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_kDCg" ON public.hmis_2022_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateCreated_idx3"; -- --- Name: hmis2022clients_kPEm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_kPEm" ON public.hmis_2022_clients USING btree ("DOB"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateCreated_idx4"; -- --- Name: hmis2022clients_kXnX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_kXnX" ON public.hmis_2022_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateDeleted_idx"; -- --- Name: hmis2022clients_lDTO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_lDTO" ON public.hmis_2022_clients USING btree ("LastName"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateDeleted_idx1"; -- --- Name: hmis2022clients_lUID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_lUID" ON public.hmis_2022_clients USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateDeleted_idx2"; -- --- Name: hmis2022clients_mwtf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022clients_mwtf ON public.hmis_2022_clients USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateDeleted_idx3"; -- --- Name: hmis2022clients_nPqP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_nPqP" ON public.hmis_2022_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateDeleted_idx4"; -- --- Name: hmis2022clients_o1zL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_o1zL" ON public.hmis_2022_clients USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateProvided_idx"; -- --- Name: hmis2022clients_rhmD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_rhmD" ON public.hmis_2022_clients USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateProvided_idx1"; -- --- Name: hmis2022clients_sjHR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_sjHR" ON public.hmis_2022_clients USING btree ("DOB"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateProvided_idx2"; -- --- Name: hmis2022clients_smwv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022clients_smwv ON public.hmis_2022_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateProvided_idx3"; -- --- Name: hmis2022clients_tAtk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_tAtk" ON public.hmis_2022_clients USING btree ("LastName"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateProvided_idx4"; -- --- Name: hmis2022clients_vm2H; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_vm2H" ON public.hmis_2022_clients USING btree ("LastName"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateUpdated_idx"; -- --- Name: hmis2022clients_wPM4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_wPM4" ON public.hmis_2022_clients USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateUpdated_idx1"; -- --- Name: hmis2022clients_xavS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022clients_xavS" ON public.hmis_2022_clients USING btree ("LastName"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateUpdated_idx2"; -- --- Name: hmis2022currentlivingsituations_1i8x; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022currentlivingsituations_1i8x ON public.hmis_2022_current_living_situations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateUpdated_idx3"; -- --- Name: hmis2022currentlivingsituations_4lpH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_4lpH" ON public.hmis_2022_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_DateUpdated_idx4"; -- --- Name: hmis2022currentlivingsituations_5TrW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_5TrW" ON public.hmis_2022_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx"; -- --- Name: hmis2022currentlivingsituations_D7JX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_D7JX" ON public.hmis_2022_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis2022currentlivingsituations_Dihe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_Dihe" ON public.hmis_2022_current_living_situations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis2022currentlivingsituations_ELrQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_ELrQ" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis2022currentlivingsituations_Jc9G; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_Jc9G" ON public.hmis_2022_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis2022currentlivingsituations_No3V; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_No3V" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis2022currentlivingsituations_OUiJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_OUiJ" ON public.hmis_2022_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_EnrollmentID_idx"; -- --- Name: hmis2022currentlivingsituations_P7xE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_P7xE" ON public.hmis_2022_current_living_situations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_EnrollmentID_idx1"; -- --- Name: hmis2022currentlivingsituations_Q6ST; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_Q6ST" ON public.hmis_2022_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_EnrollmentID_idx2"; -- --- Name: hmis2022currentlivingsituations_Q9cW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_Q9cW" ON public.hmis_2022_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_EnrollmentID_idx3"; -- --- Name: hmis2022currentlivingsituations_QXw2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_QXw2" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_EnrollmentID_idx4"; -- --- Name: hmis2022currentlivingsituations_S2Pz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_S2Pz" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_ExportID_idx"; -- --- Name: hmis2022currentlivingsituations_S7CL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_S7CL" ON public.hmis_2022_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_ExportID_idx1"; -- --- Name: hmis2022currentlivingsituations_TGSd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_TGSd" ON public.hmis_2022_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_ExportID_idx2"; -- --- Name: hmis2022currentlivingsituations_XjUe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_XjUe" ON public.hmis_2022_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_ExportID_idx3"; -- --- Name: hmis2022currentlivingsituations_YN5f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_YN5f" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_ExportID_idx4"; -- --- Name: hmis2022currentlivingsituations_ZUJw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_ZUJw" ON public.hmis_2022_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_PersonalID_idx"; -- --- Name: hmis2022currentlivingsituations_aP5P; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_aP5P" ON public.hmis_2022_current_living_situations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_PersonalID_idx1"; -- --- Name: hmis2022currentlivingsituations_bdhj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022currentlivingsituations_bdhj ON public.hmis_2022_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_PersonalID_idx2"; -- --- Name: hmis2022currentlivingsituations_cf01; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022currentlivingsituations_cf01 ON public.hmis_2022_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_PersonalID_idx3"; -- --- Name: hmis2022currentlivingsituations_dREG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_dREG" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_PersonalID_idx4"; -- --- Name: hmis2022currentlivingsituations_dhqx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022currentlivingsituations_dhqx ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx"; -- --- Name: hmis2022currentlivingsituations_fcmV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_fcmV" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx1"; -- --- Name: hmis2022currentlivingsituations_g26S; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_g26S" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx2"; -- --- Name: hmis2022currentlivingsituations_jaT0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_jaT0" ON public.hmis_2022_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx3"; -- --- Name: hmis2022currentlivingsituations_ktGp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_ktGp" ON public.hmis_2022_current_living_situations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_DateDeleted_idx4"; -- --- Name: hmis2022currentlivingsituations_nYeO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_nYeO" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_DateProvided_idx"; -- --- Name: hmis2022currentlivingsituations_sxaI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022currentlivingsituations_sxaI" ON public.hmis_2022_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_DateProvided_idx1"; -- --- Name: hmis2022disabilities_2fdh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022disabilities_2fdh ON public.hmis_2022_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_DateProvided_idx2"; -- --- Name: hmis2022disabilities_8STr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_8STr" ON public.hmis_2022_disabilities USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_DateProvided_idx3"; -- --- Name: hmis2022disabilities_Clxr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_Clxr" ON public.hmis_2022_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_DateProvided_idx4"; -- --- Name: hmis2022disabilities_DcsA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_DcsA" ON public.hmis_2022_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_idx"; -- --- Name: hmis2022disabilities_EnAl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_EnAl" ON public.hmis_2022_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_idx1"; -- --- Name: hmis2022disabilities_Fc3v; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_Fc3v" ON public.hmis_2022_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_idx2"; -- --- Name: hmis2022disabilities_GajH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_GajH" ON public.hmis_2022_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_idx3"; -- --- Name: hmis2022disabilities_GjW5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_GjW5" ON public.hmis_2022_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_RecordType_idx4"; -- --- Name: hmis2022disabilities_HxEV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_HxEV" ON public.hmis_2022_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_ServicesID_data_source_id_idx"; -- --- Name: hmis2022disabilities_JZgU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_JZgU" ON public.hmis_2022_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_ServicesID_idx"; -- --- Name: hmis2022disabilities_KpIn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_KpIn" ON public.hmis_2022_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_ServicesID_idx1"; -- --- Name: hmis2022disabilities_Ku2m; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_Ku2m" ON public.hmis_2022_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_ServicesID_idx2"; -- --- Name: hmis2022disabilities_QvrC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_QvrC" ON public.hmis_2022_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_ServicesID_idx3"; -- --- Name: hmis2022disabilities_RCMq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_RCMq" ON public.hmis_2022_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_29_ServicesID_idx4"; -- --- Name: hmis2022disabilities_RKMq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_RKMq" ON public.hmis_2022_disabilities USING btree ("DateUpdated"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_29_importer_log_id_idx; -- --- Name: hmis2022disabilities_UzGK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_UzGK" ON public.hmis_2022_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_29_pkey; -- --- Name: hmis2022disabilities_VCx7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_29_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_VCx7" ON public.hmis_2022_disabilities USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_29_source_type_source_id_idx; -- --- Name: hmis2022disabilities_XiFD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_XiFD" ON public.hmis_2022_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateCreated_idx"; -- --- Name: hmis2022disabilities_XtPr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_XtPr" ON public.hmis_2022_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateCreated_idx1"; -- --- Name: hmis2022disabilities_YfE6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_YfE6" ON public.hmis_2022_disabilities USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateCreated_idx2"; -- --- Name: hmis2022disabilities_Yqqw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_Yqqw" ON public.hmis_2022_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateCreated_idx3"; -- --- Name: hmis2022disabilities_e39G; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_e39G" ON public.hmis_2022_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateCreated_idx4"; -- --- Name: hmis2022disabilities_f6dj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022disabilities_f6dj ON public.hmis_2022_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateDeleted_idx"; -- --- Name: hmis2022disabilities_mMjd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_mMjd" ON public.hmis_2022_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateDeleted_idx1"; -- --- Name: hmis2022disabilities_mwGB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_mwGB" ON public.hmis_2022_disabilities USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateDeleted_idx2"; -- --- Name: hmis2022disabilities_sUB4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_sUB4" ON public.hmis_2022_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateDeleted_idx3"; -- --- Name: hmis2022disabilities_sWeo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_sWeo" ON public.hmis_2022_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateDeleted_idx4"; -- --- Name: hmis2022disabilities_trSP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_trSP" ON public.hmis_2022_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateProvided_idx"; -- --- Name: hmis2022disabilities_v0nQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_v0nQ" ON public.hmis_2022_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateProvided_idx1"; -- --- Name: hmis2022disabilities_yEVb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022disabilities_yEVb" ON public.hmis_2022_disabilities USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateProvided_idx2"; -- --- Name: hmis2022employmenteducations_01I4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_01I4" ON public.hmis_2022_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateProvided_idx3"; -- --- Name: hmis2022employmenteducations_0QcH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_0QcH" ON public.hmis_2022_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateProvided_idx4"; -- --- Name: hmis2022employmenteducations_0bvE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_0bvE" ON public.hmis_2022_employment_educations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateUpdated_idx"; -- --- Name: hmis2022employmenteducations_0mfY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_0mfY" ON public.hmis_2022_employment_educations USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateUpdated_idx1"; -- --- Name: hmis2022employmenteducations_10CJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_10CJ" ON public.hmis_2022_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateUpdated_idx2"; -- --- Name: hmis2022employmenteducations_1Y1K; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_1Y1K" ON public.hmis_2022_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateUpdated_idx3"; -- --- Name: hmis2022employmenteducations_1uKW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_1uKW" ON public.hmis_2022_employment_educations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_DateUpdated_idx4"; -- --- Name: hmis2022employmenteducations_2YQq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_2YQq" ON public.hmis_2022_employment_educations USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx"; -- --- Name: hmis2022employmenteducations_4vda; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022employmenteducations_4vda ON public.hmis_2022_employment_educations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis2022employmenteducations_6zwy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022employmenteducations_6zwy ON public.hmis_2022_employment_educations USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis2022employmenteducations_8RGj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_8RGj" ON public.hmis_2022_employment_educations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis2022employmenteducations_BpmW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_BpmW" ON public.hmis_2022_employment_educations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis2022employmenteducations_D2yI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_D2yI" ON public.hmis_2022_employment_educations USING btree ("ExportID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis2022employmenteducations_Dnln; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_Dnln" ON public.hmis_2022_employment_educations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_EnrollmentID_idx"; -- --- Name: hmis2022employmenteducations_Fj6e; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_Fj6e" ON public.hmis_2022_employment_educations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_EnrollmentID_idx1"; -- --- Name: hmis2022employmenteducations_LanN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_LanN" ON public.hmis_2022_employment_educations USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_EnrollmentID_idx2"; -- --- Name: hmis2022employmenteducations_TEaN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_TEaN" ON public.hmis_2022_employment_educations USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_EnrollmentID_idx3"; -- --- Name: hmis2022employmenteducations_VQ2U; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_VQ2U" ON public.hmis_2022_employment_educations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_EnrollmentID_idx4"; -- --- Name: hmis2022employmenteducations_a5yU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_a5yU" ON public.hmis_2022_employment_educations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_ExportID_idx"; -- --- Name: hmis2022employmenteducations_dg9r; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022employmenteducations_dg9r ON public.hmis_2022_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_ExportID_idx1"; -- --- Name: hmis2022employmenteducations_e8J8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_e8J8" ON public.hmis_2022_employment_educations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_ExportID_idx2"; -- --- Name: hmis2022employmenteducations_g4D9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_g4D9" ON public.hmis_2022_employment_educations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_ExportID_idx3"; -- --- Name: hmis2022employmenteducations_kcTC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_kcTC" ON public.hmis_2022_employment_educations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_ExportID_idx4"; -- --- Name: hmis2022employmenteducations_m0aK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_m0aK" ON public.hmis_2022_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_PersonalID_idx"; -- --- Name: hmis2022employmenteducations_nQzF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_nQzF" ON public.hmis_2022_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_PersonalID_idx1"; -- --- Name: hmis2022employmenteducations_njVL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_njVL" ON public.hmis_2022_employment_educations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_PersonalID_idx2"; -- --- Name: hmis2022employmenteducations_piba; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022employmenteducations_piba ON public.hmis_2022_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_PersonalID_idx3"; -- --- Name: hmis2022employmenteducations_rUdW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_rUdW" ON public.hmis_2022_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_PersonalID_idx4"; -- --- Name: hmis2022employmenteducations_telE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_telE" ON public.hmis_2022_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx"; -- --- Name: hmis2022employmenteducations_vFzw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022employmenteducations_vFzw" ON public.hmis_2022_employment_educations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx1"; -- --- Name: hmis2022enrollmentcocs_00w1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollmentcocs_00w1 ON public.hmis_2022_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx2"; -- --- Name: hmis2022enrollmentcocs_0w9c; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollmentcocs_0w9c ON public.hmis_2022_enrollment_cocs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx3"; -- --- Name: hmis2022enrollmentcocs_1cHr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_1cHr" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_DateDeleted_idx4"; -- --- Name: hmis2022enrollmentcocs_4x91; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollmentcocs_4x91 ON public.hmis_2022_enrollment_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_DateProvided_idx"; -- --- Name: hmis2022enrollmentcocs_5zjF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_5zjF" ON public.hmis_2022_enrollment_cocs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_DateProvided_idx1"; -- --- Name: hmis2022enrollmentcocs_6tJM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_6tJM" ON public.hmis_2022_enrollment_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_DateProvided_idx2"; -- --- Name: hmis2022enrollmentcocs_AwFj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_AwFj" ON public.hmis_2022_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_DateProvided_idx3"; -- --- Name: hmis2022enrollmentcocs_BpYl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_BpYl" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_DateProvided_idx4"; -- --- Name: hmis2022enrollmentcocs_CPqr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_CPqr" ON public.hmis_2022_enrollment_cocs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_idx"; -- --- Name: hmis2022enrollmentcocs_DDdl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_DDdl" ON public.hmis_2022_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_idx1"; -- --- Name: hmis2022enrollmentcocs_DPzf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_DPzf" ON public.hmis_2022_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_idx2"; -- --- Name: hmis2022enrollmentcocs_DssF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_DssF" ON public.hmis_2022_enrollment_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_idx3"; -- --- Name: hmis2022enrollmentcocs_ErL4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_ErL4" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_RecordType_idx4"; -- --- Name: hmis2022enrollmentcocs_Gu7W; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_Gu7W" ON public.hmis_2022_enrollment_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_ServicesID_data_source_id_idx"; -- --- Name: hmis2022enrollmentcocs_IMgq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_IMgq" ON public.hmis_2022_enrollment_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_ServicesID_idx"; -- --- Name: hmis2022enrollmentcocs_JPql; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_JPql" ON public.hmis_2022_enrollment_cocs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_ServicesID_idx1"; -- --- Name: hmis2022enrollmentcocs_JhHT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_JhHT" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_ServicesID_idx2"; -- --- Name: hmis2022enrollmentcocs_NW2c; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_NW2c" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_ServicesID_idx3"; -- --- Name: hmis2022enrollmentcocs_Oj66; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_Oj66" ON public.hmis_2022_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_ServicesID_idx4"; -- --- Name: hmis2022enrollmentcocs_RDDm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_ServicesID_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_RDDm" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_2_ServicesID_importer_log_id_idx"; -- --- Name: hmis2022enrollmentcocs_SLq3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_SLq3" ON public.hmis_2022_enrollment_cocs USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_2_importer_log_id_idx; -- --- Name: hmis2022enrollmentcocs_TBBA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_TBBA" ON public.hmis_2022_enrollment_cocs USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_2_pkey; -- --- Name: hmis2022enrollmentcocs_XK0J; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_2_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_XK0J" ON public.hmis_2022_enrollment_cocs USING btree ("DateCreated"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_2_source_type_source_id_idx; -- --- Name: hmis2022enrollmentcocs_Xq7j; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_Xq7j" ON public.hmis_2022_enrollment_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateCreated_idx"; -- --- Name: hmis2022enrollmentcocs_bKTB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_bKTB" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateCreated_idx1"; -- --- Name: hmis2022enrollmentcocs_ce8t; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollmentcocs_ce8t ON public.hmis_2022_enrollment_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateCreated_idx2"; -- --- Name: hmis2022enrollmentcocs_d0Ax; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_d0Ax" ON public.hmis_2022_enrollment_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateCreated_idx3"; -- --- Name: hmis2022enrollmentcocs_e294; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollmentcocs_e294 ON public.hmis_2022_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateCreated_idx4"; -- --- Name: hmis2022enrollmentcocs_e6x1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollmentcocs_e6x1 ON public.hmis_2022_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateDeleted_idx"; -- --- Name: hmis2022enrollmentcocs_emfv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollmentcocs_emfv ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateDeleted_idx1"; -- --- Name: hmis2022enrollmentcocs_goeT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_goeT" ON public.hmis_2022_enrollment_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateDeleted_idx2"; -- --- Name: hmis2022enrollmentcocs_gtAC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_gtAC" ON public.hmis_2022_enrollment_cocs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateDeleted_idx3"; -- --- Name: hmis2022enrollmentcocs_kTmm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_kTmm" ON public.hmis_2022_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateDeleted_idx4"; -- --- Name: hmis2022enrollmentcocs_ltSs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_ltSs" ON public.hmis_2022_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateProvided_idx"; -- --- Name: hmis2022enrollmentcocs_nLeg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_nLeg" ON public.hmis_2022_enrollment_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateProvided_idx1"; -- --- Name: hmis2022enrollmentcocs_ptxT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_ptxT" ON public.hmis_2022_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateProvided_idx2"; -- --- Name: hmis2022enrollmentcocs_qb26; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollmentcocs_qb26 ON public.hmis_2022_enrollment_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateProvided_idx3"; -- --- Name: hmis2022enrollmentcocs_rftp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollmentcocs_rftp ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateProvided_idx4"; -- --- Name: hmis2022enrollmentcocs_tZAm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_tZAm" ON public.hmis_2022_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateUpdated_idx"; -- --- Name: hmis2022enrollmentcocs_vL8z; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_vL8z" ON public.hmis_2022_enrollment_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateUpdated_idx1"; -- --- Name: hmis2022enrollmentcocs_yNaH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollmentcocs_yNaH" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateUpdated_idx2"; -- --- Name: hmis2022enrollments_0jfu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_0jfu ON public.hmis_2022_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateUpdated_idx3"; -- --- Name: hmis2022enrollments_20lu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_20lu ON public.hmis_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_DateUpdated_idx4"; -- --- Name: hmis2022enrollments_2j3v; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_2j3v ON public.hmis_2022_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx"; -- --- Name: hmis2022enrollments_3328; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_3328 ON public.hmis_2022_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis2022enrollments_37TX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_37TX" ON public.hmis_2022_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis2022enrollments_3RmC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_3RmC" ON public.hmis_2022_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis2022enrollments_3Y3B; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_3Y3B" ON public.hmis_2022_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis2022enrollments_3qUb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_3qUb" ON public.hmis_2022_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis2022enrollments_3vdn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_3vdn ON public.hmis_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_EnrollmentID_idx"; -- --- Name: hmis2022enrollments_4AvS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_4AvS" ON public.hmis_2022_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_EnrollmentID_idx1"; -- --- Name: hmis2022enrollments_4EjQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_4EjQ" ON public.hmis_2022_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_EnrollmentID_idx2"; -- --- Name: hmis2022enrollments_4KrJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_4KrJ" ON public.hmis_2022_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_EnrollmentID_idx3"; -- --- Name: hmis2022enrollments_5mgY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_5mgY" ON public.hmis_2022_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_EnrollmentID_idx4"; -- --- Name: hmis2022enrollments_6aWK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_6aWK" ON public.hmis_2022_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_ExportID_idx"; -- --- Name: hmis2022enrollments_6d0L; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_6d0L" ON public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_ExportID_idx1"; -- --- Name: hmis2022enrollments_7LRJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_7LRJ" ON public.hmis_2022_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_ExportID_idx2"; -- --- Name: hmis2022enrollments_7SGc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_7SGc" ON public.hmis_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_ExportID_idx3"; -- --- Name: hmis2022enrollments_7WTk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_7WTk" ON public.hmis_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_ExportID_idx4"; -- --- Name: hmis2022enrollments_8n5u; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_8n5u ON public.hmis_2022_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_PersonalID_idx"; -- --- Name: hmis2022enrollments_8p3b; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_8p3b ON public.hmis_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_PersonalID_idx1"; -- --- Name: hmis2022enrollments_9HQ9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_9HQ9" ON public.hmis_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_PersonalID_idx2"; -- --- Name: hmis2022enrollments_AUyr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_AUyr" ON public.hmis_2022_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_PersonalID_idx3"; -- --- Name: hmis2022enrollments_B6MA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_B6MA" ON public.hmis_2022_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_PersonalID_idx4"; -- --- Name: hmis2022enrollments_BDpp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_BDpp" ON public.hmis_2022_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx"; -- --- Name: hmis2022enrollments_BTri; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_BTri" ON public.hmis_2022_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx1"; -- --- Name: hmis2022enrollments_ClYG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_ClYG" ON public.hmis_2022_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx2"; -- --- Name: hmis2022enrollments_DCEF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_DCEF" ON public.hmis_2022_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx3"; -- --- Name: hmis2022enrollments_Dclz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_Dclz" ON public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_DateDeleted_idx4"; -- --- Name: hmis2022enrollments_EC9L; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_EC9L" ON public.hmis_2022_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_DateProvided_idx"; -- --- Name: hmis2022enrollments_ELY8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_ELY8" ON public.hmis_2022_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_DateProvided_idx1"; -- --- Name: hmis2022enrollments_F7ci; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_F7ci" ON public.hmis_2022_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_DateProvided_idx2"; -- --- Name: hmis2022enrollments_G9GI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_G9GI" ON public.hmis_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_DateProvided_idx3"; -- --- Name: hmis2022enrollments_HQ8T; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_HQ8T" ON public.hmis_2022_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_DateProvided_idx4"; -- --- Name: hmis2022enrollments_HTOM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_HTOM" ON public.hmis_2022_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_idx"; -- --- Name: hmis2022enrollments_HULG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_HULG" ON public.hmis_2022_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_idx1"; -- --- Name: hmis2022enrollments_J8cl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_J8cl" ON public.hmis_2022_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_idx2"; -- --- Name: hmis2022enrollments_LElu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_LElu" ON public.hmis_2022_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_idx3"; -- --- Name: hmis2022enrollments_LiYM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_LiYM" ON public.hmis_2022_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_RecordType_idx4"; -- --- Name: hmis2022enrollments_Mjsu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_Mjsu" ON public.hmis_2022_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_ServicesID_data_source_id_idx"; -- --- Name: hmis2022enrollments_Mz76; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_Mz76" ON public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_ServicesID_idx"; -- --- Name: hmis2022enrollments_MzHk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_MzHk" ON public.hmis_2022_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_ServicesID_idx1"; -- --- Name: hmis2022enrollments_N8KZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_N8KZ" ON public.hmis_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_ServicesID_idx2"; -- --- Name: hmis2022enrollments_NCDd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_NCDd" ON public.hmis_2022_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_ServicesID_idx3"; -- --- Name: hmis2022enrollments_NsV4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_NsV4" ON public.hmis_2022_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_30_ServicesID_idx4"; -- --- Name: hmis2022enrollments_PFBl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_PFBl" ON public.hmis_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_30_importer_log_id_idx; -- --- Name: hmis2022enrollments_QC4k; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_QC4k" ON public.hmis_2022_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_30_pkey; -- --- Name: hmis2022enrollments_SjW2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_30_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_SjW2" ON public.hmis_2022_enrollments USING btree ("HouseholdID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_30_source_type_source_id_idx; -- --- Name: hmis2022enrollments_SvKn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_SvKn" ON public.hmis_2022_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateCreated_idx"; -- --- Name: hmis2022enrollments_SyID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_SyID" ON public.hmis_2022_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateCreated_idx1"; -- --- Name: hmis2022enrollments_TMSu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_TMSu" ON public.hmis_2022_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateCreated_idx2"; -- --- Name: hmis2022enrollments_TSRY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_TSRY" ON public.hmis_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateCreated_idx3"; -- --- Name: hmis2022enrollments_V3qz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_V3qz" ON public.hmis_2022_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateCreated_idx4"; -- --- Name: hmis2022enrollments_Xexy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_Xexy" ON public.hmis_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateDeleted_idx"; -- --- Name: hmis2022enrollments_aTDs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_aTDs" ON public.hmis_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateDeleted_idx1"; -- --- Name: hmis2022enrollments_bIh3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_bIh3" ON public.hmis_2022_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateDeleted_idx2"; -- --- Name: hmis2022enrollments_bbpQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_bbpQ" ON public.hmis_2022_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateDeleted_idx3"; -- --- Name: hmis2022enrollments_c548; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_c548 ON public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateDeleted_idx4"; -- --- Name: hmis2022enrollments_c5yw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_c5yw ON public.hmis_2022_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateProvided_idx"; -- --- Name: hmis2022enrollments_dl2L; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_dl2L" ON public.hmis_2022_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateProvided_idx1"; -- --- Name: hmis2022enrollments_eyPk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_eyPk" ON public.hmis_2022_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateProvided_idx2"; -- --- Name: hmis2022enrollments_gSa1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_gSa1" ON public.hmis_2022_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateProvided_idx3"; -- --- Name: hmis2022enrollments_geFN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_geFN" ON public.hmis_2022_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateProvided_idx4"; -- --- Name: hmis2022enrollments_gz2q; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_gz2q ON public.hmis_2022_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateUpdated_idx"; -- --- Name: hmis2022enrollments_hDxL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_hDxL" ON public.hmis_2022_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateUpdated_idx1"; -- --- Name: hmis2022enrollments_hHFu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_hHFu" ON public.hmis_2022_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateUpdated_idx2"; -- --- Name: hmis2022enrollments_icgG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_icgG" ON public.hmis_2022_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateUpdated_idx3"; -- --- Name: hmis2022enrollments_inZc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_inZc" ON public.hmis_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_DateUpdated_idx4"; -- --- Name: hmis2022enrollments_k0nD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_k0nD" ON public.hmis_2022_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx"; -- --- Name: hmis2022enrollments_mM9g; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_mM9g" ON public.hmis_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis2022enrollments_nrVw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_nrVw" ON public.hmis_2022_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis2022enrollments_oD3L; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_oD3L" ON public.hmis_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis2022enrollments_oO3x; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_oO3x" ON public.hmis_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis2022enrollments_oSGW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_oSGW" ON public.hmis_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis2022enrollments_pPK5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_pPK5" ON public.hmis_2022_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_EnrollmentID_idx"; -- --- Name: hmis2022enrollments_pWJS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_pWJS" ON public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_EnrollmentID_idx1"; -- --- Name: hmis2022enrollments_q5xg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_q5xg ON public.hmis_2022_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_EnrollmentID_idx2"; -- --- Name: hmis2022enrollments_qHpP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_qHpP" ON public.hmis_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_EnrollmentID_idx3"; -- --- Name: hmis2022enrollments_rcM8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_rcM8" ON public.hmis_2022_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_EnrollmentID_idx4"; -- --- Name: hmis2022enrollments_seem; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_seem ON public.hmis_2022_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_ExportID_idx"; -- --- Name: hmis2022enrollments_t4ln; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022enrollments_t4ln ON public.hmis_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_ExportID_idx1"; -- --- Name: hmis2022enrollments_tVoY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_tVoY" ON public.hmis_2022_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_ExportID_idx2"; -- --- Name: hmis2022enrollments_uaMe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_uaMe" ON public.hmis_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_ExportID_idx3"; -- --- Name: hmis2022enrollments_vRaD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_vRaD" ON public.hmis_2022_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_ExportID_idx4"; -- --- Name: hmis2022enrollments_y3F2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_y3F2" ON public.hmis_2022_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_PersonalID_idx"; -- --- Name: hmis2022enrollments_ynuX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_ynuX" ON public.hmis_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_PersonalID_idx1"; -- --- Name: hmis2022enrollments_zmTQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_zmTQ" ON public.hmis_2022_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_PersonalID_idx2"; -- --- Name: hmis2022enrollments_zo2X; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022enrollments_zo2X" ON public.hmis_2022_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_PersonalID_idx3"; -- --- Name: hmis2022events_2XYp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_2XYp" ON public.hmis_2022_events USING btree ("EventDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_PersonalID_idx4"; -- --- Name: hmis2022events_3GeP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_3GeP" ON public.hmis_2022_events USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx"; -- --- Name: hmis2022events_Evth; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_Evth" ON public.hmis_2022_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx1"; -- --- Name: hmis2022events_EwgP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_EwgP" ON public.hmis_2022_events USING btree ("EventDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx2"; -- --- Name: hmis2022events_Exri; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_Exri" ON public.hmis_2022_events USING btree ("EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx3"; -- --- Name: hmis2022events_GNsx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_GNsx" ON public.hmis_2022_events USING btree ("EventDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_DateDeleted_idx4"; -- --- Name: hmis2022events_HaIL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_HaIL" ON public.hmis_2022_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_DateProvided_idx"; -- --- Name: hmis2022events_JK9C; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_JK9C" ON public.hmis_2022_events USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_DateProvided_idx1"; -- --- Name: hmis2022events_LCxa; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_LCxa" ON public.hmis_2022_events USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_DateProvided_idx2"; -- --- Name: hmis2022events_LXwo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_LXwo" ON public.hmis_2022_events USING btree ("EventDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_DateProvided_idx3"; -- --- Name: hmis2022events_OBnR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_OBnR" ON public.hmis_2022_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_DateProvided_idx4"; -- --- Name: hmis2022events_SLKf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_SLKf" ON public.hmis_2022_events USING btree ("EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_idx"; -- --- Name: hmis2022events_T5lV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_T5lV" ON public.hmis_2022_events USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_idx1"; -- --- Name: hmis2022events_TcFv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_TcFv" ON public.hmis_2022_events USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_idx2"; -- --- Name: hmis2022events_Uk3l; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_Uk3l" ON public.hmis_2022_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_idx3"; -- --- Name: hmis2022events_ZWfu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_ZWfu" ON public.hmis_2022_events USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_RecordType_idx4"; -- --- Name: hmis2022events_fsBr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_fsBr" ON public.hmis_2022_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_ServicesID_data_source_id_idx"; -- --- Name: hmis2022events_jTpi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_jTpi" ON public.hmis_2022_events USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_ServicesID_idx"; -- --- Name: hmis2022events_jZh3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_jZh3" ON public.hmis_2022_events USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_ServicesID_idx1"; -- --- Name: hmis2022events_lU5Z; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_lU5Z" ON public.hmis_2022_events USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_ServicesID_idx2"; -- --- Name: hmis2022events_oHnT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_oHnT" ON public.hmis_2022_events USING btree ("EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_ServicesID_idx3"; -- --- Name: hmis2022events_pGIP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_pGIP" ON public.hmis_2022_events USING btree ("EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_31_ServicesID_idx4"; -- --- Name: hmis2022events_pf5U; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_pf5U" ON public.hmis_2022_events USING btree ("EventID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_31_importer_log_id_idx; -- --- Name: hmis2022events_uIUg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_uIUg" ON public.hmis_2022_events USING btree ("EnrollmentID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_31_pkey; -- --- Name: hmis2022events_unUI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_31_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022events_unUI" ON public.hmis_2022_events USING btree ("EventDate"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_31_source_type_source_id_idx; -- --- Name: hmis2022exits_0mCE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_0mCE" ON public.hmis_2022_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateCreated_idx"; -- --- Name: hmis2022exits_2fAC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_2fAC" ON public.hmis_2022_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateCreated_idx1"; -- --- Name: hmis2022exits_3ric; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022exits_3ric ON public.hmis_2022_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateCreated_idx2"; -- --- Name: hmis2022exits_4AWu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_4AWu" ON public.hmis_2022_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateCreated_idx3"; -- --- Name: hmis2022exits_4FaP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_4FaP" ON public.hmis_2022_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateCreated_idx4"; -- --- Name: hmis2022exits_9U2x; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_9U2x" ON public.hmis_2022_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateDeleted_idx"; -- --- Name: hmis2022exits_Af3i; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_Af3i" ON public.hmis_2022_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateDeleted_idx1"; -- --- Name: hmis2022exits_AuYr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_AuYr" ON public.hmis_2022_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateDeleted_idx2"; -- --- Name: hmis2022exits_Cl49; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_Cl49" ON public.hmis_2022_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateDeleted_idx3"; -- --- Name: hmis2022exits_E5ii; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_E5ii" ON public.hmis_2022_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateDeleted_idx4"; -- --- Name: hmis2022exits_EVIM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_EVIM" ON public.hmis_2022_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateProvided_idx"; -- --- Name: hmis2022exits_IuDI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_IuDI" ON public.hmis_2022_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateProvided_idx1"; -- --- Name: hmis2022exits_KKNd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_KKNd" ON public.hmis_2022_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateProvided_idx2"; -- --- Name: hmis2022exits_L2iM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_L2iM" ON public.hmis_2022_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateProvided_idx3"; -- --- Name: hmis2022exits_LBAD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_LBAD" ON public.hmis_2022_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateProvided_idx4"; -- --- Name: hmis2022exits_MqXv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_MqXv" ON public.hmis_2022_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateUpdated_idx"; -- --- Name: hmis2022exits_Pdxz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_Pdxz" ON public.hmis_2022_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateUpdated_idx1"; -- --- Name: hmis2022exits_R91g; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_R91g" ON public.hmis_2022_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateUpdated_idx2"; -- --- Name: hmis2022exits_Rbol; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_Rbol" ON public.hmis_2022_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateUpdated_idx3"; -- --- Name: hmis2022exits_Tldv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_Tldv" ON public.hmis_2022_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_DateUpdated_idx4"; -- --- Name: hmis2022exits_VVBK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_VVBK" ON public.hmis_2022_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx"; -- --- Name: hmis2022exits_XAoJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_XAoJ" ON public.hmis_2022_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis2022exits_ZNEH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_ZNEH" ON public.hmis_2022_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis2022exits_cyno; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022exits_cyno ON public.hmis_2022_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis2022exits_d4hu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022exits_d4hu ON public.hmis_2022_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis2022exits_dFpc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_dFpc" ON public.hmis_2022_exits USING btree ("DateDeleted"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis2022exits_fTOL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_fTOL" ON public.hmis_2022_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_EnrollmentID_idx"; -- --- Name: hmis2022exits_fa9a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022exits_fa9a ON public.hmis_2022_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_EnrollmentID_idx1"; -- --- Name: hmis2022exits_ksT2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_ksT2" ON public.hmis_2022_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_EnrollmentID_idx2"; -- --- Name: hmis2022exits_lzvt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022exits_lzvt ON public.hmis_2022_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_EnrollmentID_idx3"; -- --- Name: hmis2022exits_msZd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_msZd" ON public.hmis_2022_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_EnrollmentID_idx4"; -- --- Name: hmis2022exits_noAP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_noAP" ON public.hmis_2022_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_ExportID_idx"; -- --- Name: hmis2022exits_oWLc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_oWLc" ON public.hmis_2022_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_ExportID_idx1"; -- --- Name: hmis2022exits_p6Jb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_p6Jb" ON public.hmis_2022_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_ExportID_idx2"; -- --- Name: hmis2022exits_r50N; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_r50N" ON public.hmis_2022_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_ExportID_idx3"; -- --- Name: hmis2022exits_sMXZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_sMXZ" ON public.hmis_2022_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_ExportID_idx4"; -- --- Name: hmis2022exits_ssZQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_ssZQ" ON public.hmis_2022_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_PersonalID_idx"; -- --- Name: hmis2022exits_uttT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_uttT" ON public.hmis_2022_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_PersonalID_idx1"; -- --- Name: hmis2022exits_vL1k; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exits_vL1k" ON public.hmis_2022_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_PersonalID_idx2"; -- --- Name: hmis2022exits_vktj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022exits_vktj ON public.hmis_2022_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_PersonalID_idx3"; -- --- Name: hmis2022exits_x3r7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022exits_x3r7 ON public.hmis_2022_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_PersonalID_idx4"; -- --- Name: hmis2022exports_0o3Y; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exports_0o3Y" ON public.hmis_2022_exports USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx"; -- --- Name: hmis2022exports_Vb9V; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exports_Vb9V" ON public.hmis_2022_exports USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx1"; -- --- Name: hmis2022exports_kbyY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exports_kbyY" ON public.hmis_2022_exports USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx2"; -- --- Name: hmis2022exports_r5Vj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exports_r5Vj" ON public.hmis_2022_exports USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx3"; -- --- Name: hmis2022exports_vVa8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022exports_vVa8" ON public.hmis_2022_exports USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_DateDeleted_idx4"; -- --- Name: hmis2022funders_26bc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022funders_26bc ON public.hmis_2022_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_DateProvided_idx"; -- --- Name: hmis2022funders_46DZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_46DZ" ON public.hmis_2022_funders USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_DateProvided_idx1"; -- --- Name: hmis2022funders_4uvj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022funders_4uvj ON public.hmis_2022_funders USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_DateProvided_idx2"; -- --- Name: hmis2022funders_ABi2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_ABi2" ON public.hmis_2022_funders USING btree ("FunderID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_DateProvided_idx3"; -- --- Name: hmis2022funders_CM44; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_CM44" ON public.hmis_2022_funders USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_DateProvided_idx4"; -- --- Name: hmis2022funders_DmBq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_DmBq" ON public.hmis_2022_funders USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_idx"; -- --- Name: hmis2022funders_La2t; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_La2t" ON public.hmis_2022_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_idx1"; -- --- Name: hmis2022funders_OTDJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_OTDJ" ON public.hmis_2022_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_idx2"; -- --- Name: hmis2022funders_SshV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_SshV" ON public.hmis_2022_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_idx3"; -- --- Name: hmis2022funders_ahFB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_ahFB" ON public.hmis_2022_funders USING btree ("FunderID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_RecordType_idx4"; -- --- Name: hmis2022funders_aqqv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022funders_aqqv ON public.hmis_2022_funders USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_ServicesID_data_source_id_idx"; -- --- Name: hmis2022funders_e42h; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022funders_e42h ON public.hmis_2022_funders USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_ServicesID_idx"; -- --- Name: hmis2022funders_hjB3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_hjB3" ON public.hmis_2022_funders USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_ServicesID_idx1"; -- --- Name: hmis2022funders_ml9I; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_ml9I" ON public.hmis_2022_funders USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_ServicesID_idx2"; -- --- Name: hmis2022funders_p7Md; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_p7Md" ON public.hmis_2022_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_ServicesID_idx3"; -- --- Name: hmis2022funders_pYDL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_pYDL" ON public.hmis_2022_funders USING btree ("FunderID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_32_ServicesID_idx4"; -- --- Name: hmis2022funders_rbeh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022funders_rbeh ON public.hmis_2022_funders USING btree ("DateCreated"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_32_importer_log_id_idx; -- --- Name: hmis2022funders_tO3b; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_tO3b" ON public.hmis_2022_funders USING btree ("FunderID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_32_pkey; -- --- Name: hmis2022funders_wrmf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_32_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022funders_wrmf ON public.hmis_2022_funders USING btree ("FunderID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_32_source_type_source_id_idx; -- --- Name: hmis2022funders_zCs4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022funders_zCs4" ON public.hmis_2022_funders USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateCreated_idx"; -- --- Name: hmis2022healthanddvs_39pa; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022healthanddvs_39pa ON public.hmis_2022_health_and_dvs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateCreated_idx1"; -- --- Name: hmis2022healthanddvs_81Ip; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_81Ip" ON public.hmis_2022_health_and_dvs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateCreated_idx2"; -- --- Name: hmis2022healthanddvs_9xtv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022healthanddvs_9xtv ON public.hmis_2022_health_and_dvs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateCreated_idx3"; -- --- Name: hmis2022healthanddvs_B3cK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_B3cK" ON public.hmis_2022_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateCreated_idx4"; -- --- Name: hmis2022healthanddvs_C3P0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_C3P0" ON public.hmis_2022_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateDeleted_idx"; -- --- Name: hmis2022healthanddvs_CqjD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_CqjD" ON public.hmis_2022_health_and_dvs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateDeleted_idx1"; -- --- Name: hmis2022healthanddvs_EmeI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_EmeI" ON public.hmis_2022_health_and_dvs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateDeleted_idx2"; -- --- Name: hmis2022healthanddvs_GwLc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_GwLc" ON public.hmis_2022_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateDeleted_idx3"; -- --- Name: hmis2022healthanddvs_IGDp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_IGDp" ON public.hmis_2022_health_and_dvs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateDeleted_idx4"; -- --- Name: hmis2022healthanddvs_J2k9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_J2k9" ON public.hmis_2022_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateProvided_idx"; -- --- Name: hmis2022healthanddvs_JnNy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_JnNy" ON public.hmis_2022_health_and_dvs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateProvided_idx1"; -- --- Name: hmis2022healthanddvs_L20r; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_L20r" ON public.hmis_2022_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateProvided_idx2"; -- --- Name: hmis2022healthanddvs_LYST; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_LYST" ON public.hmis_2022_health_and_dvs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateProvided_idx3"; -- --- Name: hmis2022healthanddvs_MM9C; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_MM9C" ON public.hmis_2022_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateProvided_idx4"; -- --- Name: hmis2022healthanddvs_PTMk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_PTMk" ON public.hmis_2022_health_and_dvs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateUpdated_idx"; -- --- Name: hmis2022healthanddvs_RZLE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_RZLE" ON public.hmis_2022_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateUpdated_idx1"; -- --- Name: hmis2022healthanddvs_Vitu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_Vitu" ON public.hmis_2022_health_and_dvs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateUpdated_idx2"; -- --- Name: hmis2022healthanddvs_Zsjv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_Zsjv" ON public.hmis_2022_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateUpdated_idx3"; -- --- Name: hmis2022healthanddvs_bSYK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_bSYK" ON public.hmis_2022_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_DateUpdated_idx4"; -- --- Name: hmis2022healthanddvs_d4Mp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_d4Mp" ON public.hmis_2022_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx"; -- --- Name: hmis2022healthanddvs_eFRE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_eFRE" ON public.hmis_2022_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis2022healthanddvs_jsVe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_jsVe" ON public.hmis_2022_health_and_dvs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis2022healthanddvs_kG26; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_kG26" ON public.hmis_2022_health_and_dvs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis2022healthanddvs_lrk9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022healthanddvs_lrk9 ON public.hmis_2022_health_and_dvs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis2022healthanddvs_mxKc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_mxKc" ON public.hmis_2022_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis2022healthanddvs_nCmK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_nCmK" ON public.hmis_2022_health_and_dvs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_EnrollmentID_idx"; -- --- Name: hmis2022healthanddvs_oE33; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_oE33" ON public.hmis_2022_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_EnrollmentID_idx1"; -- --- Name: hmis2022healthanddvs_qQGt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_qQGt" ON public.hmis_2022_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_EnrollmentID_idx2"; -- --- Name: hmis2022healthanddvs_rKKo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_rKKo" ON public.hmis_2022_health_and_dvs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_EnrollmentID_idx3"; -- --- Name: hmis2022healthanddvs_sSdO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022healthanddvs_sSdO" ON public.hmis_2022_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_EnrollmentID_idx4"; -- --- Name: hmis2022incomebenefits_0x7T; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_0x7T" ON public.hmis_2022_income_benefits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_ExportID_idx"; -- --- Name: hmis2022incomebenefits_1iTb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_1iTb" ON public.hmis_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_ExportID_idx1"; -- --- Name: hmis2022incomebenefits_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022incomebenefits_634d ON public.hmis_2022_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_ExportID_idx2"; -- --- Name: hmis2022incomebenefits_84A2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_84A2" ON public.hmis_2022_income_benefits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_ExportID_idx3"; -- --- Name: hmis2022incomebenefits_8YX1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_8YX1" ON public.hmis_2022_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_ExportID_idx4"; -- --- Name: hmis2022incomebenefits_9VUZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_9VUZ" ON public.hmis_2022_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_PersonalID_idx"; -- --- Name: hmis2022incomebenefits_AOIn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_AOIn" ON public.hmis_2022_income_benefits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_PersonalID_idx1"; -- --- Name: hmis2022incomebenefits_AhcR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_AhcR" ON public.hmis_2022_income_benefits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_PersonalID_idx2"; -- --- Name: hmis2022incomebenefits_CqV2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_CqV2" ON public.hmis_2022_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_PersonalID_idx3"; -- --- Name: hmis2022incomebenefits_DEc8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_DEc8" ON public.hmis_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_PersonalID_idx4"; -- --- Name: hmis2022incomebenefits_DHfs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_DHfs" ON public.hmis_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx"; -- --- Name: hmis2022incomebenefits_FKM8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_FKM8" ON public.hmis_2022_income_benefits USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx1"; -- --- Name: hmis2022incomebenefits_G13K; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_G13K" ON public.hmis_2022_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx2"; -- --- Name: hmis2022incomebenefits_GZEz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_GZEz" ON public.hmis_2022_income_benefits USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx3"; -- --- Name: hmis2022incomebenefits_GskQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_GskQ" ON public.hmis_2022_income_benefits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_DateDeleted_idx4"; -- --- Name: hmis2022incomebenefits_HA2R; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_HA2R" ON public.hmis_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_DateProvided_idx"; -- --- Name: hmis2022incomebenefits_Hrr8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_Hrr8" ON public.hmis_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_DateProvided_idx1"; -- --- Name: hmis2022incomebenefits_JHkd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_JHkd" ON public.hmis_2022_income_benefits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_DateProvided_idx2"; -- --- Name: hmis2022incomebenefits_JHq0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_JHq0" ON public.hmis_2022_income_benefits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_DateProvided_idx3"; -- --- Name: hmis2022incomebenefits_JwMD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_JwMD" ON public.hmis_2022_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_DateProvided_idx4"; -- --- Name: hmis2022incomebenefits_JzOv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_JzOv" ON public.hmis_2022_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_idx"; -- --- Name: hmis2022incomebenefits_PI60; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_PI60" ON public.hmis_2022_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_idx1"; -- --- Name: hmis2022incomebenefits_Sy6R; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_Sy6R" ON public.hmis_2022_income_benefits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_idx2"; -- --- Name: hmis2022incomebenefits_TMFo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_TMFo" ON public.hmis_2022_income_benefits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_idx3"; -- --- Name: hmis2022incomebenefits_UERs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_UERs" ON public.hmis_2022_income_benefits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_RecordType_idx4"; -- --- Name: hmis2022incomebenefits_Vn6L; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_Vn6L" ON public.hmis_2022_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_ServicesID_data_source_id_idx"; -- --- Name: hmis2022incomebenefits_VnlT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_VnlT" ON public.hmis_2022_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_ServicesID_idx"; -- --- Name: hmis2022incomebenefits_Zgub; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_Zgub" ON public.hmis_2022_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_ServicesID_idx1"; -- --- Name: hmis2022incomebenefits_ae8d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022incomebenefits_ae8d ON public.hmis_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_ServicesID_idx2"; -- --- Name: hmis2022incomebenefits_azJ6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_azJ6" ON public.hmis_2022_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_ServicesID_idx3"; -- --- Name: hmis2022incomebenefits_bPyx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_bPyx" ON public.hmis_2022_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_33_ServicesID_idx4"; -- --- Name: hmis2022incomebenefits_ciWw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_ciWw" ON public.hmis_2022_income_benefits USING btree ("PersonalID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_33_importer_log_id_idx; -- --- Name: hmis2022incomebenefits_dRwA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_dRwA" ON public.hmis_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_33_pkey; -- --- Name: hmis2022incomebenefits_ek1a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_33_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022incomebenefits_ek1a ON public.hmis_2022_income_benefits USING btree ("InformationDate"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_33_source_type_source_id_idx; -- --- Name: hmis2022incomebenefits_fD7y; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_fD7y" ON public.hmis_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateCreated_idx"; -- --- Name: hmis2022incomebenefits_haCV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_haCV" ON public.hmis_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateCreated_idx1"; -- --- Name: hmis2022incomebenefits_is5G; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_is5G" ON public.hmis_2022_income_benefits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateCreated_idx2"; -- --- Name: hmis2022incomebenefits_lvsq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022incomebenefits_lvsq ON public.hmis_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateCreated_idx3"; -- --- Name: hmis2022incomebenefits_mvDZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_mvDZ" ON public.hmis_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateCreated_idx4"; -- --- Name: hmis2022incomebenefits_n8pL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_n8pL" ON public.hmis_2022_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateDeleted_idx"; -- --- Name: hmis2022incomebenefits_qGS5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_qGS5" ON public.hmis_2022_income_benefits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateDeleted_idx1"; -- --- Name: hmis2022incomebenefits_sQmz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_sQmz" ON public.hmis_2022_income_benefits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateDeleted_idx2"; -- --- Name: hmis2022incomebenefits_tIGj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_tIGj" ON public.hmis_2022_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateDeleted_idx3"; -- --- Name: hmis2022incomebenefits_ts9d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022incomebenefits_ts9d ON public.hmis_2022_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateDeleted_idx4"; -- --- Name: hmis2022incomebenefits_uWiD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022incomebenefits_uWiD" ON public.hmis_2022_income_benefits USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateProvided_idx"; -- --- Name: hmis2022incomebenefits_vzlx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022incomebenefits_vzlx ON public.hmis_2022_income_benefits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateProvided_idx1"; -- --- Name: hmis2022incomebenefits_x9tg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022incomebenefits_x9tg ON public.hmis_2022_income_benefits USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateProvided_idx2"; -- --- Name: hmis2022inventories_3i1a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022inventories_3i1a ON public.hmis_2022_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateProvided_idx3"; -- --- Name: hmis2022inventories_6jdY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_6jdY" ON public.hmis_2022_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateProvided_idx4"; -- --- Name: hmis2022inventories_8BiB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_8BiB" ON public.hmis_2022_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateUpdated_idx"; -- --- Name: hmis2022inventories_9529; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022inventories_9529 ON public.hmis_2022_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateUpdated_idx1"; -- --- Name: hmis2022inventories_9WW6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_9WW6" ON public.hmis_2022_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateUpdated_idx2"; -- --- Name: hmis2022inventories_AYgL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_AYgL" ON public.hmis_2022_inventories USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateUpdated_idx3"; -- --- Name: hmis2022inventories_Arn3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_Arn3" ON public.hmis_2022_inventories USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_DateUpdated_idx4"; -- --- Name: hmis2022inventories_C1bt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_C1bt" ON public.hmis_2022_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx"; -- --- Name: hmis2022inventories_IstJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_IstJ" ON public.hmis_2022_inventories USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis2022inventories_KB9n; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_KB9n" ON public.hmis_2022_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis2022inventories_LdMP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_LdMP" ON public.hmis_2022_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis2022inventories_M3Ha; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_M3Ha" ON public.hmis_2022_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis2022inventories_PsW9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_PsW9" ON public.hmis_2022_inventories USING btree ("DateUpdated"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis2022inventories_Qelf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_Qelf" ON public.hmis_2022_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_EnrollmentID_idx"; -- --- Name: hmis2022inventories_SWlE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_SWlE" ON public.hmis_2022_inventories USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_EnrollmentID_idx1"; -- --- Name: hmis2022inventories_bofb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022inventories_bofb ON public.hmis_2022_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_EnrollmentID_idx2"; -- --- Name: hmis2022inventories_cXOY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_cXOY" ON public.hmis_2022_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_EnrollmentID_idx3"; -- --- Name: hmis2022inventories_eLHl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_eLHl" ON public.hmis_2022_inventories USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_EnrollmentID_idx4"; -- --- Name: hmis2022inventories_eXpd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_eXpd" ON public.hmis_2022_inventories USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_ExportID_idx"; -- --- Name: hmis2022inventories_iP6i; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_iP6i" ON public.hmis_2022_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_ExportID_idx1"; -- --- Name: hmis2022inventories_kR2K; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_kR2K" ON public.hmis_2022_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_ExportID_idx2"; -- --- Name: hmis2022inventories_ovgT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_ovgT" ON public.hmis_2022_inventories USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_ExportID_idx3"; -- --- Name: hmis2022inventories_rLxn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_rLxn" ON public.hmis_2022_inventories USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_ExportID_idx4"; -- --- Name: hmis2022inventories_sm3T; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_sm3T" ON public.hmis_2022_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_PersonalID_idx"; -- --- Name: hmis2022inventories_wLQS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_wLQS" ON public.hmis_2022_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_PersonalID_idx1"; -- --- Name: hmis2022inventories_yY0M; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022inventories_yY0M" ON public.hmis_2022_inventories USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_PersonalID_idx2"; -- --- Name: hmis2022organizations_011s; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022organizations_011s ON public.hmis_2022_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_PersonalID_idx3"; -- --- Name: hmis2022organizations_LOzw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022organizations_LOzw" ON public.hmis_2022_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_PersonalID_idx4"; -- --- Name: hmis2022organizations_Psl1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022organizations_Psl1" ON public.hmis_2022_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx"; -- --- Name: hmis2022organizations_TLP5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022organizations_TLP5" ON public.hmis_2022_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx1"; -- --- Name: hmis2022organizations_TdT2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022organizations_TdT2" ON public.hmis_2022_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx2"; -- --- Name: hmis2022organizations_UwWr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022organizations_UwWr" ON public.hmis_2022_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx3"; -- --- Name: hmis2022organizations_XsGg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022organizations_XsGg" ON public.hmis_2022_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_DateDeleted_idx4"; -- --- Name: hmis2022organizations_mjhZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022organizations_mjhZ" ON public.hmis_2022_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_DateProvided_idx"; -- --- Name: hmis2022organizations_rt9t; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022organizations_rt9t ON public.hmis_2022_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_DateProvided_idx1"; -- --- Name: hmis2022organizations_sCgG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022organizations_sCgG" ON public.hmis_2022_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_DateProvided_idx2"; -- --- Name: hmis2022projectcocs_0Now; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_0Now" ON public.hmis_2022_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_DateProvided_idx3"; -- --- Name: hmis2022projectcocs_1ike; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022projectcocs_1ike ON public.hmis_2022_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_DateProvided_idx4"; -- --- Name: hmis2022projectcocs_3ED0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_3ED0" ON public.hmis_2022_project_cocs USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_idx"; -- --- Name: hmis2022projectcocs_3zNV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_3zNV" ON public.hmis_2022_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_idx1"; -- --- Name: hmis2022projectcocs_4M5C; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_4M5C" ON public.hmis_2022_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_idx2"; -- --- Name: hmis2022projectcocs_4qjb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022projectcocs_4qjb ON public.hmis_2022_project_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_idx3"; -- --- Name: hmis2022projectcocs_5LwF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_5LwF" ON public.hmis_2022_project_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_RecordType_idx4"; -- --- Name: hmis2022projectcocs_5tqd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022projectcocs_5tqd ON public.hmis_2022_project_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_ServicesID_data_source_id_idx"; -- --- Name: hmis2022projectcocs_6Ygh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_6Ygh" ON public.hmis_2022_project_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_ServicesID_idx"; -- --- Name: hmis2022projectcocs_9Yoi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_9Yoi" ON public.hmis_2022_project_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_ServicesID_idx1"; -- --- Name: hmis2022projectcocs_CcFO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_CcFO" ON public.hmis_2022_project_cocs USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_ServicesID_idx2"; -- --- Name: hmis2022projectcocs_Mi4u; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_Mi4u" ON public.hmis_2022_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_ServicesID_idx3"; -- --- Name: hmis2022projectcocs_PKtl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_PKtl" ON public.hmis_2022_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_34_ServicesID_idx4"; -- --- Name: hmis2022projectcocs_TNSX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_TNSX" ON public.hmis_2022_project_cocs USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_34_importer_log_id_idx; -- --- Name: hmis2022projectcocs_Vz5V; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_Vz5V" ON public.hmis_2022_project_cocs USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_34_pkey; -- --- Name: hmis2022projectcocs_X9kf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_34_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_X9kf" ON public.hmis_2022_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_34_source_type_source_id_idx; -- --- Name: hmis2022projectcocs_XYpN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_XYpN" ON public.hmis_2022_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateCreated_idx"; -- --- Name: hmis2022projectcocs_b6rB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_b6rB" ON public.hmis_2022_project_cocs USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateCreated_idx1"; -- --- Name: hmis2022projectcocs_ef8C; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_ef8C" ON public.hmis_2022_project_cocs USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateCreated_idx2"; -- --- Name: hmis2022projectcocs_kX0x; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_kX0x" ON public.hmis_2022_project_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateCreated_idx3"; -- --- Name: hmis2022projectcocs_lrLY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_lrLY" ON public.hmis_2022_project_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateCreated_idx4"; -- --- Name: hmis2022projectcocs_lty3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022projectcocs_lty3 ON public.hmis_2022_project_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateDeleted_idx"; -- --- Name: hmis2022projectcocs_oD4E; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_oD4E" ON public.hmis_2022_project_cocs USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateDeleted_idx1"; -- --- Name: hmis2022projectcocs_sQfd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_sQfd" ON public.hmis_2022_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateDeleted_idx2"; -- --- Name: hmis2022projectcocs_yEto; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projectcocs_yEto" ON public.hmis_2022_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateDeleted_idx3"; -- --- Name: hmis2022projects_2k9I; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_2k9I" ON public.hmis_2022_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateDeleted_idx4"; -- --- Name: hmis2022projects_784w; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022projects_784w ON public.hmis_2022_projects USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateProvided_idx"; -- --- Name: hmis2022projects_9qGh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_9qGh" ON public.hmis_2022_projects USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateProvided_idx1"; -- --- Name: hmis2022projects_ADJi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_ADJi" ON public.hmis_2022_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateProvided_idx2"; -- --- Name: hmis2022projects_AnNo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_AnNo" ON public.hmis_2022_projects USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateProvided_idx3"; -- --- Name: hmis2022projects_CYGj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_CYGj" ON public.hmis_2022_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateProvided_idx4"; -- --- Name: hmis2022projects_DMpm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_DMpm" ON public.hmis_2022_projects USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateUpdated_idx"; -- --- Name: hmis2022projects_F8tr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_F8tr" ON public.hmis_2022_projects USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateUpdated_idx1"; -- --- Name: hmis2022projects_GF0h; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_GF0h" ON public.hmis_2022_projects USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateUpdated_idx2"; -- --- Name: hmis2022projects_GbSc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_GbSc" ON public.hmis_2022_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateUpdated_idx3"; -- --- Name: hmis2022projects_Gu3H; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_Gu3H" ON public.hmis_2022_projects USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_DateUpdated_idx4"; -- --- Name: hmis2022projects_JSje; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_JSje" ON public.hmis_2022_projects USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx"; -- --- Name: hmis2022projects_K13K; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_K13K" ON public.hmis_2022_projects USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis2022projects_OT6u; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_OT6u" ON public.hmis_2022_projects USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis2022projects_Pwue; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_Pwue" ON public.hmis_2022_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis2022projects_dQCA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_dQCA" ON public.hmis_2022_projects USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis2022projects_eOC7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_eOC7" ON public.hmis_2022_projects USING btree ("DateCreated"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis2022projects_eUQm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_eUQm" ON public.hmis_2022_projects USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_EnrollmentID_idx"; -- --- Name: hmis2022projects_fcQR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_fcQR" ON public.hmis_2022_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_EnrollmentID_idx1"; -- --- Name: hmis2022projects_own3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022projects_own3 ON public.hmis_2022_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_EnrollmentID_idx2"; -- --- Name: hmis2022projects_qlW7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_qlW7" ON public.hmis_2022_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_EnrollmentID_idx3"; -- --- Name: hmis2022projects_snHq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_snHq" ON public.hmis_2022_projects USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_EnrollmentID_idx4"; -- --- Name: hmis2022projects_v8Tc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_v8Tc" ON public.hmis_2022_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_ExportID_idx"; -- --- Name: hmis2022projects_vOpf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_vOpf" ON public.hmis_2022_projects USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_ExportID_idx1"; -- --- Name: hmis2022projects_wkvZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022projects_wkvZ" ON public.hmis_2022_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_ExportID_idx2"; -- --- Name: hmis2022services_1VpJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_1VpJ" ON public.hmis_2022_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_ExportID_idx3"; -- --- Name: hmis2022services_2Pi6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_2Pi6" ON public.hmis_2022_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_ExportID_idx4"; -- --- Name: hmis2022services_3F1O; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_3F1O" ON public.hmis_2022_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_PersonalID_idx"; -- --- Name: hmis2022services_4Fxe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_4Fxe" ON public.hmis_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_PersonalID_idx1"; -- --- Name: hmis2022services_4IqJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_4IqJ" ON public.hmis_2022_services USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_PersonalID_idx2"; -- --- Name: hmis2022services_5tYV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_5tYV" ON public.hmis_2022_services USING btree ("RecordType", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_PersonalID_idx3"; -- --- Name: hmis2022services_68qY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_68qY" ON public.hmis_2022_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_PersonalID_idx4"; -- --- Name: hmis2022services_7WwG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_7WwG" ON public.hmis_2022_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx"; -- --- Name: hmis2022services_80Zv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_80Zv" ON public.hmis_2022_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx1"; -- --- Name: hmis2022services_8Bt5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_8Bt5" ON public.hmis_2022_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx2"; -- --- Name: hmis2022services_8XXq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_8XXq" ON public.hmis_2022_services USING btree ("RecordType", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx3"; -- --- Name: hmis2022services_8evh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022services_8evh ON public.hmis_2022_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_DateDeleted_idx4"; -- --- Name: hmis2022services_93jP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_93jP" ON public.hmis_2022_services USING btree ("RecordType", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_DateProvided_idx"; -- --- Name: hmis2022services_9eiT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_9eiT" ON public.hmis_2022_services USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_DateProvided_idx1"; -- --- Name: hmis2022services_BCCk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_BCCk" ON public.hmis_2022_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_DateProvided_idx2"; -- --- Name: hmis2022services_CsGp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_CsGp" ON public.hmis_2022_services USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_DateProvided_idx3"; -- --- Name: hmis2022services_D1jd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_D1jd" ON public.hmis_2022_services USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_DateProvided_idx4"; -- --- Name: hmis2022services_Ek53; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_Ek53" ON public.hmis_2022_services USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_idx"; -- --- Name: hmis2022services_FSBY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_FSBY" ON public.hmis_2022_services USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_idx1"; -- --- Name: hmis2022services_FcVG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_FcVG" ON public.hmis_2022_services USING btree ("RecordType", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_idx2"; -- --- Name: hmis2022services_Fd80; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_Fd80" ON public.hmis_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_idx3"; -- --- Name: hmis2022services_HEJX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_HEJX" ON public.hmis_2022_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_RecordType_idx4"; -- --- Name: hmis2022services_JfRQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_JfRQ" ON public.hmis_2022_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_ServicesID_data_source_id_idx"; -- --- Name: hmis2022services_LA4D; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_LA4D" ON public.hmis_2022_services USING btree ("RecordType", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_ServicesID_idx"; -- --- Name: hmis2022services_LTfU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_LTfU" ON public.hmis_2022_services USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_ServicesID_idx1"; -- --- Name: hmis2022services_MR5w; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_MR5w" ON public.hmis_2022_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_ServicesID_idx2"; -- --- Name: hmis2022services_OuBj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_OuBj" ON public.hmis_2022_services USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_ServicesID_idx3"; -- --- Name: hmis2022services_PgzK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_PgzK" ON public.hmis_2022_services USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_35_ServicesID_idx4"; -- --- Name: hmis2022services_Q64k; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_Q64k" ON public.hmis_2022_services USING btree ("RecordType", "DateDeleted"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_35_importer_log_id_idx; -- --- Name: hmis2022services_QM5r; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_QM5r" ON public.hmis_2022_services USING btree ("PersonalID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_35_pkey; -- --- Name: hmis2022services_QVc8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_35_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_QVc8" ON public.hmis_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_35_source_type_source_id_idx; -- --- Name: hmis2022services_QsED; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_QsED" ON public.hmis_2022_services USING btree ("RecordType", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateCreated_idx"; -- --- Name: hmis2022services_Qscs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_Qscs" ON public.hmis_2022_services USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateCreated_idx1"; -- --- Name: hmis2022services_Qxai; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_Qxai" ON public.hmis_2022_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateCreated_idx2"; -- --- Name: hmis2022services_R4Ug; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_R4Ug" ON public.hmis_2022_services USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateCreated_idx3"; -- --- Name: hmis2022services_Rgn7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_Rgn7" ON public.hmis_2022_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateCreated_idx4"; -- --- Name: hmis2022services_TR6P; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_TR6P" ON public.hmis_2022_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateDeleted_idx"; -- --- Name: hmis2022services_TeiS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_TeiS" ON public.hmis_2022_services USING btree ("RecordType", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateDeleted_idx1"; -- --- Name: hmis2022services_UdjB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_UdjB" ON public.hmis_2022_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateDeleted_idx2"; -- --- Name: hmis2022services_UhG8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_UhG8" ON public.hmis_2022_services USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateDeleted_idx3"; -- --- Name: hmis2022services_WzIZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_WzIZ" ON public.hmis_2022_services USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateDeleted_idx4"; -- --- Name: hmis2022services_Xp4E; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_Xp4E" ON public.hmis_2022_services USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateProvided_idx"; -- --- Name: hmis2022services_Y9OY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_Y9OY" ON public.hmis_2022_services USING btree ("RecordType", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateProvided_idx1"; -- --- Name: hmis2022services_YlM0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_YlM0" ON public.hmis_2022_services USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateProvided_idx2"; -- --- Name: hmis2022services_ZeNL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_ZeNL" ON public.hmis_2022_services USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateProvided_idx3"; -- --- Name: hmis2022services_aZ1P; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_aZ1P" ON public.hmis_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateProvided_idx4"; -- --- Name: hmis2022services_c548; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022services_c548 ON public.hmis_2022_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateUpdated_idx"; -- --- Name: hmis2022services_dkaE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_dkaE" ON public.hmis_2022_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateUpdated_idx1"; -- --- Name: hmis2022services_evj6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022services_evj6 ON public.hmis_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateUpdated_idx2"; -- --- Name: hmis2022services_fS9c; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_fS9c" ON public.hmis_2022_services USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateUpdated_idx3"; -- --- Name: hmis2022services_gLfJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_gLfJ" ON public.hmis_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_DateUpdated_idx4"; -- --- Name: hmis2022services_hp6g; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022services_hp6g ON public.hmis_2022_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx"; -- --- Name: hmis2022services_i3Fn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_i3Fn" ON public.hmis_2022_services USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis2022services_jK9O; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_jK9O" ON public.hmis_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis2022services_jPzY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_jPzY" ON public.hmis_2022_services USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis2022services_jnER; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_jnER" ON public.hmis_2022_services USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis2022services_kMoh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_kMoh" ON public.hmis_2022_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis2022services_l83Q; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_l83Q" ON public.hmis_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_EnrollmentID_idx"; -- --- Name: hmis2022services_n6xL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_n6xL" ON public.hmis_2022_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_EnrollmentID_idx1"; -- --- Name: hmis2022services_pQHA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_pQHA" ON public.hmis_2022_services USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_EnrollmentID_idx2"; -- --- Name: hmis2022services_rKMA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_rKMA" ON public.hmis_2022_services USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_EnrollmentID_idx3"; -- --- Name: hmis2022services_rwkF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_rwkF" ON public.hmis_2022_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_EnrollmentID_idx4"; -- --- Name: hmis2022services_s8In; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_s8In" ON public.hmis_2022_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_ExportID_idx"; -- --- Name: hmis2022services_tYIb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_tYIb" ON public.hmis_2022_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_ExportID_idx1"; -- --- Name: hmis2022services_taNN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_taNN" ON public.hmis_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_ExportID_idx2"; -- --- Name: hmis2022services_u0nP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_u0nP" ON public.hmis_2022_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_ExportID_idx3"; -- --- Name: hmis2022services_vfjk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022services_vfjk ON public.hmis_2022_services USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_ExportID_idx4"; -- --- Name: hmis2022services_vsKi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_vsKi" ON public.hmis_2022_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_PersonalID_idx"; -- --- Name: hmis2022services_w0lh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022services_w0lh ON public.hmis_2022_services USING btree ("RecordType", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_PersonalID_idx1"; -- --- Name: hmis2022services_z7LQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_z7LQ" ON public.hmis_2022_services USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_PersonalID_idx2"; -- --- Name: hmis2022services_zbEp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022services_zbEp" ON public.hmis_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_PersonalID_idx3"; -- --- Name: hmis2022users_57c7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022users_57c7 ON public.hmis_2022_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_PersonalID_idx4"; -- --- Name: hmis2022users_6bs3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022users_6bs3 ON public.hmis_2022_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx"; -- --- Name: hmis2022users_9tte; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022users_9tte ON public.hmis_2022_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx1"; -- --- Name: hmis2022users_Bb37; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022users_Bb37" ON public.hmis_2022_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx2"; -- --- Name: hmis2022users_I56Y; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022users_I56Y" ON public.hmis_2022_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx3"; -- --- Name: hmis2022users_L8dm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022users_L8dm" ON public.hmis_2022_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_DateDeleted_idx4"; -- --- Name: hmis2022users_cfDN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022users_cfDN" ON public.hmis_2022_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_DateProvided_idx"; -- --- Name: hmis2022users_iRM6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022users_iRM6" ON public.hmis_2022_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_DateProvided_idx1"; -- --- Name: hmis2022users_ixDP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022users_ixDP" ON public.hmis_2022_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_DateProvided_idx2"; -- --- Name: hmis2022users_jC3x; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022users_jC3x" ON public.hmis_2022_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_DateProvided_idx3"; -- --- Name: hmis2022users_n0RN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022users_n0RN" ON public.hmis_2022_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_DateProvided_idx4"; -- --- Name: hmis2022youtheducationstatuses_2ePH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_2ePH" ON public.hmis_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_idx"; -- --- Name: hmis2022youtheducationstatuses_3nPV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_3nPV" ON public.hmis_2022_youth_education_statuses USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_idx1"; -- --- Name: hmis2022youtheducationstatuses_5Amx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_5Amx" ON public.hmis_2022_youth_education_statuses USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_idx2"; -- --- Name: hmis2022youtheducationstatuses_6acJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_6acJ" ON public.hmis_2022_youth_education_statuses USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_idx3"; -- --- Name: hmis2022youtheducationstatuses_9lDW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_9lDW" ON public.hmis_2022_youth_education_statuses USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_RecordType_idx4"; -- --- Name: hmis2022youtheducationstatuses_CPRH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_CPRH" ON public.hmis_2022_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_ServicesID_data_source_id_idx"; -- --- Name: hmis2022youtheducationstatuses_Cl2V; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_Cl2V" ON public.hmis_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_ServicesID_idx"; -- --- Name: hmis2022youtheducationstatuses_E26n; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_E26n" ON public.hmis_2022_youth_education_statuses USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_ServicesID_idx1"; -- --- Name: hmis2022youtheducationstatuses_EioI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_EioI" ON public.hmis_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_ServicesID_idx2"; -- --- Name: hmis2022youtheducationstatuses_GqWc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_GqWc" ON public.hmis_2022_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_ServicesID_idx3"; -- --- Name: hmis2022youtheducationstatuses_Jb6k; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_Jb6k" ON public.hmis_2022_youth_education_statuses USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_36_ServicesID_idx4"; -- --- Name: hmis2022youtheducationstatuses_KWZP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_KWZP" ON public.hmis_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_36_importer_log_id_idx; -- --- Name: hmis2022youtheducationstatuses_MXhY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_MXhY" ON public.hmis_2022_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_36_pkey; -- --- Name: hmis2022youtheducationstatuses_V5KQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_36_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_V5KQ" ON public.hmis_2022_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_36_source_type_source_id_idx; -- --- Name: hmis2022youtheducationstatuses_Xvwe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_Xvwe" ON public.hmis_2022_youth_education_statuses USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateCreated_idx"; -- --- Name: hmis2022youtheducationstatuses_bmwi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022youtheducationstatuses_bmwi ON public.hmis_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateCreated_idx1"; -- --- Name: hmis2022youtheducationstatuses_fabe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022youtheducationstatuses_fabe ON public.hmis_2022_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateCreated_idx2"; -- --- Name: hmis2022youtheducationstatuses_oUUw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_oUUw" ON public.hmis_2022_youth_education_statuses USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateCreated_idx3"; -- --- Name: hmis2022youtheducationstatuses_pIqT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_pIqT" ON public.hmis_2022_youth_education_statuses USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateCreated_idx4"; -- --- Name: hmis2022youtheducationstatuses_qY17; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_qY17" ON public.hmis_2022_youth_education_statuses USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateDeleted_idx"; -- --- Name: hmis2022youtheducationstatuses_r4i7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2022youtheducationstatuses_r4i7 ON public.hmis_2022_youth_education_statuses USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateDeleted_idx1"; -- --- Name: hmis2022youtheducationstatuses_rWnz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_rWnz" ON public.hmis_2022_youth_education_statuses USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateDeleted_idx2"; -- --- Name: hmis2022youtheducationstatuses_tADn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_tADn" ON public.hmis_2022_youth_education_statuses USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateDeleted_idx3"; -- --- Name: hmis2022youtheducationstatuses_u4Ae; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_u4Ae" ON public.hmis_2022_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateDeleted_idx4"; -- --- Name: hmis2022youtheducationstatuses_xQUJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_xQUJ" ON public.hmis_2022_youth_education_statuses USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateProvided_idx"; -- --- Name: hmis2022youtheducationstatuses_yBQz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis2022youtheducationstatuses_yBQz" ON public.hmis_2022_youth_education_statuses USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateProvided_idx1"; -- --- Name: hmis2024assessmentquestions_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024assessmentquestions_634d ON public.hmis_2024_assessment_questions USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateProvided_idx2"; -- --- Name: hmis2024assessmentquestions_da04; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024assessmentquestions_da04 ON public.hmis_2024_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateProvided_idx3"; -- --- Name: hmis2024assessmentresults_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024assessmentresults_634d ON public.hmis_2024_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateProvided_idx4"; -- --- Name: hmis2024assessments_4fa0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024assessments_4fa0 ON public.hmis_2024_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateUpdated_idx"; -- --- Name: hmis2024assessments_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024assessments_634d ON public.hmis_2024_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateUpdated_idx1"; -- --- Name: hmis2024assessments_da04; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024assessments_da04 ON public.hmis_2024_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateUpdated_idx2"; -- --- Name: hmis2024ceparticipations_42af; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024ceparticipations_42af ON public.hmis_2024_ce_participations USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateUpdated_idx3"; -- --- Name: hmis2024ceparticipations_5a29; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024ceparticipations_5a29 ON public.hmis_2024_ce_participations USING btree ("CEParticipationID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_DateUpdated_idx4"; -- --- Name: hmis2024ceparticipations_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024ceparticipations_634d ON public.hmis_2024_ce_participations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx"; -- --- Name: hmis2024clients_20a8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024clients_20a8 ON public.hmis_2024_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis2024clients_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024clients_42d5 ON public.hmis_2024_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis2024clients_603f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024clients_603f ON public.hmis_2024_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis2024clients_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024clients_634d ON public.hmis_2024_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis2024currentlivingsituations_4337; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024currentlivingsituations_4337 ON public.hmis_2024_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis2024currentlivingsituations_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024currentlivingsituations_634d ON public.hmis_2024_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_EnrollmentID_idx"; -- --- Name: hmis2024currentlivingsituations_c1ef; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024currentlivingsituations_c1ef ON public.hmis_2024_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_EnrollmentID_idx1"; -- --- Name: hmis2024currentlivingsituations_d718; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024currentlivingsituations_d718 ON public.hmis_2024_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_EnrollmentID_idx2"; -- --- Name: hmis2024currentlivingsituations_fabe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024currentlivingsituations_fabe ON public.hmis_2024_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_EnrollmentID_idx3"; -- --- Name: hmis2024disabilities_1873; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024disabilities_1873 ON public.hmis_2024_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_EnrollmentID_idx4"; -- --- Name: hmis2024disabilities_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024disabilities_42d5 ON public.hmis_2024_disabilities USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_ExportID_idx"; -- --- Name: hmis2024disabilities_603f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024disabilities_603f ON public.hmis_2024_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_ExportID_idx1"; -- --- Name: hmis2024disabilities_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024disabilities_634d ON public.hmis_2024_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_ExportID_idx2"; -- --- Name: hmis2024disabilities_d381; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024disabilities_d381 ON public.hmis_2024_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_ExportID_idx3"; -- --- Name: hmis2024employmenteducations_350e; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024employmenteducations_350e ON public.hmis_2024_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_ExportID_idx4"; -- --- Name: hmis2024employmenteducations_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024employmenteducations_42d5 ON public.hmis_2024_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_PersonalID_idx"; -- --- Name: hmis2024employmenteducations_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024employmenteducations_634d ON public.hmis_2024_employment_educations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_PersonalID_idx1"; -- --- Name: hmis2024enrollments_2735; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_2735 ON public.hmis_2024_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_PersonalID_idx2"; -- --- Name: hmis2024enrollments_3085; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_3085 ON public.hmis_2024_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_PersonalID_idx3"; -- --- Name: hmis2024enrollments_34e3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_34e3 ON public.hmis_2024_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_PersonalID_idx4"; -- --- Name: hmis2024enrollments_42af; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_42af ON public.hmis_2024_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx"; -- --- Name: hmis2024enrollments_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_42d5 ON public.hmis_2024_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx1"; -- --- Name: hmis2024enrollments_4337; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_4337 ON public.hmis_2024_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx2"; -- --- Name: hmis2024enrollments_44c4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_44c4 ON public.hmis_2024_enrollments USING btree ("MonthsHomelessPastThreeYears") INCLUDE ("EnrollmentID", "LivingSituation", "PreviousStreetESSH"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx3"; -- --- Name: hmis2024enrollments_4685; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_4685 ON public.hmis_2024_enrollments USING btree ("LengthOfStay") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_DateDeleted_idx4"; -- --- Name: hmis2024enrollments_5328; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_5328 ON public.hmis_2024_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_DateProvided_idx"; -- --- Name: hmis2024enrollments_5d40; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_5d40 ON public.hmis_2024_enrollments USING btree ("HouseholdID", "DateDeleted", "EntryDate", "RelationshipToHoH") INCLUDE ("EnrollmentID", "PersonalID", "DisablingCondition"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_DateProvided_idx1"; -- --- Name: hmis2024enrollments_603f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_603f ON public.hmis_2024_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_DateProvided_idx2"; -- --- Name: hmis2024enrollments_6191; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_6191 ON public.hmis_2024_enrollments USING btree ("EntryDate") INCLUDE ("EnrollmentID", "ProjectID", "HouseholdID", "RelationshipToHoH", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_DateProvided_idx3"; -- --- Name: hmis2024enrollments_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_634d ON public.hmis_2024_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_DateProvided_idx4"; -- --- Name: hmis2024enrollments_821a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_821a ON public.hmis_2024_enrollments USING btree ("LivingSituation") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_idx"; -- --- Name: hmis2024enrollments_89e7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_89e7 ON public.hmis_2024_enrollments USING btree ("HouseholdID", "DateDeleted", "RelationshipToHoH") INCLUDE ("EnrollmentID", "PersonalID", "EntryDate", "DisablingCondition"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_idx1"; -- --- Name: hmis2024enrollments_8d5c; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_8d5c ON public.hmis_2024_enrollments USING btree ("DateDeleted", "RelationshipToHoH") INCLUDE ("EnrollmentID", "PersonalID", "EntryDate", "HouseholdID", "DisablingCondition"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_idx2"; -- --- Name: hmis2024enrollments_9005; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_9005 ON public.hmis_2024_enrollments USING btree ("ProjectID", "RelationshipToHoH", "DateDeleted") INCLUDE ("EnrollmentID", "PersonalID", "EntryDate", "HouseholdID", "MoveInDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_idx3"; -- --- Name: hmis2024enrollments_c321; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_c321 ON public.hmis_2024_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_RecordType_idx4"; -- --- Name: hmis2024enrollments_c3b4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_c3b4 ON public.hmis_2024_enrollments USING btree ("RelationshipToHoH", "DateDeleted") INCLUDE ("EnrollmentID", "PersonalID", "ProjectID", "EntryDate", "HouseholdID", "MoveInDate", "DisablingCondition"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_ServicesID_data_source_id_idx"; -- --- Name: hmis2024enrollments_c548; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_c548 ON public.hmis_2024_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_ServicesID_idx"; -- --- Name: hmis2024enrollments_c830; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_c830 ON public.hmis_2024_enrollments USING btree ("DateDeleted", "EntryDate") INCLUDE ("EnrollmentID", "HouseholdID", "ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_ServicesID_idx1"; -- --- Name: hmis2024enrollments_ea7f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_ea7f ON public.hmis_2024_enrollments USING btree ("HouseholdID", "RelationshipToHoH", "DateDeleted") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_ServicesID_idx2"; -- --- Name: hmis2024enrollments_f3a2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_f3a2 ON public.hmis_2024_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_ServicesID_idx3"; -- --- Name: hmis2024enrollments_fbbd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024enrollments_fbbd ON public.hmis_2024_enrollments USING btree ("MoveInDate") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_37_ServicesID_idx4"; -- --- Name: hmis2024events_5251; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024events_5251 ON public.hmis_2024_events USING btree ("EventID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_37_importer_log_id_idx; -- --- Name: hmis2024events_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024events_634d ON public.hmis_2024_events USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_37_pkey; -- --- Name: hmis2024events_ab19; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_37_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024events_ab19 ON public.hmis_2024_events USING btree ("EventDate"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_37_source_type_source_id_idx; -- --- Name: hmis2024exits_13dc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024exits_13dc ON public.hmis_2024_exits USING btree ("ExitDate", "Destination") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateCreated_idx"; -- --- Name: hmis2024exits_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024exits_42d5 ON public.hmis_2024_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateCreated_idx1"; -- --- Name: hmis2024exits_4337; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024exits_4337 ON public.hmis_2024_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateCreated_idx2"; -- --- Name: hmis2024exits_603f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024exits_603f ON public.hmis_2024_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateCreated_idx3"; -- --- Name: hmis2024exits_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024exits_634d ON public.hmis_2024_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateCreated_idx4"; -- --- Name: hmis2024exits_6f2b; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024exits_6f2b ON public.hmis_2024_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateDeleted_idx"; -- --- Name: hmis2024exits_f3a2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024exits_f3a2 ON public.hmis_2024_exits USING btree ("DateDeleted") INCLUDE ("EnrollmentID", "ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateDeleted_idx1"; -- --- Name: hmis2024exits_fa9a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024exits_fa9a ON public.hmis_2024_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateDeleted_idx2"; -- --- Name: hmis2024funders_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024funders_42d5 ON public.hmis_2024_funders USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateDeleted_idx3"; -- --- Name: hmis2024funders_4657; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024funders_4657 ON public.hmis_2024_funders USING btree ("FunderID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateDeleted_idx4"; -- --- Name: hmis2024funders_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024funders_634d ON public.hmis_2024_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateProvided_idx"; -- --- Name: hmis2024funders_d381; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024funders_d381 ON public.hmis_2024_funders USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateProvided_idx1"; -- --- Name: hmis2024healthanddvs_1329; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024healthanddvs_1329 ON public.hmis_2024_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateProvided_idx2"; -- --- Name: hmis2024healthanddvs_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024healthanddvs_42d5 ON public.hmis_2024_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateProvided_idx3"; -- --- Name: hmis2024healthanddvs_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024healthanddvs_634d ON public.hmis_2024_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateProvided_idx4"; -- --- Name: hmis2024hmisparticipations_42af; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024hmisparticipations_42af ON public.hmis_2024_hmis_participations USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateUpdated_idx"; -- --- Name: hmis2024hmisparticipations_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024hmisparticipations_634d ON public.hmis_2024_hmis_participations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateUpdated_idx1"; -- --- Name: hmis2024hmisparticipations_827e; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024hmisparticipations_827e ON public.hmis_2024_hmis_participations USING btree ("HMISParticipationID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateUpdated_idx2"; -- --- Name: hmis2024incomebenefits_16c2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024incomebenefits_16c2 ON public.hmis_2024_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateUpdated_idx3"; -- --- Name: hmis2024incomebenefits_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024incomebenefits_42d5 ON public.hmis_2024_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_DateUpdated_idx4"; -- --- Name: hmis2024incomebenefits_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024incomebenefits_634d ON public.hmis_2024_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx"; -- --- Name: hmis2024incomebenefits_ae8d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024incomebenefits_ae8d ON public.hmis_2024_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis2024incomebenefits_f5f5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024incomebenefits_f5f5 ON public.hmis_2024_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis2024incomebenefits_fabe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024incomebenefits_fabe ON public.hmis_2024_income_benefits USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis2024inventories_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024inventories_42d5 ON public.hmis_2024_inventories USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis2024inventories_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024inventories_634d ON public.hmis_2024_inventories USING btree ("ExportID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis2024inventories_9529; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024inventories_9529 ON public.hmis_2024_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_EnrollmentID_idx"; -- --- Name: hmis2024inventories_d381; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024inventories_d381 ON public.hmis_2024_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_EnrollmentID_idx1"; -- --- Name: hmis2024organizations_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024organizations_634d ON public.hmis_2024_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_EnrollmentID_idx2"; -- --- Name: hmis2024organizations_b19d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024organizations_b19d ON public.hmis_2024_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_EnrollmentID_idx3"; -- --- Name: hmis2024projectcocs_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024projectcocs_42d5 ON public.hmis_2024_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_EnrollmentID_idx4"; -- --- Name: hmis2024projectcocs_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024projectcocs_634d ON public.hmis_2024_project_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_ExportID_idx"; -- --- Name: hmis2024projectcocs_787b; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024projectcocs_787b ON public.hmis_2024_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_ExportID_idx1"; -- --- Name: hmis2024projects_42af; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024projects_42af ON public.hmis_2024_projects USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_ExportID_idx2"; -- --- Name: hmis2024projects_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024projects_42d5 ON public.hmis_2024_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_ExportID_idx3"; -- --- Name: hmis2024projects_e4bb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024projects_e4bb ON public.hmis_2024_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_ExportID_idx4"; -- --- Name: hmis2024services_237b; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024services_237b ON public.hmis_2024_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_PersonalID_idx"; -- --- Name: hmis2024services_3444; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024services_3444 ON public.hmis_2024_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_PersonalID_idx1"; -- --- Name: hmis2024services_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024services_42d5 ON public.hmis_2024_services USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_PersonalID_idx2"; -- --- Name: hmis2024services_4337; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024services_4337 ON public.hmis_2024_services USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_PersonalID_idx3"; -- --- Name: hmis2024services_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024services_634d ON public.hmis_2024_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_PersonalID_idx4"; -- --- Name: hmis2024services_6415; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024services_6415 ON public.hmis_2024_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx"; -- --- Name: hmis2024services_8dbb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024services_8dbb ON public.hmis_2024_services USING btree ("RecordType", "DateDeleted", "DateProvided") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx1"; -- --- Name: hmis2024services_9c1a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024services_9c1a ON public.hmis_2024_services USING btree ("EnrollmentID", "RecordType", "DateDeleted") INCLUDE ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx2"; -- --- Name: hmis2024services_f3a2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024services_f3a2 ON public.hmis_2024_services USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx3"; -- --- Name: hmis2024users_57c7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024users_57c7 ON public.hmis_2024_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_DateDeleted_idx4"; -- --- Name: hmis2024users_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024users_634d ON public.hmis_2024_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_DateProvided_idx"; -- --- Name: hmis2024youtheducationstatuses_6049; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024youtheducationstatuses_6049 ON public.hmis_2024_youth_education_statuses USING btree ("YouthEducationStatusID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_DateProvided_idx1"; -- --- Name: hmis2024youtheducationstatuses_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024youtheducationstatuses_634d ON public.hmis_2024_youth_education_statuses USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_DateProvided_idx2"; -- --- Name: hmis2024youtheducationstatuses_fabe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis2024youtheducationstatuses_fabe ON public.hmis_2024_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_DateProvided_idx3"; -- --- Name: hmis_2020_affiliations-jXFa; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_affiliations-jXFa" ON public.hmis_2020_affiliations USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_DateProvided_idx4"; -- --- Name: hmis_2020_affiliations-lZaj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_affiliations-lZaj" ON public.hmis_2020_affiliations USING btree ("AffiliationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_idx"; -- --- Name: hmis_2020_affiliations-qycr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_affiliations-qycr" ON public.hmis_2020_affiliations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_idx1"; -- --- Name: hmis_2020_aggregated_enrollments-0cTv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "hmis_2020_aggregated_enrollments-0cTv" ON public.hmis_2020_aggregated_enrollments USING btree ("EnrollmentID", "PersonalID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_idx2"; -- --- Name: hmis_2020_aggregated_enrollments-4L8g; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-4L8g" ON public.hmis_2020_aggregated_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_idx3"; -- --- Name: hmis_2020_aggregated_enrollments-6wqk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-6wqk" ON public.hmis_2020_aggregated_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_RecordType_idx4"; -- --- Name: hmis_2020_aggregated_enrollments-BMfj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-BMfj" ON public.hmis_2020_aggregated_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_ServicesID_data_source_id_idx"; -- --- Name: hmis_2020_aggregated_enrollments-CpSq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-CpSq" ON public.hmis_2020_aggregated_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_ServicesID_idx"; -- --- Name: hmis_2020_aggregated_enrollments-E6ih; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-E6ih" ON public.hmis_2020_aggregated_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_ServicesID_idx1"; -- --- Name: hmis_2020_aggregated_enrollments-G7U1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-G7U1" ON public.hmis_2020_aggregated_enrollments USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_ServicesID_idx2"; -- --- Name: hmis_2020_aggregated_enrollments-Jmkq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-Jmkq" ON public.hmis_2020_aggregated_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_ServicesID_idx3"; -- --- Name: hmis_2020_aggregated_enrollments-QV2G; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-QV2G" ON public.hmis_2020_aggregated_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_38_ServicesID_idx4"; -- --- Name: hmis_2020_aggregated_enrollments-RJNU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-RJNU" ON public.hmis_2020_aggregated_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_38_importer_log_id_idx; -- --- Name: hmis_2020_aggregated_enrollments-RNSl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-RNSl" ON public.hmis_2020_aggregated_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_38_pkey; -- --- Name: hmis_2020_aggregated_enrollments-Xqsk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_38_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-Xqsk" ON public.hmis_2020_aggregated_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_38_source_type_source_id_idx; -- --- Name: hmis_2020_aggregated_enrollments-ZGm4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-ZGm4" ON public.hmis_2020_aggregated_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateCreated_idx"; -- --- Name: hmis_2020_aggregated_enrollments-fSDc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "hmis_2020_aggregated_enrollments-fSDc" ON public.hmis_2020_aggregated_enrollments USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateCreated_idx1"; -- --- Name: hmis_2020_aggregated_enrollments-fXAB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-fXAB" ON public.hmis_2020_aggregated_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateCreated_idx2"; -- --- Name: hmis_2020_aggregated_enrollments-ocKA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-ocKA" ON public.hmis_2020_aggregated_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateCreated_idx3"; -- --- Name: hmis_2020_aggregated_enrollments-oiEU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-oiEU" ON public.hmis_2020_aggregated_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateCreated_idx4"; -- --- Name: hmis_2020_aggregated_enrollments-wnDD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-wnDD" ON public.hmis_2020_aggregated_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateDeleted_idx"; -- --- Name: hmis_2020_aggregated_enrollments-ysoO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-ysoO" ON public.hmis_2020_aggregated_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateDeleted_idx1"; -- --- Name: hmis_2020_aggregated_enrollments-zNVo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_enrollments-zNVo" ON public.hmis_2020_aggregated_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateDeleted_idx2"; -- --- Name: hmis_2020_aggregated_exits-2lOR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_exits-2lOR" ON public.hmis_2020_aggregated_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateDeleted_idx3"; -- --- Name: hmis_2020_aggregated_exits-2mwI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "hmis_2020_aggregated_exits-2mwI" ON public.hmis_2020_aggregated_exits USING btree ("ExitID", importer_log_id, data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateDeleted_idx4"; -- --- Name: hmis_2020_aggregated_exits-BwSf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_exits-BwSf" ON public.hmis_2020_aggregated_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateProvided_idx"; -- --- Name: hmis_2020_aggregated_exits-EPOP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_exits-EPOP" ON public.hmis_2020_aggregated_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateProvided_idx1"; -- --- Name: hmis_2020_aggregated_exits-GBBG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_exits-GBBG" ON public.hmis_2020_aggregated_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateProvided_idx2"; -- --- Name: hmis_2020_aggregated_exits-SgMf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_exits-SgMf" ON public.hmis_2020_aggregated_exits USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateProvided_idx3"; -- --- Name: hmis_2020_aggregated_exits-UYdB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "hmis_2020_aggregated_exits-UYdB" ON public.hmis_2020_aggregated_exits USING btree ("ExitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateProvided_idx4"; -- --- Name: hmis_2020_aggregated_exits-VRGa; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_exits-VRGa" ON public.hmis_2020_aggregated_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateUpdated_idx"; -- --- Name: hmis_2020_aggregated_exits-auds; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_exits-auds" ON public.hmis_2020_aggregated_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateUpdated_idx1"; -- --- Name: hmis_2020_aggregated_exits-cduB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_exits-cduB" ON public.hmis_2020_aggregated_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateUpdated_idx2"; -- --- Name: hmis_2020_aggregated_exits-g6y1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_aggregated_exits-g6y1" ON public.hmis_2020_aggregated_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateUpdated_idx3"; -- --- Name: hmis_2020_assessment_questions-0oMf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessment_questions-0oMf" ON public.hmis_2020_assessment_questions USING btree ("AssessmentQuestionID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_DateUpdated_idx4"; -- --- Name: hmis_2020_assessment_questions-fD1j; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessment_questions-fD1j" ON public.hmis_2020_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_2020_assessment_questions-gVG2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessment_questions-gVG2" ON public.hmis_2020_assessment_questions USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_2020_assessment_questions-sDob; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessment_questions-sDob" ON public.hmis_2020_assessment_questions USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis_2020_assessment_results-2kxY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessment_results-2kxY" ON public.hmis_2020_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis_2020_assessment_results-AnQd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessment_results-AnQd" ON public.hmis_2020_assessment_results USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis_2020_assessment_results-CKgC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessment_results-CKgC" ON public.hmis_2020_assessment_results USING btree (source_type, source_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis_2020_assessment_results-rawc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessment_results-rawc" ON public.hmis_2020_assessment_results USING btree ("AssessmentResultID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_EnrollmentID_idx"; -- --- Name: hmis_2020_assessments-3sM0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessments-3sM0" ON public.hmis_2020_assessments USING btree ("AssessmentID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_EnrollmentID_idx1"; -- --- Name: hmis_2020_assessments-B1tS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessments-B1tS" ON public.hmis_2020_assessments USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_EnrollmentID_idx2"; -- --- Name: hmis_2020_assessments-YW8L; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessments-YW8L" ON public.hmis_2020_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_EnrollmentID_idx3"; -- --- Name: hmis_2020_assessments-gMUw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessments-gMUw" ON public.hmis_2020_assessments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_EnrollmentID_idx4"; -- --- Name: hmis_2020_assessments-kdgA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessments-kdgA" ON public.hmis_2020_assessments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_ExportID_idx"; -- --- Name: hmis_2020_assessments-kqMe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessments-kqMe" ON public.hmis_2020_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_ExportID_idx1"; -- --- Name: hmis_2020_assessments-u0eq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_assessments-u0eq" ON public.hmis_2020_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_ExportID_idx2"; -- --- Name: hmis_2020_clients-3vTw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_clients-3vTw" ON public.hmis_2020_clients USING btree ("LastName"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_ExportID_idx3"; -- --- Name: hmis_2020_clients-48Qj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_clients-48Qj" ON public.hmis_2020_clients USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_ExportID_idx4"; -- --- Name: hmis_2020_clients-VRsB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_clients-VRsB" ON public.hmis_2020_clients USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_PersonalID_idx"; -- --- Name: hmis_2020_clients-gmgS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_clients-gmgS" ON public.hmis_2020_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_PersonalID_idx1"; -- --- Name: hmis_2020_clients-jdcP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_clients-jdcP" ON public.hmis_2020_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_PersonalID_idx2"; -- --- Name: hmis_2020_clients-qK9d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_clients-qK9d" ON public.hmis_2020_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_PersonalID_idx3"; -- --- Name: hmis_2020_clients-qUjP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_clients-qUjP" ON public.hmis_2020_clients USING btree ("DOB"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_PersonalID_idx4"; -- --- Name: hmis_2020_clients-rrgI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_clients-rrgI" ON public.hmis_2020_clients USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx"; -- --- Name: hmis_2020_clients-t6qe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_clients-t6qe" ON public.hmis_2020_clients USING btree ("PersonalID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx1"; -- --- Name: hmis_2020_clients-z1iL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_clients-z1iL" ON public.hmis_2020_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx2"; -- --- Name: hmis_2020_current_living_situations-4v4L; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_current_living_situations-4v4L" ON public.hmis_2020_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx3"; -- --- Name: hmis_2020_current_living_situations-DXZ0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_current_living_situations-DXZ0" ON public.hmis_2020_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_DateDeleted_idx4"; -- --- Name: hmis_2020_current_living_situations-WmJZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_current_living_situations-WmJZ" ON public.hmis_2020_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_DateProvided_idx"; -- --- Name: hmis_2020_current_living_situations-cLpS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_current_living_situations-cLpS" ON public.hmis_2020_current_living_situations USING btree ("CurrentLivingSitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_DateProvided_idx1"; -- --- Name: hmis_2020_current_living_situations-hGfj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_current_living_situations-hGfj" ON public.hmis_2020_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_DateProvided_idx2"; -- --- Name: hmis_2020_current_living_situations-jG8y; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_current_living_situations-jG8y" ON public.hmis_2020_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_DateProvided_idx3"; -- --- Name: hmis_2020_current_living_situations-qbbx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_current_living_situations-qbbx" ON public.hmis_2020_current_living_situations USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_DateProvided_idx4"; -- --- Name: hmis_2020_current_living_situations-vWt4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_current_living_situations-vWt4" ON public.hmis_2020_current_living_situations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_idx"; -- --- Name: hmis_2020_disabilities-1JPN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_disabilities-1JPN" ON public.hmis_2020_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_idx1"; -- --- Name: hmis_2020_disabilities-2lYA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_disabilities-2lYA" ON public.hmis_2020_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_idx2"; -- --- Name: hmis_2020_disabilities-8DFL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_disabilities-8DFL" ON public.hmis_2020_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_idx3"; -- --- Name: hmis_2020_disabilities-DA3C; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_disabilities-DA3C" ON public.hmis_2020_disabilities USING btree ("DisabilitiesID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_RecordType_idx4"; -- --- Name: hmis_2020_disabilities-G1Z0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_disabilities-G1Z0" ON public.hmis_2020_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_ServicesID_data_source_id_idx"; -- --- Name: hmis_2020_disabilities-oxMH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_disabilities-oxMH" ON public.hmis_2020_disabilities USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_ServicesID_idx"; -- --- Name: hmis_2020_disabilities-p0j2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_disabilities-p0j2" ON public.hmis_2020_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_ServicesID_idx1"; -- --- Name: hmis_2020_disabilities-zFRZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_disabilities-zFRZ" ON public.hmis_2020_disabilities USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_ServicesID_idx2"; -- --- Name: hmis_2020_employment_educations-EPrc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_employment_educations-EPrc" ON public.hmis_2020_employment_educations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_ServicesID_idx3"; -- --- Name: hmis_2020_employment_educations-Hv6e; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_employment_educations-Hv6e" ON public.hmis_2020_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_39_ServicesID_idx4"; -- --- Name: hmis_2020_employment_educations-mSvG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_employment_educations-mSvG" ON public.hmis_2020_employment_educations USING btree ("EnrollmentID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_39_importer_log_id_idx; -- --- Name: hmis_2020_employment_educations-oPbl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_employment_educations-oPbl" ON public.hmis_2020_employment_educations USING btree ("DateCreated"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_39_pkey; -- --- Name: hmis_2020_employment_educations-rTDS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_39_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_employment_educations-rTDS" ON public.hmis_2020_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_39_source_type_source_id_idx; -- --- Name: hmis_2020_employment_educations-rxeE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_employment_educations-rxeE" ON public.hmis_2020_employment_educations USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateCreated_idx"; -- --- Name: hmis_2020_employment_educations-uCTm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_employment_educations-uCTm" ON public.hmis_2020_employment_educations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateCreated_idx1"; -- --- Name: hmis_2020_employment_educations-zM3A; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_employment_educations-zM3A" ON public.hmis_2020_employment_educations USING btree ("EmploymentEducationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateCreated_idx2"; -- --- Name: hmis_2020_enrollment_cocs-5FMZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollment_cocs-5FMZ" ON public.hmis_2020_enrollment_cocs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateCreated_idx3"; -- --- Name: hmis_2020_enrollment_cocs-5ROz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollment_cocs-5ROz" ON public.hmis_2020_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateCreated_idx4"; -- --- Name: hmis_2020_enrollment_cocs-6ENr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollment_cocs-6ENr" ON public.hmis_2020_enrollment_cocs USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateDeleted_idx"; -- --- Name: hmis_2020_enrollment_cocs-6Mre; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollment_cocs-6Mre" ON public.hmis_2020_enrollment_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateDeleted_idx1"; -- --- Name: hmis_2020_enrollment_cocs-GUQA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollment_cocs-GUQA" ON public.hmis_2020_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateDeleted_idx2"; -- --- Name: hmis_2020_enrollment_cocs-LilW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollment_cocs-LilW" ON public.hmis_2020_enrollment_cocs USING btree ("EnrollmentCoCID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateDeleted_idx3"; -- --- Name: hmis_2020_enrollment_cocs-Se2O; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollment_cocs-Se2O" ON public.hmis_2020_enrollment_cocs USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateDeleted_idx4"; -- --- Name: hmis_2020_enrollment_cocs-gQJA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollment_cocs-gQJA" ON public.hmis_2020_enrollment_cocs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateProvided_idx"; -- --- Name: hmis_2020_enrollment_cocs-sVGW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollment_cocs-sVGW" ON public.hmis_2020_enrollment_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateProvided_idx1"; -- --- Name: hmis_2020_enrollment_cocs-zikd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollment_cocs-zikd" ON public.hmis_2020_enrollment_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateProvided_idx2"; -- --- Name: hmis_2020_enrollments-3NkS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-3NkS" ON public.hmis_2020_enrollments USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateProvided_idx3"; -- --- Name: hmis_2020_enrollments-6ZYF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-6ZYF" ON public.hmis_2020_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateProvided_idx4"; -- --- Name: hmis_2020_enrollments-8tOj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-8tOj" ON public.hmis_2020_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateUpdated_idx"; -- --- Name: hmis_2020_enrollments-9mEF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-9mEF" ON public.hmis_2020_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateUpdated_idx1"; -- --- Name: hmis_2020_enrollments-HNd8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-HNd8" ON public.hmis_2020_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateUpdated_idx2"; -- --- Name: hmis_2020_enrollments-Io4W; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-Io4W" ON public.hmis_2020_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateUpdated_idx3"; -- --- Name: hmis_2020_enrollments-Qd6d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-Qd6d" ON public.hmis_2020_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_DateUpdated_idx4"; -- --- Name: hmis_2020_enrollments-UM6y; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-UM6y" ON public.hmis_2020_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_2020_enrollments-UrCS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-UrCS" ON public.hmis_2020_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_2020_enrollments-ZK9t; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-ZK9t" ON public.hmis_2020_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis_2020_enrollments-dRUc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-dRUc" ON public.hmis_2020_enrollments USING btree ("EnrollmentID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis_2020_enrollments-dn8l; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-dn8l" ON public.hmis_2020_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis_2020_enrollments-hQVn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-hQVn" ON public.hmis_2020_enrollments USING btree ("DateUpdated"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis_2020_enrollments-kIRP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-kIRP" ON public.hmis_2020_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_EnrollmentID_idx"; -- --- Name: hmis_2020_enrollments-kzx7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-kzx7" ON public.hmis_2020_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_EnrollmentID_idx1"; -- --- Name: hmis_2020_enrollments-xB0L; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-xB0L" ON public.hmis_2020_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_EnrollmentID_idx2"; -- --- Name: hmis_2020_enrollments-xiJ6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-xiJ6" ON public.hmis_2020_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_EnrollmentID_idx3"; -- --- Name: hmis_2020_enrollments-y1wr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_enrollments-y1wr" ON public.hmis_2020_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_EnrollmentID_idx4"; -- --- Name: hmis_2020_events-5Ulw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_events-5Ulw" ON public.hmis_2020_events USING btree ("EventID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_ExportID_idx"; -- --- Name: hmis_2020_events-SY9T; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_events-SY9T" ON public.hmis_2020_events USING btree ("EventDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_ExportID_idx1"; -- --- Name: hmis_2020_events-chRs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_events-chRs" ON public.hmis_2020_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_ExportID_idx2"; -- --- Name: hmis_2020_events-ej4z; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_events-ej4z" ON public.hmis_2020_events USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_ExportID_idx3"; -- --- Name: hmis_2020_events-h86C; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_events-h86C" ON public.hmis_2020_events USING btree ("EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_ExportID_idx4"; -- --- Name: hmis_2020_events-sFna; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_events-sFna" ON public.hmis_2020_events USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_PersonalID_idx"; -- --- Name: hmis_2020_events-ztpH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_events-ztpH" ON public.hmis_2020_events USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_PersonalID_idx1"; -- --- Name: hmis_2020_exits-4DnO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exits-4DnO" ON public.hmis_2020_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_PersonalID_idx2"; -- --- Name: hmis_2020_exits-Crsu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exits-Crsu" ON public.hmis_2020_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_PersonalID_idx3"; -- --- Name: hmis_2020_exits-F305; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exits-F305" ON public.hmis_2020_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_PersonalID_idx4"; -- --- Name: hmis_2020_exits-QkLT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exits-QkLT" ON public.hmis_2020_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx"; -- --- Name: hmis_2020_exits-S9yO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exits-S9yO" ON public.hmis_2020_exits USING btree ("ExitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx1"; -- --- Name: hmis_2020_exits-Z3F6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exits-Z3F6" ON public.hmis_2020_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx2"; -- --- Name: hmis_2020_exits-c4Un; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exits-c4Un" ON public.hmis_2020_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx3"; -- --- Name: hmis_2020_exits-dozv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exits-dozv" ON public.hmis_2020_exits USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_DateDeleted_idx4"; -- --- Name: hmis_2020_exits-nEjV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exits-nEjV" ON public.hmis_2020_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_DateProvided_idx"; -- --- Name: hmis_2020_exits-s54g; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exits-s54g" ON public.hmis_2020_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_DateProvided_idx1"; -- --- Name: hmis_2020_exports-5gdY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exports-5gdY" ON public.hmis_2020_exports USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_DateProvided_idx2"; -- --- Name: hmis_2020_exports-YcvP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exports-YcvP" ON public.hmis_2020_exports USING btree ("ExportID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_DateProvided_idx3"; -- --- Name: hmis_2020_exports-awLV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_exports-awLV" ON public.hmis_2020_exports USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_DateProvided_idx4"; -- --- Name: hmis_2020_funders-CQE4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_funders-CQE4" ON public.hmis_2020_funders USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_idx"; -- --- Name: hmis_2020_funders-P3hw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_funders-P3hw" ON public.hmis_2020_funders USING btree ("FunderID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_idx1"; -- --- Name: hmis_2020_funders-Srvd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_funders-Srvd" ON public.hmis_2020_funders USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_idx2"; -- --- Name: hmis_2020_funders-XiWW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_funders-XiWW" ON public.hmis_2020_funders USING btree ("FunderID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_idx3"; -- --- Name: hmis_2020_funders-qRxb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_funders-qRxb" ON public.hmis_2020_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_RecordType_idx4"; -- --- Name: hmis_2020_funders-yKF3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_funders-yKF3" ON public.hmis_2020_funders USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_ServicesID_data_source_id_idx"; -- --- Name: hmis_2020_health_and_dvs-85bD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_health_and_dvs-85bD" ON public.hmis_2020_health_and_dvs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_ServicesID_idx"; -- --- Name: hmis_2020_health_and_dvs-Ha57; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_health_and_dvs-Ha57" ON public.hmis_2020_health_and_dvs USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_ServicesID_idx1"; -- --- Name: hmis_2020_health_and_dvs-Kqiz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_health_and_dvs-Kqiz" ON public.hmis_2020_health_and_dvs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_ServicesID_idx2"; -- --- Name: hmis_2020_health_and_dvs-SbP4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_health_and_dvs-SbP4" ON public.hmis_2020_health_and_dvs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_ServicesID_idx3"; -- --- Name: hmis_2020_health_and_dvs-TUTe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_health_and_dvs-TUTe" ON public.hmis_2020_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_ServicesID_idx4"; -- --- Name: hmis_2020_health_and_dvs-w4jj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_ServicesID_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_health_and_dvs-w4jj" ON public.hmis_2020_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_3_ServicesID_importer_log_id_idx"; -- --- Name: hmis_2020_health_and_dvs-zE81; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_health_and_dvs-zE81" ON public.hmis_2020_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_3_importer_log_id_idx; -- --- Name: hmis_2020_health_and_dvs-zonF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_health_and_dvs-zonF" ON public.hmis_2020_health_and_dvs USING btree ("HealthAndDVID", data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_3_pkey; -- --- Name: hmis_2020_income_benefits-AUwp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_3_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_income_benefits-AUwp" ON public.hmis_2020_income_benefits USING btree ("EnrollmentID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_3_source_type_source_id_idx; -- --- Name: hmis_2020_income_benefits-BE9p; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_income_benefits-BE9p" ON public.hmis_2020_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateCreated_idx"; -- --- Name: hmis_2020_income_benefits-JwPq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_income_benefits-JwPq" ON public.hmis_2020_income_benefits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateCreated_idx1"; -- --- Name: hmis_2020_income_benefits-LCKi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_income_benefits-LCKi" ON public.hmis_2020_income_benefits USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateCreated_idx2"; -- --- Name: hmis_2020_income_benefits-NcHX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_income_benefits-NcHX" ON public.hmis_2020_income_benefits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateCreated_idx3"; -- --- Name: hmis_2020_income_benefits-aphJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_income_benefits-aphJ" ON public.hmis_2020_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateCreated_idx4"; -- --- Name: hmis_2020_income_benefits-pfYl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_income_benefits-pfYl" ON public.hmis_2020_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateDeleted_idx"; -- --- Name: hmis_2020_income_benefits-tBcJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_income_benefits-tBcJ" ON public.hmis_2020_income_benefits USING btree ("IncomeBenefitsID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateDeleted_idx1"; -- --- Name: hmis_2020_inventories-0TGU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_inventories-0TGU" ON public.hmis_2020_inventories USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateDeleted_idx2"; -- --- Name: hmis_2020_inventories-DTHt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_inventories-DTHt" ON public.hmis_2020_inventories USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateDeleted_idx3"; -- --- Name: hmis_2020_inventories-J6na; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_inventories-J6na" ON public.hmis_2020_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateDeleted_idx4"; -- --- Name: hmis_2020_inventories-LNwI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_inventories-LNwI" ON public.hmis_2020_inventories USING btree ("InventoryID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateProvided_idx"; -- --- Name: hmis_2020_inventories-fun6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_inventories-fun6" ON public.hmis_2020_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateProvided_idx1"; -- --- Name: hmis_2020_inventories-whCo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_inventories-whCo" ON public.hmis_2020_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateProvided_idx2"; -- --- Name: hmis_2020_inventories-yV3L; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_inventories-yV3L" ON public.hmis_2020_inventories USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateProvided_idx3"; -- --- Name: hmis_2020_organizations-MfSb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_organizations-MfSb" ON public.hmis_2020_organizations USING btree ("OrganizationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateProvided_idx4"; -- --- Name: hmis_2020_organizations-Prts; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_organizations-Prts" ON public.hmis_2020_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateUpdated_idx"; -- --- Name: hmis_2020_organizations-SWg3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_organizations-SWg3" ON public.hmis_2020_organizations USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateUpdated_idx1"; -- --- Name: hmis_2020_organizations-VQWo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_organizations-VQWo" ON public.hmis_2020_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateUpdated_idx2"; -- --- Name: hmis_2020_project_cocs-GTs4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_project_cocs-GTs4" ON public.hmis_2020_project_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateUpdated_idx3"; -- --- Name: hmis_2020_project_cocs-JAwb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_project_cocs-JAwb" ON public.hmis_2020_project_cocs USING btree ("ProjectCoCID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_DateUpdated_idx4"; -- --- Name: hmis_2020_project_cocs-K8nw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_project_cocs-K8nw" ON public.hmis_2020_project_cocs USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_2020_project_cocs-OI4Q; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_project_cocs-OI4Q" ON public.hmis_2020_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_2020_project_cocs-Tmf3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_project_cocs-Tmf3" ON public.hmis_2020_project_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis_2020_project_cocs-icQq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_project_cocs-icQq" ON public.hmis_2020_project_cocs USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis_2020_project_cocs-iuZj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_project_cocs-iuZj" ON public.hmis_2020_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis_2020_projects-5SSM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_projects-5SSM" ON public.hmis_2020_projects USING btree (source_type, source_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis_2020_projects-ctk2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_projects-ctk2" ON public.hmis_2020_projects USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_EnrollmentID_idx"; -- --- Name: hmis_2020_projects-fqB3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_projects-fqB3" ON public.hmis_2020_projects USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_EnrollmentID_idx1"; -- --- Name: hmis_2020_projects-nhkJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_projects-nhkJ" ON public.hmis_2020_projects USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_EnrollmentID_idx2"; -- --- Name: hmis_2020_projects-oxQa; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_projects-oxQa" ON public.hmis_2020_projects USING btree ("ProjectID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_EnrollmentID_idx3"; -- --- Name: hmis_2020_projects-xkUs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_projects-xkUs" ON public.hmis_2020_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_EnrollmentID_idx4"; -- --- Name: hmis_2020_projects-zcbu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_projects-zcbu" ON public.hmis_2020_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_ExportID_idx"; -- --- Name: hmis_2020_services-3lC5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-3lC5" ON public.hmis_2020_services USING btree ("ServicesID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_ExportID_idx1"; -- --- Name: hmis_2020_services-4CG1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-4CG1" ON public.hmis_2020_services USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_ExportID_idx2"; -- --- Name: hmis_2020_services-8nZj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-8nZj" ON public.hmis_2020_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_ExportID_idx3"; -- --- Name: hmis_2020_services-ApuA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-ApuA" ON public.hmis_2020_services USING btree ("RecordType", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_ExportID_idx4"; -- --- Name: hmis_2020_services-LqGx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-LqGx" ON public.hmis_2020_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_PersonalID_idx"; -- --- Name: hmis_2020_services-QkXD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-QkXD" ON public.hmis_2020_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_PersonalID_idx1"; -- --- Name: hmis_2020_services-Rwkq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-Rwkq" ON public.hmis_2020_services USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_PersonalID_idx2"; -- --- Name: hmis_2020_services-VJ0s; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-VJ0s" ON public.hmis_2020_services USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_PersonalID_idx3"; -- --- Name: hmis_2020_services-WrTZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-WrTZ" ON public.hmis_2020_services USING btree ("RecordType", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_PersonalID_idx4"; -- --- Name: hmis_2020_services-Y8F7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-Y8F7" ON public.hmis_2020_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx"; -- --- Name: hmis_2020_services-eNab; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-eNab" ON public.hmis_2020_services USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx1"; -- --- Name: hmis_2020_services-ggIO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-ggIO" ON public.hmis_2020_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx2"; -- --- Name: hmis_2020_services-m63x; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-m63x" ON public.hmis_2020_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx3"; -- --- Name: hmis_2020_services-mIRP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-mIRP" ON public.hmis_2020_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_DateDeleted_idx4"; -- --- Name: hmis_2020_services-wXdL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_services-wXdL" ON public.hmis_2020_services USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_DateProvided_idx"; -- --- Name: hmis_2020_users-74tq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_users-74tq" ON public.hmis_2020_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_DateProvided_idx1"; -- --- Name: hmis_2020_users-DmeI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_users-DmeI" ON public.hmis_2020_users USING btree ("UserID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_DateProvided_idx2"; -- --- Name: hmis_2020_users-Ls1u; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_users-Ls1u" ON public.hmis_2020_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_DateProvided_idx3"; -- --- Name: hmis_2020_users-ZfY6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2020_users-ZfY6" ON public.hmis_2020_users USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_DateProvided_idx4"; -- --- Name: hmis_2022_affiliations-6457; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_affiliations-6457" ON public.hmis_2022_affiliations USING btree ("AffiliationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_idx"; -- --- Name: hmis_2022_assessment_questions-0cd3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_assessment_questions-0cd3" ON public.hmis_2022_assessment_questions USING btree ("AssessmentQuestionID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_idx1"; -- --- Name: hmis_2022_assessment_results-d6c9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_assessment_results-d6c9" ON public.hmis_2022_assessment_results USING btree ("AssessmentResultID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_idx2"; -- --- Name: hmis_2022_assessments-df76; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_assessments-df76" ON public.hmis_2022_assessments USING btree ("AssessmentID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_idx3"; -- --- Name: hmis_2022_clients-230f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_clients-230f" ON public.hmis_2022_clients USING btree ("PersonalID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_RecordType_idx4"; -- --- Name: hmis_2022_current_living_situations-cf31; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_current_living_situations-cf31" ON public.hmis_2022_current_living_situations USING btree ("CurrentLivingSitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_ServicesID_data_source_id_idx"; -- --- Name: hmis_2022_disabilities_hk_l_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis_2022_disabilities_hk_l_id ON public.hmis_2022_disabilities USING btree ("DisabilitiesID", importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_ServicesID_idx"; -- --- Name: hmis_2022_employment_educations-3032; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_employment_educations-3032" ON public.hmis_2022_employment_educations USING btree ("EmploymentEducationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_ServicesID_idx1"; -- --- Name: hmis_2022_enrollment_cocs-d4b8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_enrollment_cocs-d4b8" ON public.hmis_2022_enrollment_cocs USING btree ("EnrollmentCoCID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_ServicesID_idx2"; -- --- Name: hmis_2022_enrollments-0a46; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_enrollments-0a46" ON public.hmis_2022_enrollments USING btree ("EnrollmentID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_ServicesID_idx3"; -- --- Name: hmis_2022_events_hk_l_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis_2022_events_hk_l_id ON public.hmis_2022_events USING btree ("EventID", importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_40_ServicesID_idx4"; -- --- Name: hmis_2022_exit_e_id_compound; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis_2022_exit_e_id_compound ON public.hmis_2022_exits USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_40_importer_log_id_idx; -- --- Name: hmis_2022_exits-cfdd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_exits-cfdd" ON public.hmis_2022_exits USING btree ("ExitID", data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_40_pkey; -- --- Name: hmis_2022_exports-86be; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_40_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_exports-86be" ON public.hmis_2022_exports USING btree ("ExportID", data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_40_source_type_source_id_idx; -- --- Name: hmis_2022_funders-4ad5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_funders-4ad5" ON public.hmis_2022_funders USING btree ("FunderID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateCreated_idx"; -- --- Name: hmis_2022_health_and_dvs_hk_l_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis_2022_health_and_dvs_hk_l_id ON public.hmis_2022_health_and_dvs USING btree ("HealthAndDVID", importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateCreated_idx1"; -- --- Name: hmis_2022_income_benefits_hk_l_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis_2022_income_benefits_hk_l_id ON public.hmis_2022_income_benefits USING btree ("IncomeBenefitsID", importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateCreated_idx2"; -- --- Name: hmis_2022_inventories-86c0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_inventories-86c0" ON public.hmis_2022_inventories USING btree ("InventoryID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateCreated_idx3"; -- --- Name: hmis_2022_organizations-7580; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_organizations-7580" ON public.hmis_2022_organizations USING btree ("OrganizationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateCreated_idx4"; -- --- Name: hmis_2022_project_cocs-3966; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_project_cocs-3966" ON public.hmis_2022_project_cocs USING btree ("ProjectCoCID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateDeleted_idx"; -- --- Name: hmis_2022_projects-92c5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_projects-92c5" ON public.hmis_2022_projects USING btree ("ProjectID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateDeleted_idx1"; -- --- Name: hmis_2022_services_hk_l_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis_2022_services_hk_l_id ON public.hmis_2022_services USING btree ("ServicesID", importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateDeleted_idx2"; -- --- Name: hmis_2022_youth_education_statuses-a32f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2022_youth_education_statuses-a32f" ON public.hmis_2022_youth_education_statuses USING btree ("YouthEducationStatusID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateDeleted_idx3"; -- --- Name: hmis_2024_affiliations-6457; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_affiliations-6457" ON public.hmis_2024_affiliations USING btree ("AffiliationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateDeleted_idx4"; -- --- Name: hmis_2024_assessment_questions-0cd3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_assessment_questions-0cd3" ON public.hmis_2024_assessment_questions USING btree ("AssessmentQuestionID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateProvided_idx"; -- --- Name: hmis_2024_assessment_results-d6c9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_assessment_results-d6c9" ON public.hmis_2024_assessment_results USING btree ("AssessmentResultID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateProvided_idx1"; -- --- Name: hmis_2024_assessments-df76; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_assessments-df76" ON public.hmis_2024_assessments USING btree ("AssessmentID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateProvided_idx2"; -- --- Name: hmis_2024_ce_participations-5c6f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_ce_participations-5c6f" ON public.hmis_2024_ce_participations USING btree ("CEParticipationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateProvided_idx3"; -- --- Name: hmis_2024_clients-230f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_clients-230f" ON public.hmis_2024_clients USING btree ("PersonalID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateProvided_idx4"; -- --- Name: hmis_2024_current_living_situations-cf31; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_current_living_situations-cf31" ON public.hmis_2024_current_living_situations USING btree ("CurrentLivingSitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateUpdated_idx"; -- --- Name: hmis_2024_disabilities-7712; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_disabilities-7712" ON public.hmis_2024_disabilities USING btree ("DisabilitiesID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateUpdated_idx1"; -- --- Name: hmis_2024_employment_educations-3032; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_employment_educations-3032" ON public.hmis_2024_employment_educations USING btree ("EmploymentEducationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateUpdated_idx2"; -- --- Name: hmis_2024_enrollments-0a46; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_enrollments-0a46" ON public.hmis_2024_enrollments USING btree ("EnrollmentID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateUpdated_idx3"; -- --- Name: hmis_2024_events-9f9c; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_events-9f9c" ON public.hmis_2024_events USING btree ("EventID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_DateUpdated_idx4"; -- --- Name: hmis_2024_exits-cfdd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_exits-cfdd" ON public.hmis_2024_exits USING btree ("ExitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_2024_exports-86be; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_exports-86be" ON public.hmis_2024_exports USING btree ("ExportID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_2024_funders-4ad5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_funders-4ad5" ON public.hmis_2024_funders USING btree ("FunderID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis_2024_health_and_dvs-e384; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_health_and_dvs-e384" ON public.hmis_2024_health_and_dvs USING btree ("HealthAndDVID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis_2024_hmis_participations-0f0d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_hmis_participations-0f0d" ON public.hmis_2024_hmis_participations USING btree ("HMISParticipationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis_2024_income_benefits-200d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_income_benefits-200d" ON public.hmis_2024_income_benefits USING btree ("IncomeBenefitsID", data_source_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis_2024_inventories-86c0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_inventories-86c0" ON public.hmis_2024_inventories USING btree ("InventoryID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_EnrollmentID_idx"; -- --- Name: hmis_2024_organizations-7580; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_organizations-7580" ON public.hmis_2024_organizations USING btree ("OrganizationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_EnrollmentID_idx1"; -- --- Name: hmis_2024_project_cocs-3966; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_project_cocs-3966" ON public.hmis_2024_project_cocs USING btree ("ProjectCoCID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_EnrollmentID_idx2"; -- --- Name: hmis_2024_projects-92c5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_projects-92c5" ON public.hmis_2024_projects USING btree ("ProjectID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_EnrollmentID_idx3"; -- --- Name: hmis_2024_services-7a57; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_services-7a57" ON public.hmis_2024_services USING btree ("ServicesID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_EnrollmentID_idx4"; -- --- Name: hmis_2024_users-b749; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_users-b749" ON public.hmis_2024_users USING btree ("UserID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_ExportID_idx"; -- --- Name: hmis_2024_youth_education_statuses-a32f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_2024_youth_education_statuses-a32f" ON public.hmis_2024_youth_education_statuses USING btree ("YouthEducationStatusID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_ExportID_idx1"; -- --- Name: hmis_a_act_exl_con; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis_a_act_exl_con ON public.hmis_assessments USING btree (active, exclude_from_window, confidential); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_ExportID_idx2"; -- --- Name: hmis_agg_enrollments_p_id_p_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis_agg_enrollments_p_id_p_id_ds_id ON public.hmis_aggregated_enrollments USING btree ("PersonalID", "ProjectID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_ExportID_idx3"; -- --- Name: hmis_aggregated_enrollments-aTmv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "hmis_aggregated_enrollments-aTmv" ON public.hmis_aggregated_enrollments USING btree ("EnrollmentID", "PersonalID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_ExportID_idx4"; -- --- Name: hmis_aggregated_enrollments-qHbn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_aggregated_enrollments-qHbn" ON public.hmis_aggregated_enrollments USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_PersonalID_idx"; -- --- Name: hmis_aggregated_exits-FiCn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "hmis_aggregated_exits-FiCn" ON public.hmis_aggregated_exits USING btree ("ExitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_PersonalID_idx1"; -- --- Name: hmis_aggregated_exits-Nmym; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_aggregated_exits-Nmym" ON public.hmis_aggregated_exits USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_PersonalID_idx2"; -- --- Name: hmis_csv_2020_affiliations-F2ar; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_affiliations-F2ar" ON public.hmis_csv_2020_affiliations USING btree ("AffiliationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_PersonalID_idx3"; -- --- Name: hmis_csv_2020_affiliations-ofln; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_affiliations-ofln" ON public.hmis_csv_2020_affiliations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_PersonalID_idx4"; -- --- Name: hmis_csv_2020_assessment_questions-U6Dk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_assessment_questions-U6Dk" ON public.hmis_csv_2020_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx"; -- --- Name: hmis_csv_2020_assessment_questions-Xt6t; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_assessment_questions-Xt6t" ON public.hmis_csv_2020_assessment_questions USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx1"; -- --- Name: hmis_csv_2020_assessment_questions-ZGxE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_assessment_questions-ZGxE" ON public.hmis_csv_2020_assessment_questions USING btree ("AssessmentQuestionID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx2"; -- --- Name: hmis_csv_2020_assessment_results-NEN7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_assessment_results-NEN7" ON public.hmis_csv_2020_assessment_results USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx3"; -- --- Name: hmis_csv_2020_assessment_results-NLC4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_assessment_results-NLC4" ON public.hmis_csv_2020_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_DateDeleted_idx4"; -- --- Name: hmis_csv_2020_assessment_results-Rkod; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_assessment_results-Rkod" ON public.hmis_csv_2020_assessment_results USING btree ("AssessmentResultID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_DateProvided_idx"; -- --- Name: hmis_csv_2020_assessments-EZd7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_assessments-EZd7" ON public.hmis_csv_2020_assessments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_DateProvided_idx1"; -- --- Name: hmis_csv_2020_assessments-GRoC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_assessments-GRoC" ON public.hmis_csv_2020_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_DateProvided_idx2"; -- --- Name: hmis_csv_2020_assessments-MoqJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_assessments-MoqJ" ON public.hmis_csv_2020_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_DateProvided_idx3"; -- --- Name: hmis_csv_2020_assessments-W4vL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_assessments-W4vL" ON public.hmis_csv_2020_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_DateProvided_idx4"; -- --- Name: hmis_csv_2020_assessments-nFH4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_assessments-nFH4" ON public.hmis_csv_2020_assessments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_idx"; -- --- Name: hmis_csv_2020_assessments-y7s0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_assessments-y7s0" ON public.hmis_csv_2020_assessments USING btree ("AssessmentID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_idx1"; -- --- Name: hmis_csv_2020_clients-20vV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_clients-20vV" ON public.hmis_csv_2020_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_idx2"; -- --- Name: hmis_csv_2020_clients-2cnC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_clients-2cnC" ON public.hmis_csv_2020_clients USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_idx3"; -- --- Name: hmis_csv_2020_clients-85Ap; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_clients-85Ap" ON public.hmis_csv_2020_clients USING btree ("LastName"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_RecordType_idx4"; -- --- Name: hmis_csv_2020_clients-FQ7O; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_clients-FQ7O" ON public.hmis_csv_2020_clients USING btree ("DOB"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_ServicesID_data_source_id_idx"; -- --- Name: hmis_csv_2020_clients-Q0u6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_clients-Q0u6" ON public.hmis_csv_2020_clients USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_ServicesID_idx"; -- --- Name: hmis_csv_2020_clients-kRKs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_clients-kRKs" ON public.hmis_csv_2020_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_ServicesID_idx1"; -- --- Name: hmis_csv_2020_clients-moFz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_clients-moFz" ON public.hmis_csv_2020_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_ServicesID_idx2"; -- --- Name: hmis_csv_2020_clients-qppE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_clients-qppE" ON public.hmis_csv_2020_clients USING btree ("PersonalID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_ServicesID_idx3"; -- --- Name: hmis_csv_2020_clients-wlPc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_clients-wlPc" ON public.hmis_csv_2020_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_41_ServicesID_idx4"; -- --- Name: hmis_csv_2020_current_living_situations-3hVq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_current_living_situations-3hVq" ON public.hmis_csv_2020_current_living_situations USING btree ("PersonalID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_41_importer_log_id_idx; -- --- Name: hmis_csv_2020_current_living_situations-EGfX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_current_living_situations-EGfX" ON public.hmis_csv_2020_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_41_pkey; -- --- Name: hmis_csv_2020_current_living_situations-KGuH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_41_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_current_living_situations-KGuH" ON public.hmis_csv_2020_current_living_situations USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_41_source_type_source_id_idx; -- --- Name: hmis_csv_2020_current_living_situations-ScsR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_current_living_situations-ScsR" ON public.hmis_csv_2020_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateCreated_idx"; -- --- Name: hmis_csv_2020_current_living_situations-VCsb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_current_living_situations-VCsb" ON public.hmis_csv_2020_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateCreated_idx1"; -- --- Name: hmis_csv_2020_current_living_situations-Vh4Y; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_current_living_situations-Vh4Y" ON public.hmis_csv_2020_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateCreated_idx2"; -- --- Name: hmis_csv_2020_current_living_situations-jzq2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_current_living_situations-jzq2" ON public.hmis_csv_2020_current_living_situations USING btree ("CurrentLivingSitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateCreated_idx3"; -- --- Name: hmis_csv_2020_disabilities-4Nml; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_disabilities-4Nml" ON public.hmis_csv_2020_disabilities USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateCreated_idx4"; -- --- Name: hmis_csv_2020_disabilities-9jL3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_disabilities-9jL3" ON public.hmis_csv_2020_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateDeleted_idx"; -- --- Name: hmis_csv_2020_disabilities-Sp4k; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_disabilities-Sp4k" ON public.hmis_csv_2020_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateDeleted_idx1"; -- --- Name: hmis_csv_2020_disabilities-anqe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_disabilities-anqe" ON public.hmis_csv_2020_disabilities USING btree ("DisabilitiesID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateDeleted_idx2"; -- --- Name: hmis_csv_2020_disabilities-ohpt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_disabilities-ohpt" ON public.hmis_csv_2020_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateDeleted_idx3"; -- --- Name: hmis_csv_2020_disabilities-toFu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_disabilities-toFu" ON public.hmis_csv_2020_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateDeleted_idx4"; -- --- Name: hmis_csv_2020_disabilities-xa8A; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_disabilities-xa8A" ON public.hmis_csv_2020_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateProvided_idx"; -- --- Name: hmis_csv_2020_employment_educations-3UVX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_employment_educations-3UVX" ON public.hmis_csv_2020_employment_educations USING btree ("EmploymentEducationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateProvided_idx1"; -- --- Name: hmis_csv_2020_employment_educations-4yxa; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_employment_educations-4yxa" ON public.hmis_csv_2020_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateProvided_idx2"; -- --- Name: hmis_csv_2020_employment_educations-8u1c; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_employment_educations-8u1c" ON public.hmis_csv_2020_employment_educations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateProvided_idx3"; -- --- Name: hmis_csv_2020_employment_educations-JTgH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_employment_educations-JTgH" ON public.hmis_csv_2020_employment_educations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateProvided_idx4"; -- --- Name: hmis_csv_2020_employment_educations-U3yq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_employment_educations-U3yq" ON public.hmis_csv_2020_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateUpdated_idx"; -- --- Name: hmis_csv_2020_employment_educations-bTVG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_employment_educations-bTVG" ON public.hmis_csv_2020_employment_educations USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateUpdated_idx1"; -- --- Name: hmis_csv_2020_employment_educations-ffjb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_employment_educations-ffjb" ON public.hmis_csv_2020_employment_educations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateUpdated_idx2"; -- --- Name: hmis_csv_2020_enrollment_cocs-AFlL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollment_cocs-AFlL" ON public.hmis_csv_2020_enrollment_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateUpdated_idx3"; -- --- Name: hmis_csv_2020_enrollment_cocs-GYSJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollment_cocs-GYSJ" ON public.hmis_csv_2020_enrollment_cocs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_DateUpdated_idx4"; -- --- Name: hmis_csv_2020_enrollment_cocs-ManB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollment_cocs-ManB" ON public.hmis_csv_2020_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_csv_2020_enrollment_cocs-MhSp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollment_cocs-MhSp" ON public.hmis_csv_2020_enrollment_cocs USING btree ("EnrollmentCoCID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_csv_2020_enrollment_cocs-RyqL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollment_cocs-RyqL" ON public.hmis_csv_2020_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis_csv_2020_enrollment_cocs-dizj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollment_cocs-dizj" ON public.hmis_csv_2020_enrollment_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis_csv_2020_enrollment_cocs-myvn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollment_cocs-myvn" ON public.hmis_csv_2020_enrollment_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis_csv_2020_enrollment_cocs-phxe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollment_cocs-phxe" ON public.hmis_csv_2020_enrollment_cocs USING btree ("EnrollmentID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis_csv_2020_enrollment_cocs-zRK2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollment_cocs-zRK2" ON public.hmis_csv_2020_enrollment_cocs USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_EnrollmentID_idx"; -- --- Name: hmis_csv_2020_enrollments-1CJ3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-1CJ3" ON public.hmis_csv_2020_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_EnrollmentID_idx1"; -- --- Name: hmis_csv_2020_enrollments-1ErZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-1ErZ" ON public.hmis_csv_2020_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_EnrollmentID_idx2"; -- --- Name: hmis_csv_2020_enrollments-2DM8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-2DM8" ON public.hmis_csv_2020_enrollments USING btree ("EnrollmentID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_EnrollmentID_idx3"; -- --- Name: hmis_csv_2020_enrollments-7ZVi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-7ZVi" ON public.hmis_csv_2020_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_EnrollmentID_idx4"; -- --- Name: hmis_csv_2020_enrollments-8UEw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-8UEw" ON public.hmis_csv_2020_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_ExportID_idx"; -- --- Name: hmis_csv_2020_enrollments-CKRZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-CKRZ" ON public.hmis_csv_2020_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_ExportID_idx1"; -- --- Name: hmis_csv_2020_enrollments-CxJA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-CxJA" ON public.hmis_csv_2020_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_ExportID_idx2"; -- --- Name: hmis_csv_2020_enrollments-GH0S; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-GH0S" ON public.hmis_csv_2020_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_ExportID_idx3"; -- --- Name: hmis_csv_2020_enrollments-KtXA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-KtXA" ON public.hmis_csv_2020_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_ExportID_idx4"; -- --- Name: hmis_csv_2020_enrollments-LQ7R; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-LQ7R" ON public.hmis_csv_2020_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_PersonalID_idx"; -- --- Name: hmis_csv_2020_enrollments-Leaw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-Leaw" ON public.hmis_csv_2020_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_PersonalID_idx1"; -- --- Name: hmis_csv_2020_enrollments-XI6S; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-XI6S" ON public.hmis_csv_2020_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_PersonalID_idx2"; -- --- Name: hmis_csv_2020_enrollments-bpsk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-bpsk" ON public.hmis_csv_2020_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_PersonalID_idx3"; -- --- Name: hmis_csv_2020_enrollments-djbw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-djbw" ON public.hmis_csv_2020_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_PersonalID_idx4"; -- --- Name: hmis_csv_2020_enrollments-gF7Z; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-gF7Z" ON public.hmis_csv_2020_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx"; -- --- Name: hmis_csv_2020_enrollments-l0fG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-l0fG" ON public.hmis_csv_2020_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx1"; -- --- Name: hmis_csv_2020_enrollments-qD0O; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_enrollments-qD0O" ON public.hmis_csv_2020_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx2"; -- --- Name: hmis_csv_2020_events-7ZMP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_events-7ZMP" ON public.hmis_csv_2020_events USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx3"; -- --- Name: hmis_csv_2020_events-BBvn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_events-BBvn" ON public.hmis_csv_2020_events USING btree ("EventID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_DateDeleted_idx4"; -- --- Name: hmis_csv_2020_events-G60G; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_events-G60G" ON public.hmis_csv_2020_events USING btree ("EventDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_DateProvided_idx"; -- --- Name: hmis_csv_2020_events-HCAc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_events-HCAc" ON public.hmis_csv_2020_events USING btree ("EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_DateProvided_idx1"; -- --- Name: hmis_csv_2020_events-lkZq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_events-lkZq" ON public.hmis_csv_2020_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_DateProvided_idx2"; -- --- Name: hmis_csv_2020_events-niJ9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_events-niJ9" ON public.hmis_csv_2020_events USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_DateProvided_idx3"; -- --- Name: hmis_csv_2020_exits-86BM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_exits-86BM" ON public.hmis_csv_2020_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_DateProvided_idx4"; -- --- Name: hmis_csv_2020_exits-9oMc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_exits-9oMc" ON public.hmis_csv_2020_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_idx"; -- --- Name: hmis_csv_2020_exits-B03u; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_exits-B03u" ON public.hmis_csv_2020_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_idx1"; -- --- Name: hmis_csv_2020_exits-lfLn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_exits-lfLn" ON public.hmis_csv_2020_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_idx2"; -- --- Name: hmis_csv_2020_exits-m68a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_exits-m68a" ON public.hmis_csv_2020_exits USING btree ("ExitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_idx3"; -- --- Name: hmis_csv_2020_exits-u5YR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_exits-u5YR" ON public.hmis_csv_2020_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_RecordType_idx4"; -- --- Name: hmis_csv_2020_exits-wXSx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_exits-wXSx" ON public.hmis_csv_2020_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_ServicesID_data_source_id_idx"; -- --- Name: hmis_csv_2020_exits-xc6a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_exits-xc6a" ON public.hmis_csv_2020_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_ServicesID_idx"; -- --- Name: hmis_csv_2020_exits-yZ3j; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_exits-yZ3j" ON public.hmis_csv_2020_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_ServicesID_idx1"; -- --- Name: hmis_csv_2020_exports-K9wp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_exports-K9wp" ON public.hmis_csv_2020_exports USING btree ("ExportID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_ServicesID_idx2"; -- --- Name: hmis_csv_2020_exports-iweG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_exports-iweG" ON public.hmis_csv_2020_exports USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_ServicesID_idx3"; -- --- Name: hmis_csv_2020_funders-1HLT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_funders-1HLT" ON public.hmis_csv_2020_funders USING btree ("FunderID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_42_ServicesID_idx4"; -- --- Name: hmis_csv_2020_funders-BLkd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_funders-BLkd" ON public.hmis_csv_2020_funders USING btree ("FunderID", data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_42_importer_log_id_idx; -- --- Name: hmis_csv_2020_funders-IC4k; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_funders-IC4k" ON public.hmis_csv_2020_funders USING btree ("DateCreated"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_42_pkey; -- --- Name: hmis_csv_2020_funders-Ix1m; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_42_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_funders-Ix1m" ON public.hmis_csv_2020_funders USING btree ("DateUpdated"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_42_source_type_source_id_idx; -- --- Name: hmis_csv_2020_funders-PEzG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_funders-PEzG" ON public.hmis_csv_2020_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateCreated_idx"; -- --- Name: hmis_csv_2020_health_and_dvs-2NoM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_health_and_dvs-2NoM" ON public.hmis_csv_2020_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateCreated_idx1"; -- --- Name: hmis_csv_2020_health_and_dvs-6zDo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_health_and_dvs-6zDo" ON public.hmis_csv_2020_health_and_dvs USING btree ("HealthAndDVID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateCreated_idx2"; -- --- Name: hmis_csv_2020_health_and_dvs-TUWh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_health_and_dvs-TUWh" ON public.hmis_csv_2020_health_and_dvs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateCreated_idx3"; -- --- Name: hmis_csv_2020_health_and_dvs-lO76; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_health_and_dvs-lO76" ON public.hmis_csv_2020_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateCreated_idx4"; -- --- Name: hmis_csv_2020_health_and_dvs-xYMb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_health_and_dvs-xYMb" ON public.hmis_csv_2020_health_and_dvs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateDeleted_idx"; -- --- Name: hmis_csv_2020_health_and_dvs-y2fn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_health_and_dvs-y2fn" ON public.hmis_csv_2020_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateDeleted_idx1"; -- --- Name: hmis_csv_2020_health_and_dvs-zvlJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_health_and_dvs-zvlJ" ON public.hmis_csv_2020_health_and_dvs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateDeleted_idx2"; -- --- Name: hmis_csv_2020_income_benefits-6HMy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_income_benefits-6HMy" ON public.hmis_csv_2020_income_benefits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateDeleted_idx3"; -- --- Name: hmis_csv_2020_income_benefits-KXp0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_income_benefits-KXp0" ON public.hmis_csv_2020_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateDeleted_idx4"; -- --- Name: hmis_csv_2020_income_benefits-O58u; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_income_benefits-O58u" ON public.hmis_csv_2020_income_benefits USING btree ("IncomeBenefitsID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateProvided_idx"; -- --- Name: hmis_csv_2020_income_benefits-Qf5l; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_income_benefits-Qf5l" ON public.hmis_csv_2020_income_benefits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateProvided_idx1"; -- --- Name: hmis_csv_2020_income_benefits-SEnq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_income_benefits-SEnq" ON public.hmis_csv_2020_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateProvided_idx2"; -- --- Name: hmis_csv_2020_income_benefits-YyfJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_income_benefits-YyfJ" ON public.hmis_csv_2020_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateProvided_idx3"; -- --- Name: hmis_csv_2020_income_benefits-lVjn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_income_benefits-lVjn" ON public.hmis_csv_2020_income_benefits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateProvided_idx4"; -- --- Name: hmis_csv_2020_inventories-BTZq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_inventories-BTZq" ON public.hmis_csv_2020_inventories USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateUpdated_idx"; -- --- Name: hmis_csv_2020_inventories-NeSc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_inventories-NeSc" ON public.hmis_csv_2020_inventories USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateUpdated_idx1"; -- --- Name: hmis_csv_2020_inventories-RGrg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_inventories-RGrg" ON public.hmis_csv_2020_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateUpdated_idx2"; -- --- Name: hmis_csv_2020_inventories-eYpq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_inventories-eYpq" ON public.hmis_csv_2020_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateUpdated_idx3"; -- --- Name: hmis_csv_2020_inventories-sfWI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_inventories-sfWI" ON public.hmis_csv_2020_inventories USING btree ("InventoryID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_DateUpdated_idx4"; -- --- Name: hmis_csv_2020_inventories-wdcK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_inventories-wdcK" ON public.hmis_csv_2020_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_csv_2020_organizations-LqQF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_organizations-LqQF" ON public.hmis_csv_2020_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_csv_2020_organizations-cRJF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_organizations-cRJF" ON public.hmis_csv_2020_organizations USING btree ("OrganizationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx2"; -- --- Name: hmis_csv_2020_organizations-tyIy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_organizations-tyIy" ON public.hmis_csv_2020_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx3"; -- --- Name: hmis_csv_2020_project_cocs-336L; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_project_cocs-336L" ON public.hmis_csv_2020_project_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx4"; -- --- Name: hmis_csv_2020_project_cocs-5NHP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_project_cocs-5NHP" ON public.hmis_csv_2020_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_EnrollmentID_PersonalID_idx5"; -- --- Name: hmis_csv_2020_project_cocs-G4ij; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_project_cocs-G4ij" ON public.hmis_csv_2020_project_cocs USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_EnrollmentID_idx"; -- --- Name: hmis_csv_2020_project_cocs-K765; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_project_cocs-K765" ON public.hmis_csv_2020_project_cocs USING btree ("ProjectCoCID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_EnrollmentID_idx1"; -- --- Name: hmis_csv_2020_project_cocs-fRQZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_project_cocs-fRQZ" ON public.hmis_csv_2020_project_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_EnrollmentID_idx2"; -- --- Name: hmis_csv_2020_project_cocs-wP5S; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_project_cocs-wP5S" ON public.hmis_csv_2020_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_EnrollmentID_idx3"; -- --- Name: hmis_csv_2020_projects-I9LN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_projects-I9LN" ON public.hmis_csv_2020_projects USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_EnrollmentID_idx4"; -- --- Name: hmis_csv_2020_projects-MNAC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_projects-MNAC" ON public.hmis_csv_2020_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_ExportID_idx"; -- --- Name: hmis_csv_2020_projects-StS2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_projects-StS2" ON public.hmis_csv_2020_projects USING btree ("ProjectID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_ExportID_idx1"; -- --- Name: hmis_csv_2020_projects-f4DP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_projects-f4DP" ON public.hmis_csv_2020_projects USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_ExportID_idx2"; -- --- Name: hmis_csv_2020_projects-gAEK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_projects-gAEK" ON public.hmis_csv_2020_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_ExportID_idx3"; -- --- Name: hmis_csv_2020_projects-m4tQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_projects-m4tQ" ON public.hmis_csv_2020_projects USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_ExportID_idx4"; -- --- Name: hmis_csv_2020_services-1ggS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-1ggS" ON public.hmis_csv_2020_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_PersonalID_idx"; -- --- Name: hmis_csv_2020_services-4Q3B; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-4Q3B" ON public.hmis_csv_2020_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_PersonalID_idx1"; -- --- Name: hmis_csv_2020_services-7Ekp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-7Ekp" ON public.hmis_csv_2020_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_PersonalID_idx2"; -- --- Name: hmis_csv_2020_services-8SnT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-8SnT" ON public.hmis_csv_2020_services USING btree ("RecordType", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_PersonalID_idx3"; -- --- Name: hmis_csv_2020_services-MSYV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-MSYV" ON public.hmis_csv_2020_services USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_PersonalID_idx4"; -- --- Name: hmis_csv_2020_services-Nlyp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-Nlyp" ON public.hmis_csv_2020_services USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx"; -- --- Name: hmis_csv_2020_services-VRZ7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-VRZ7" ON public.hmis_csv_2020_services USING btree ("RecordType", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx1"; -- --- Name: hmis_csv_2020_services-ZiEF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-ZiEF" ON public.hmis_csv_2020_services USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx2"; -- --- Name: hmis_csv_2020_services-b6iK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-b6iK" ON public.hmis_csv_2020_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx3"; -- --- Name: hmis_csv_2020_services-dacu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-dacu" ON public.hmis_csv_2020_services USING btree ("ServicesID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_DateDeleted_idx4"; -- --- Name: hmis_csv_2020_services-feYP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-feYP" ON public.hmis_csv_2020_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_DateProvided_idx"; -- --- Name: hmis_csv_2020_services-i7KB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-i7KB" ON public.hmis_csv_2020_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_DateProvided_idx1"; -- --- Name: hmis_csv_2020_services-lVDS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-lVDS" ON public.hmis_csv_2020_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_DateProvided_idx2"; -- --- Name: hmis_csv_2020_services-mvqR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_services-mvqR" ON public.hmis_csv_2020_services USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_DateProvided_idx3"; -- --- Name: hmis_csv_2020_users-3tXl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_users-3tXl" ON public.hmis_csv_2020_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_DateProvided_idx4"; -- --- Name: hmis_csv_2020_users-Vflk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_users-Vflk" ON public.hmis_csv_2020_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_idx"; -- --- Name: hmis_csv_2020_users-Y4OW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2020_users-Y4OW" ON public.hmis_csv_2020_users USING btree ("UserID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_idx1"; -- --- Name: hmis_csv_2022_affiliations-6457; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2022_affiliations-6457" ON public.hmis_csv_2022_affiliations USING btree ("AffiliationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_idx2"; -- --- Name: hmis_csv_2022_clients-230f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2022_clients-230f" ON public.hmis_csv_2022_clients USING btree ("PersonalID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_idx3"; -- --- Name: hmis_csv_2022_current_living_situations-cf31; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2022_current_living_situations-cf31" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_RecordType_idx4"; -- --- Name: hmis_csv_2022_enrollments-0a46; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2022_enrollments-0a46" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_ServicesID_data_source_id_idx"; -- --- Name: hmis_csv_2022_exits-cfdd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2022_exits-cfdd" ON public.hmis_csv_2022_exits USING btree ("ExitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_ServicesID_idx"; -- --- Name: hmis_csv_2022_funders-4ad5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2022_funders-4ad5" ON public.hmis_csv_2022_funders USING btree ("FunderID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_ServicesID_idx1"; -- --- Name: hmis_csv_2022_health_and_dvs-e384; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2022_health_and_dvs-e384" ON public.hmis_csv_2022_health_and_dvs USING btree ("HealthAndDVID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_ServicesID_idx2"; -- --- Name: hmis_csv_2022_inventories-86c0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2022_inventories-86c0" ON public.hmis_csv_2022_inventories USING btree ("InventoryID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_ServicesID_idx3"; -- --- Name: hmis_csv_2022_organizations-7580; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2022_organizations-7580" ON public.hmis_csv_2022_organizations USING btree ("OrganizationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_43_ServicesID_idx4"; -- --- Name: hmis_csv_2022_project_cocs-3966; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2022_project_cocs-3966" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectCoCID", data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_43_importer_log_id_idx; -- --- Name: hmis_csv_2022_projects-92c5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2022_projects-92c5" ON public.hmis_csv_2022_projects USING btree ("ProjectID", data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_43_pkey; -- --- Name: hmis_csv_2022_services-7a57; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_43_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2022_services-7a57" ON public.hmis_csv_2022_services USING btree ("ServicesID", data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_43_source_type_source_id_idx; -- --- Name: hmis_csv_2024_affiliations-6457; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_affiliations-6457" ON public.hmis_csv_2024_affiliations USING btree ("AffiliationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateCreated_idx"; -- --- Name: hmis_csv_2024_assessment_questions-0cd3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_assessment_questions-0cd3" ON public.hmis_csv_2024_assessment_questions USING btree ("AssessmentQuestionID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateCreated_idx1"; -- --- Name: hmis_csv_2024_assessments-df76; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_assessments-df76" ON public.hmis_csv_2024_assessments USING btree ("AssessmentID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateCreated_idx2"; -- --- Name: hmis_csv_2024_ce_participations-5c6f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_ce_participations-5c6f" ON public.hmis_csv_2024_ce_participations USING btree ("CEParticipationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateCreated_idx3"; -- --- Name: hmis_csv_2024_clients-230f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_clients-230f" ON public.hmis_csv_2024_clients USING btree ("PersonalID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateCreated_idx4"; -- --- Name: hmis_csv_2024_current_living_situations-cf31; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_current_living_situations-cf31" ON public.hmis_csv_2024_current_living_situations USING btree ("CurrentLivingSitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateDeleted_idx"; -- --- Name: hmis_csv_2024_disabilities-7712; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_disabilities-7712" ON public.hmis_csv_2024_disabilities USING btree ("DisabilitiesID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateDeleted_idx1"; -- --- Name: hmis_csv_2024_employment_educations-3032; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_employment_educations-3032" ON public.hmis_csv_2024_employment_educations USING btree ("EmploymentEducationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateDeleted_idx2"; -- --- Name: hmis_csv_2024_enrollments-0a46; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_enrollments-0a46" ON public.hmis_csv_2024_enrollments USING btree ("EnrollmentID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateDeleted_idx3"; -- --- Name: hmis_csv_2024_exits-cfdd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_exits-cfdd" ON public.hmis_csv_2024_exits USING btree ("ExitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateDeleted_idx4"; -- --- Name: hmis_csv_2024_funders-4ad5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_funders-4ad5" ON public.hmis_csv_2024_funders USING btree ("FunderID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateProvided_idx"; -- --- Name: hmis_csv_2024_health_and_dvs-e384; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_health_and_dvs-e384" ON public.hmis_csv_2024_health_and_dvs USING btree ("HealthAndDVID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateProvided_idx1"; -- --- Name: hmis_csv_2024_hmis_participations-0f0d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_hmis_participations-0f0d" ON public.hmis_csv_2024_hmis_participations USING btree ("HMISParticipationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateProvided_idx2"; -- --- Name: hmis_csv_2024_income_benefits-200d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_income_benefits-200d" ON public.hmis_csv_2024_income_benefits USING btree ("IncomeBenefitsID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateProvided_idx3"; -- --- Name: hmis_csv_2024_inventories-86c0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_inventories-86c0" ON public.hmis_csv_2024_inventories USING btree ("InventoryID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateProvided_idx4"; -- --- Name: hmis_csv_2024_organizations-7580; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_organizations-7580" ON public.hmis_csv_2024_organizations USING btree ("OrganizationID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateUpdated_idx"; -- --- Name: hmis_csv_2024_project_cocs-3966; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_project_cocs-3966" ON public.hmis_csv_2024_project_cocs USING btree ("ProjectCoCID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateUpdated_idx1"; -- --- Name: hmis_csv_2024_projects-92c5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_projects-92c5" ON public.hmis_csv_2024_projects USING btree ("ProjectID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateUpdated_idx2"; -- --- Name: hmis_csv_2024_services-7a57; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_services-7a57" ON public.hmis_csv_2024_services USING btree ("ServicesID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateUpdated_idx3"; -- --- Name: hmis_csv_2024_youth_education_statuses-a32f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_2024_youth_education_statuses-a32f" ON public.hmis_csv_2024_youth_education_statuses USING btree ("YouthEducationStatusID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_DateUpdated_idx4"; -- --- Name: hmis_csv_import_errors-wgH3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_import_errors-wgH3" ON public.hmis_csv_import_errors USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx"; -- --- Name: hmis_csv_validations-ONiu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmis_csv_validations-ONiu" ON public.hmis_csv_import_validations USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx1"; -- --- Name: hmis_dqt_cls_cls_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmis_dqt_cls_cls_id ON public.hmis_dqt_current_living_situations USING btree (situation); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx2"; -- --- Name: hmisaggregatedenrollments_1KEG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_1KEG" ON public.hmis_aggregated_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx3"; -- --- Name: hmisaggregatedenrollments_A5GJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_A5GJ" ON public.hmis_aggregated_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx4"; -- --- Name: hmisaggregatedenrollments_FHjE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_FHjE" ON public.hmis_aggregated_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_EnrollmentID_PersonalID_idx5"; -- --- Name: hmisaggregatedenrollments_NHNS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_NHNS" ON public.hmis_aggregated_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_EnrollmentID_idx"; -- --- Name: hmisaggregatedenrollments_QCCR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_QCCR" ON public.hmis_aggregated_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_EnrollmentID_idx1"; -- --- Name: hmisaggregatedenrollments_Uv3q; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_Uv3q" ON public.hmis_aggregated_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_EnrollmentID_idx2"; -- --- Name: hmisaggregatedenrollments_V6EX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_V6EX" ON public.hmis_aggregated_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_EnrollmentID_idx3"; -- --- Name: hmisaggregatedenrollments_VpLz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_VpLz" ON public.hmis_aggregated_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_EnrollmentID_idx4"; -- --- Name: hmisaggregatedenrollments_bGvX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_bGvX" ON public.hmis_aggregated_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_ExportID_idx"; -- --- Name: hmisaggregatedenrollments_bHWN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_bHWN" ON public.hmis_aggregated_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_ExportID_idx1"; -- --- Name: hmisaggregatedenrollments_c08h; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmisaggregatedenrollments_c08h ON public.hmis_aggregated_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_ExportID_idx2"; -- --- Name: hmisaggregatedenrollments_eq3c; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmisaggregatedenrollments_eq3c ON public.hmis_aggregated_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_ExportID_idx3"; -- --- Name: hmisaggregatedenrollments_kHZg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_kHZg" ON public.hmis_aggregated_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_ExportID_idx4"; -- --- Name: hmisaggregatedenrollments_kQyq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_kQyq" ON public.hmis_aggregated_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_PersonalID_idx"; -- --- Name: hmisaggregatedenrollments_naBW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_naBW" ON public.hmis_aggregated_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_PersonalID_idx1"; -- --- Name: hmisaggregatedenrollments_oNYR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_oNYR" ON public.hmis_aggregated_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_PersonalID_idx2"; -- --- Name: hmisaggregatedenrollments_uy6S; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedenrollments_uy6S" ON public.hmis_aggregated_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_PersonalID_idx3"; -- --- Name: hmisaggregatedexits_3LO0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedexits_3LO0" ON public.hmis_aggregated_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_PersonalID_idx4"; -- --- Name: hmisaggregatedexits_IHNR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedexits_IHNR" ON public.hmis_aggregated_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx"; -- --- Name: hmisaggregatedexits_IKVS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedexits_IKVS" ON public.hmis_aggregated_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx1"; -- --- Name: hmisaggregatedexits_XuIA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedexits_XuIA" ON public.hmis_aggregated_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx2"; -- --- Name: hmisaggregatedexits_YcRf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedexits_YcRf" ON public.hmis_aggregated_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx3"; -- --- Name: hmisaggregatedexits_bSNd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedexits_bSNd" ON public.hmis_aggregated_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_DateDeleted_idx4"; -- --- Name: hmisaggregatedexits_rDFN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedexits_rDFN" ON public.hmis_aggregated_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_DateProvided_idx"; -- --- Name: hmisaggregatedexits_tmOV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmisaggregatedexits_tmOV" ON public.hmis_aggregated_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_DateProvided_idx1"; -- --- Name: hmiscsv2022affiliations_6QZN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022affiliations_6QZN" ON public.hmis_csv_2022_affiliations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_DateProvided_idx2"; -- --- Name: hmiscsv2022affiliations_IYWP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022affiliations_IYWP" ON public.hmis_csv_2022_affiliations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_DateProvided_idx3"; -- --- Name: hmiscsv2022affiliations_K0pm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022affiliations_K0pm" ON public.hmis_csv_2022_affiliations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_DateProvided_idx4"; -- --- Name: hmiscsv2022affiliations_ZrIt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022affiliations_ZrIt" ON public.hmis_csv_2022_affiliations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_idx"; -- --- Name: hmiscsv2022affiliations_ayf6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022affiliations_ayf6 ON public.hmis_csv_2022_affiliations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_idx1"; -- --- Name: hmiscsv2022assessmentquestions_0Hnw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentquestions_0Hnw" ON public.hmis_csv_2022_assessment_questions USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_idx2"; -- --- Name: hmiscsv2022assessmentquestions_9OKb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentquestions_9OKb" ON public.hmis_csv_2022_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_idx3"; -- --- Name: hmiscsv2022assessmentquestions_BYOc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentquestions_BYOc" ON public.hmis_csv_2022_assessment_questions USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_RecordType_idx4"; -- --- Name: hmiscsv2022assessmentquestions_Ce5I; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentquestions_Ce5I" ON public.hmis_csv_2022_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_ServicesID_data_source_id_idx"; -- --- Name: hmiscsv2022assessmentquestions_Wboq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentquestions_Wboq" ON public.hmis_csv_2022_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_ServicesID_idx"; -- --- Name: hmiscsv2022assessmentquestions_YiRf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentquestions_YiRf" ON public.hmis_csv_2022_assessment_questions USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_ServicesID_idx1"; -- --- Name: hmiscsv2022assessmentquestions_b7du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022assessmentquestions_b7du ON public.hmis_csv_2022_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_ServicesID_idx2"; -- --- Name: hmiscsv2022assessmentquestions_f92d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022assessmentquestions_f92d ON public.hmis_csv_2022_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_ServicesID_idx3"; -- --- Name: hmiscsv2022assessmentquestions_tkC5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentquestions_tkC5" ON public.hmis_csv_2022_assessment_questions USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_44_ServicesID_idx4"; -- --- Name: hmiscsv2022assessmentquestions_zaOr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentquestions_zaOr" ON public.hmis_csv_2022_assessment_questions USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_44_importer_log_id_idx; -- --- Name: hmiscsv2022assessmentresults_FEyR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentresults_FEyR" ON public.hmis_csv_2022_assessment_results USING btree ("AssessmentID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_44_pkey; -- --- Name: hmiscsv2022assessmentresults_HXI3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_44_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentresults_HXI3" ON public.hmis_csv_2022_assessment_results USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_44_source_type_source_id_idx; -- --- Name: hmiscsv2022assessmentresults_IHby; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentresults_IHby" ON public.hmis_csv_2022_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateCreated_idx"; -- --- Name: hmiscsv2022assessmentresults_Kx2Z; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentresults_Kx2Z" ON public.hmis_csv_2022_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateCreated_idx1"; -- --- Name: hmiscsv2022assessmentresults_WyDM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentresults_WyDM" ON public.hmis_csv_2022_assessment_results USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateCreated_idx2"; -- --- Name: hmiscsv2022assessmentresults_deg4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022assessmentresults_deg4 ON public.hmis_csv_2022_assessment_results USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateCreated_idx3"; -- --- Name: hmiscsv2022assessmentresults_fmqe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022assessmentresults_fmqe ON public.hmis_csv_2022_assessment_results USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateCreated_idx4"; -- --- Name: hmiscsv2022assessmentresults_jF3M; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentresults_jF3M" ON public.hmis_csv_2022_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateDeleted_idx"; -- --- Name: hmiscsv2022assessmentresults_mcU2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentresults_mcU2" ON public.hmis_csv_2022_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateDeleted_idx1"; -- --- Name: hmiscsv2022assessmentresults_tz9L; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessmentresults_tz9L" ON public.hmis_csv_2022_assessment_results USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateDeleted_idx2"; -- --- Name: hmiscsv2022assessments_2PIZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_2PIZ" ON public.hmis_csv_2022_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateDeleted_idx3"; -- --- Name: hmiscsv2022assessments_53fu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022assessments_53fu ON public.hmis_csv_2022_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateDeleted_idx4"; -- --- Name: hmiscsv2022assessments_7pXC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_7pXC" ON public.hmis_csv_2022_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateProvided_idx"; -- --- Name: hmiscsv2022assessments_9pYi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_9pYi" ON public.hmis_csv_2022_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateProvided_idx1"; -- --- Name: hmiscsv2022assessments_BR24; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_BR24" ON public.hmis_csv_2022_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateProvided_idx2"; -- --- Name: hmiscsv2022assessments_C04R; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_C04R" ON public.hmis_csv_2022_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateProvided_idx3"; -- --- Name: hmiscsv2022assessments_NGHw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_NGHw" ON public.hmis_csv_2022_assessments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateProvided_idx4"; -- --- Name: hmiscsv2022assessments_NaP9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_NaP9" ON public.hmis_csv_2022_assessments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateUpdated_idx"; -- --- Name: hmiscsv2022assessments_OGHC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_OGHC" ON public.hmis_csv_2022_assessments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateUpdated_idx1"; -- --- Name: hmiscsv2022assessments_Pd8t; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_Pd8t" ON public.hmis_csv_2022_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateUpdated_idx2"; -- --- Name: hmiscsv2022assessments_Rg8h; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_Rg8h" ON public.hmis_csv_2022_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateUpdated_idx3"; -- --- Name: hmiscsv2022assessments_Rthi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_Rthi" ON public.hmis_csv_2022_assessments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_DateUpdated_idx4"; -- --- Name: hmiscsv2022assessments_UlUg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_UlUg" ON public.hmis_csv_2022_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx"; -- --- Name: hmiscsv2022assessments_UsZf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_UsZf" ON public.hmis_csv_2022_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx1"; -- --- Name: hmiscsv2022assessments_V72H; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_V72H" ON public.hmis_csv_2022_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx2"; -- --- Name: hmiscsv2022assessments_X4D5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_X4D5" ON public.hmis_csv_2022_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx3"; -- --- Name: hmiscsv2022assessments_ZFcY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_ZFcY" ON public.hmis_csv_2022_assessments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx4"; -- --- Name: hmiscsv2022assessments_bNif; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_bNif" ON public.hmis_csv_2022_assessments USING btree ("EnrollmentID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_EnrollmentID_PersonalID_idx5"; -- --- Name: hmiscsv2022assessments_iP36; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_iP36" ON public.hmis_csv_2022_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_EnrollmentID_idx"; -- --- Name: hmiscsv2022assessments_mO4c; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_mO4c" ON public.hmis_csv_2022_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_EnrollmentID_idx1"; -- --- Name: hmiscsv2022assessments_peUV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_peUV" ON public.hmis_csv_2022_assessments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_EnrollmentID_idx2"; -- --- Name: hmiscsv2022assessments_rDxW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_rDxW" ON public.hmis_csv_2022_assessments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_EnrollmentID_idx3"; -- --- Name: hmiscsv2022assessments_rylL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_rylL" ON public.hmis_csv_2022_assessments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_EnrollmentID_idx4"; -- --- Name: hmiscsv2022assessments_tGj7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_tGj7" ON public.hmis_csv_2022_assessments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_ExportID_idx"; -- --- Name: hmiscsv2022assessments_vgMX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022assessments_vgMX" ON public.hmis_csv_2022_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_ExportID_idx1"; -- --- Name: hmiscsv2022clients_1B2M; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_1B2M" ON public.hmis_csv_2022_clients USING btree ("DOB"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_ExportID_idx2"; -- --- Name: hmiscsv2022clients_2g9p; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022clients_2g9p ON public.hmis_csv_2022_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_ExportID_idx3"; -- --- Name: hmiscsv2022clients_4Erz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_4Erz" ON public.hmis_csv_2022_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_ExportID_idx4"; -- --- Name: hmiscsv2022clients_603f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022clients_603f ON public.hmis_csv_2022_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_PersonalID_idx"; -- --- Name: hmiscsv2022clients_9y96; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022clients_9y96 ON public.hmis_csv_2022_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_PersonalID_idx1"; -- --- Name: hmiscsv2022clients_ANF3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_ANF3" ON public.hmis_csv_2022_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_PersonalID_idx2"; -- --- Name: hmiscsv2022clients_ATux; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_ATux" ON public.hmis_csv_2022_clients USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_PersonalID_idx3"; -- --- Name: hmiscsv2022clients_AblB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_AblB" ON public.hmis_csv_2022_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_PersonalID_idx4"; -- --- Name: hmiscsv2022clients_CftS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_CftS" ON public.hmis_csv_2022_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx"; -- --- Name: hmiscsv2022clients_DFQP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_DFQP" ON public.hmis_csv_2022_clients USING btree ("LastName"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx1"; -- --- Name: hmiscsv2022clients_DlZc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_DlZc" ON public.hmis_csv_2022_clients USING btree ("DOB"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx2"; -- --- Name: hmiscsv2022clients_Go11; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_Go11" ON public.hmis_csv_2022_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx3"; -- --- Name: hmiscsv2022clients_HMAT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_HMAT" ON public.hmis_csv_2022_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_DateDeleted_idx4"; -- --- Name: hmiscsv2022clients_HyWK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_HyWK" ON public.hmis_csv_2022_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_DateProvided_idx"; -- --- Name: hmiscsv2022clients_Ipa3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_Ipa3" ON public.hmis_csv_2022_clients USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_DateProvided_idx1"; -- --- Name: hmiscsv2022clients_SPth; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_SPth" ON public.hmis_csv_2022_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_DateProvided_idx2"; -- --- Name: hmiscsv2022clients_Tyfa; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_Tyfa" ON public.hmis_csv_2022_clients USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_DateProvided_idx3"; -- --- Name: hmiscsv2022clients_UOq6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_UOq6" ON public.hmis_csv_2022_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_DateProvided_idx4"; -- --- Name: hmiscsv2022clients_Ue7r; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_Ue7r" ON public.hmis_csv_2022_clients USING btree ("LastName"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_idx"; -- --- Name: hmiscsv2022clients_XjIr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_XjIr" ON public.hmis_csv_2022_clients USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_idx1"; -- --- Name: hmiscsv2022clients_ZIZI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_ZIZI" ON public.hmis_csv_2022_clients USING btree ("DOB"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_idx2"; -- --- Name: hmiscsv2022clients_ZbiK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_ZbiK" ON public.hmis_csv_2022_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_idx3"; -- --- Name: hmiscsv2022clients_bTWy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_bTWy" ON public.hmis_csv_2022_clients USING btree ("DOB"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_RecordType_idx4"; -- --- Name: hmiscsv2022clients_dpoO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_dpoO" ON public.hmis_csv_2022_clients USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_ServicesID_data_source_id_idx"; -- --- Name: hmiscsv2022clients_dxgO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_dxgO" ON public.hmis_csv_2022_clients USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_ServicesID_idx"; -- --- Name: hmiscsv2022clients_hLhh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_hLhh" ON public.hmis_csv_2022_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_ServicesID_idx1"; -- --- Name: hmiscsv2022clients_ilET; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_ilET" ON public.hmis_csv_2022_clients USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_ServicesID_idx2"; -- --- Name: hmiscsv2022clients_jtrl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022clients_jtrl ON public.hmis_csv_2022_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_ServicesID_idx3"; -- --- Name: hmiscsv2022clients_lhQG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_lhQG" ON public.hmis_csv_2022_clients USING btree ("LastName"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_45_ServicesID_idx4"; -- --- Name: hmiscsv2022clients_nEPb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_nEPb" ON public.hmis_csv_2022_clients USING btree ("FirstName"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_45_importer_log_id_idx; -- --- Name: hmiscsv2022clients_nuV1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_nuV1" ON public.hmis_csv_2022_clients USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_45_pkey; -- --- Name: hmiscsv2022clients_oEBV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_45_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_oEBV" ON public.hmis_csv_2022_clients USING btree ("LastName"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_45_source_type_source_id_idx; -- --- Name: hmiscsv2022clients_preE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_preE" ON public.hmis_csv_2022_clients USING btree ("DOB"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateCreated_idx"; -- --- Name: hmiscsv2022clients_qxVi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_qxVi" ON public.hmis_csv_2022_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateCreated_idx1"; -- --- Name: hmiscsv2022clients_tVth; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_tVth" ON public.hmis_csv_2022_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateCreated_idx2"; -- --- Name: hmiscsv2022clients_tWOM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_tWOM" ON public.hmis_csv_2022_clients USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateCreated_idx3"; -- --- Name: hmiscsv2022clients_u5Dy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_u5Dy" ON public.hmis_csv_2022_clients USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateCreated_idx4"; -- --- Name: hmiscsv2022clients_vJDq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_vJDq" ON public.hmis_csv_2022_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateDeleted_idx"; -- --- Name: hmiscsv2022clients_xYa1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_xYa1" ON public.hmis_csv_2022_clients USING btree ("LastName"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateDeleted_idx1"; -- --- Name: hmiscsv2022clients_yj7O; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_yj7O" ON public.hmis_csv_2022_clients USING btree ("FirstName"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateDeleted_idx2"; -- --- Name: hmiscsv2022clients_zrAC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022clients_zrAC" ON public.hmis_csv_2022_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateDeleted_idx3"; -- --- Name: hmiscsv2022currentlivingsituations_0QjY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_0QjY" ON public.hmis_csv_2022_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateDeleted_idx4"; -- --- Name: hmiscsv2022currentlivingsituations_0whq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022currentlivingsituations_0whq ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateProvided_idx"; -- --- Name: hmiscsv2022currentlivingsituations_2ix3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022currentlivingsituations_2ix3 ON public.hmis_csv_2022_current_living_situations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateProvided_idx1"; -- --- Name: hmiscsv2022currentlivingsituations_79om; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022currentlivingsituations_79om ON public.hmis_csv_2022_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateProvided_idx2"; -- --- Name: hmiscsv2022currentlivingsituations_G53q; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_G53q" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateProvided_idx3"; -- --- Name: hmiscsv2022currentlivingsituations_IbRS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_IbRS" ON public.hmis_csv_2022_current_living_situations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateProvided_idx4"; -- --- Name: hmiscsv2022currentlivingsituations_L04m; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_L04m" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateUpdated_idx"; -- --- Name: hmiscsv2022currentlivingsituations_L44P; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_L44P" ON public.hmis_csv_2022_current_living_situations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateUpdated_idx1"; -- --- Name: hmiscsv2022currentlivingsituations_Lu7u; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_Lu7u" ON public.hmis_csv_2022_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateUpdated_idx2"; -- --- Name: hmiscsv2022currentlivingsituations_MBRO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_MBRO" ON public.hmis_csv_2022_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateUpdated_idx3"; -- --- Name: hmiscsv2022currentlivingsituations_OoDu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_OoDu" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_DateUpdated_idx4"; -- --- Name: hmiscsv2022currentlivingsituations_Rgzv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_Rgzv" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx"; -- --- Name: hmiscsv2022currentlivingsituations_Rq1z; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_Rq1z" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx1"; -- --- Name: hmiscsv2022currentlivingsituations_Wec8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_Wec8" ON public.hmis_csv_2022_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx2"; -- --- Name: hmiscsv2022currentlivingsituations_Zwl1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_Zwl1" ON public.hmis_csv_2022_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx3"; -- --- Name: hmiscsv2022currentlivingsituations_beIg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_beIg" ON public.hmis_csv_2022_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx4"; -- --- Name: hmiscsv2022currentlivingsituations_c7Fg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_c7Fg" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_EnrollmentID_PersonalID_idx5"; -- --- Name: hmiscsv2022currentlivingsituations_dUT6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_dUT6" ON public.hmis_csv_2022_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_EnrollmentID_idx"; -- --- Name: hmiscsv2022currentlivingsituations_hxGV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_hxGV" ON public.hmis_csv_2022_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_EnrollmentID_idx1"; -- --- Name: hmiscsv2022currentlivingsituations_iNeW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_iNeW" ON public.hmis_csv_2022_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_EnrollmentID_idx2"; -- --- Name: hmiscsv2022currentlivingsituations_lc17; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022currentlivingsituations_lc17 ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_EnrollmentID_idx3"; -- --- Name: hmiscsv2022currentlivingsituations_oN7a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_oN7a" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_EnrollmentID_idx4"; -- --- Name: hmiscsv2022currentlivingsituations_prGC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_prGC" ON public.hmis_csv_2022_current_living_situations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_ExportID_idx"; -- --- Name: hmiscsv2022currentlivingsituations_qJOi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_qJOi" ON public.hmis_csv_2022_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_ExportID_idx1"; -- --- Name: hmiscsv2022currentlivingsituations_ttmJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_ttmJ" ON public.hmis_csv_2022_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_ExportID_idx2"; -- --- Name: hmiscsv2022currentlivingsituations_xWxO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_xWxO" ON public.hmis_csv_2022_current_living_situations USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_ExportID_idx3"; -- --- Name: hmiscsv2022currentlivingsituations_y4vM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_y4vM" ON public.hmis_csv_2022_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_ExportID_idx4"; -- --- Name: hmiscsv2022currentlivingsituations_yXYJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_yXYJ" ON public.hmis_csv_2022_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_PersonalID_idx"; -- --- Name: hmiscsv2022currentlivingsituations_z0XS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_z0XS" ON public.hmis_csv_2022_current_living_situations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_PersonalID_idx1"; -- --- Name: hmiscsv2022currentlivingsituations_zYGE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022currentlivingsituations_zYGE" ON public.hmis_csv_2022_current_living_situations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_PersonalID_idx2"; -- --- Name: hmiscsv2022disabilities_0FAj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_0FAj" ON public.hmis_csv_2022_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_PersonalID_idx3"; -- --- Name: hmiscsv2022disabilities_14pD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_14pD" ON public.hmis_csv_2022_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_PersonalID_idx4"; -- --- Name: hmiscsv2022disabilities_3jSy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_3jSy" ON public.hmis_csv_2022_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx"; -- --- Name: hmiscsv2022disabilities_6NwA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_6NwA" ON public.hmis_csv_2022_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx1"; -- --- Name: hmiscsv2022disabilities_6PJV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_6PJV" ON public.hmis_csv_2022_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx2"; -- --- Name: hmiscsv2022disabilities_ARC4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_ARC4" ON public.hmis_csv_2022_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx3"; -- --- Name: hmiscsv2022disabilities_BfOC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_BfOC" ON public.hmis_csv_2022_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_DateDeleted_idx4"; -- --- Name: hmiscsv2022disabilities_DUOj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_DUOj" ON public.hmis_csv_2022_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_DateProvided_idx"; -- --- Name: hmiscsv2022disabilities_Gwg7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_Gwg7" ON public.hmis_csv_2022_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_DateProvided_idx1"; -- --- Name: hmiscsv2022disabilities_HfAi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_HfAi" ON public.hmis_csv_2022_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_DateProvided_idx2"; -- --- Name: hmiscsv2022disabilities_Ia96; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_Ia96" ON public.hmis_csv_2022_disabilities USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_DateProvided_idx3"; -- --- Name: hmiscsv2022disabilities_JS03; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_JS03" ON public.hmis_csv_2022_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_DateProvided_idx4"; -- --- Name: hmiscsv2022disabilities_JlIz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_JlIz" ON public.hmis_csv_2022_disabilities USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_idx"; -- --- Name: hmiscsv2022disabilities_MLpw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_MLpw" ON public.hmis_csv_2022_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_idx1"; -- --- Name: hmiscsv2022disabilities_NAn7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_NAn7" ON public.hmis_csv_2022_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_idx2"; -- --- Name: hmiscsv2022disabilities_OFo6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_OFo6" ON public.hmis_csv_2022_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_idx3"; -- --- Name: hmiscsv2022disabilities_OMdy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_OMdy" ON public.hmis_csv_2022_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_RecordType_idx4"; -- --- Name: hmiscsv2022disabilities_Olzq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_Olzq" ON public.hmis_csv_2022_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_ServicesID_data_source_id_idx"; -- --- Name: hmiscsv2022disabilities_Tf5p; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_Tf5p" ON public.hmis_csv_2022_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_ServicesID_idx"; -- --- Name: hmiscsv2022disabilities_TwHW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_TwHW" ON public.hmis_csv_2022_disabilities USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_ServicesID_idx1"; -- --- Name: hmiscsv2022disabilities_VMgh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_VMgh" ON public.hmis_csv_2022_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_ServicesID_idx2"; -- --- Name: hmiscsv2022disabilities_bckS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_bckS" ON public.hmis_csv_2022_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_ServicesID_idx3"; -- --- Name: hmiscsv2022disabilities_dHHy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_dHHy" ON public.hmis_csv_2022_disabilities USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_46_ServicesID_idx4"; -- --- Name: hmiscsv2022disabilities_eK81; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_eK81" ON public.hmis_csv_2022_disabilities USING btree ("DateUpdated"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_46_importer_log_id_idx; -- --- Name: hmiscsv2022disabilities_fd6N; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_fd6N" ON public.hmis_csv_2022_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_46_pkey; -- --- Name: hmiscsv2022disabilities_jDA7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_46_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_jDA7" ON public.hmis_csv_2022_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_46_source_type_source_id_idx; -- --- Name: hmiscsv2022disabilities_jabB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_jabB" ON public.hmis_csv_2022_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateCreated_idx"; -- --- Name: hmiscsv2022disabilities_kUs4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_kUs4" ON public.hmis_csv_2022_disabilities USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateCreated_idx1"; -- --- Name: hmiscsv2022disabilities_xTGY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022disabilities_xTGY" ON public.hmis_csv_2022_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateCreated_idx2"; -- --- Name: hmiscsv2022disabilities_y3fv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022disabilities_y3fv ON public.hmis_csv_2022_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateCreated_idx3"; -- --- Name: hmiscsv2022employmenteducations_6eDi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_6eDi" ON public.hmis_csv_2022_employment_educations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateCreated_idx4"; -- --- Name: hmiscsv2022employmenteducations_78id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022employmenteducations_78id ON public.hmis_csv_2022_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateDeleted_idx"; -- --- Name: hmiscsv2022employmenteducations_8Z2N; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_8Z2N" ON public.hmis_csv_2022_employment_educations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateDeleted_idx1"; -- --- Name: hmiscsv2022employmenteducations_A6mw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_A6mw" ON public.hmis_csv_2022_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateDeleted_idx2"; -- --- Name: hmiscsv2022employmenteducations_AiJX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_AiJX" ON public.hmis_csv_2022_employment_educations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateDeleted_idx3"; -- --- Name: hmiscsv2022employmenteducations_EVib; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_EVib" ON public.hmis_csv_2022_employment_educations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateDeleted_idx4"; -- --- Name: hmiscsv2022employmenteducations_F0mG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_F0mG" ON public.hmis_csv_2022_employment_educations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateProvided_idx"; -- --- Name: hmiscsv2022employmenteducations_FiLV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_FiLV" ON public.hmis_csv_2022_employment_educations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateProvided_idx1"; -- --- Name: hmiscsv2022employmenteducations_LI7n; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_LI7n" ON public.hmis_csv_2022_employment_educations USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateProvided_idx2"; -- --- Name: hmiscsv2022employmenteducations_MSFC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_MSFC" ON public.hmis_csv_2022_employment_educations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateProvided_idx3"; -- --- Name: hmiscsv2022employmenteducations_NAxg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_NAxg" ON public.hmis_csv_2022_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateProvided_idx4"; -- --- Name: hmiscsv2022employmenteducations_NbWu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_NbWu" ON public.hmis_csv_2022_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateUpdated_idx"; -- --- Name: hmiscsv2022employmenteducations_R9hB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_R9hB" ON public.hmis_csv_2022_employment_educations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateUpdated_idx1"; -- --- Name: hmiscsv2022employmenteducations_Ysak; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_Ysak" ON public.hmis_csv_2022_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateUpdated_idx2"; -- --- Name: hmiscsv2022employmenteducations_Yxep; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_Yxep" ON public.hmis_csv_2022_employment_educations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateUpdated_idx3"; -- --- Name: hmiscsv2022employmenteducations_ZbXO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_ZbXO" ON public.hmis_csv_2022_employment_educations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_DateUpdated_idx4"; -- --- Name: hmiscsv2022employmenteducations_bJWx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_bJWx" ON public.hmis_csv_2022_employment_educations USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx"; -- --- Name: hmiscsv2022employmenteducations_cugU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_cugU" ON public.hmis_csv_2022_employment_educations USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx1"; -- --- Name: hmiscsv2022employmenteducations_dRqv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_dRqv" ON public.hmis_csv_2022_employment_educations USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx2"; -- --- Name: hmiscsv2022employmenteducations_fmAi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_fmAi" ON public.hmis_csv_2022_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx3"; -- --- Name: hmiscsv2022employmenteducations_iobe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022employmenteducations_iobe ON public.hmis_csv_2022_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx4"; -- --- Name: hmiscsv2022employmenteducations_j9oN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_j9oN" ON public.hmis_csv_2022_employment_educations USING btree ("ExportID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_EnrollmentID_PersonalID_idx5"; -- --- Name: hmiscsv2022employmenteducations_lIAh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_lIAh" ON public.hmis_csv_2022_employment_educations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_EnrollmentID_idx"; -- --- Name: hmiscsv2022employmenteducations_mmce; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022employmenteducations_mmce ON public.hmis_csv_2022_employment_educations USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_EnrollmentID_idx1"; -- --- Name: hmiscsv2022employmenteducations_ocww; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022employmenteducations_ocww ON public.hmis_csv_2022_employment_educations USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_EnrollmentID_idx2"; -- --- Name: hmiscsv2022employmenteducations_oprT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_oprT" ON public.hmis_csv_2022_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_EnrollmentID_idx3"; -- --- Name: hmiscsv2022employmenteducations_ozcJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_ozcJ" ON public.hmis_csv_2022_employment_educations USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_EnrollmentID_idx4"; -- --- Name: hmiscsv2022employmenteducations_skDR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_skDR" ON public.hmis_csv_2022_employment_educations USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_ExportID_idx"; -- --- Name: hmiscsv2022employmenteducations_wddn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022employmenteducations_wddn ON public.hmis_csv_2022_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_ExportID_idx1"; -- --- Name: hmiscsv2022employmenteducations_zwTX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022employmenteducations_zwTX" ON public.hmis_csv_2022_employment_educations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_ExportID_idx2"; -- --- Name: hmiscsv2022enrollmentcocs_0IAL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_0IAL" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_ExportID_idx3"; -- --- Name: hmiscsv2022enrollmentcocs_1Xm2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_1Xm2" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_ExportID_idx4"; -- --- Name: hmiscsv2022enrollmentcocs_1dHp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_1dHp" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_PersonalID_idx"; -- --- Name: hmiscsv2022enrollmentcocs_8MhC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_8MhC" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_PersonalID_idx1"; -- --- Name: hmiscsv2022enrollmentcocs_CkJU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_CkJU" ON public.hmis_csv_2022_enrollment_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_PersonalID_idx2"; -- --- Name: hmiscsv2022enrollmentcocs_DOSa; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_DOSa" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_PersonalID_idx3"; -- --- Name: hmiscsv2022enrollmentcocs_EYBf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_EYBf" ON public.hmis_csv_2022_enrollment_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_PersonalID_idx4"; -- --- Name: hmiscsv2022enrollmentcocs_FwbF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_FwbF" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx"; -- --- Name: hmiscsv2022enrollmentcocs_GQqO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_GQqO" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx1"; -- --- Name: hmiscsv2022enrollmentcocs_GuqN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_GuqN" ON public.hmis_csv_2022_enrollment_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx2"; -- --- Name: hmiscsv2022enrollmentcocs_MbjI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_MbjI" ON public.hmis_csv_2022_enrollment_cocs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx3"; -- --- Name: hmiscsv2022enrollmentcocs_RAnO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_RAnO" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_DateDeleted_idx4"; -- --- Name: hmiscsv2022enrollmentcocs_RFoA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_RFoA" ON public.hmis_csv_2022_enrollment_cocs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_DateProvided_idx"; -- --- Name: hmiscsv2022enrollmentcocs_RWu2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_RWu2" ON public.hmis_csv_2022_enrollment_cocs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_DateProvided_idx1"; -- --- Name: hmiscsv2022enrollmentcocs_SbfY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_SbfY" ON public.hmis_csv_2022_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_DateProvided_idx2"; -- --- Name: hmiscsv2022enrollmentcocs_Uzo4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_Uzo4" ON public.hmis_csv_2022_enrollment_cocs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_DateProvided_idx3"; -- --- Name: hmiscsv2022enrollmentcocs_VVbQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_VVbQ" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_DateProvided_idx4"; -- --- Name: hmiscsv2022enrollmentcocs_WRnl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_WRnl" ON public.hmis_csv_2022_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_idx"; -- --- Name: hmiscsv2022enrollmentcocs_XgoM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_XgoM" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_idx1"; -- --- Name: hmiscsv2022enrollmentcocs_Yhrm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_Yhrm" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_idx2"; -- --- Name: hmiscsv2022enrollmentcocs_ZMp3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_ZMp3" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_idx3"; -- --- Name: hmiscsv2022enrollmentcocs_aC6n; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_aC6n" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_RecordType_idx4"; -- --- Name: hmiscsv2022enrollmentcocs_axDz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_axDz" ON public.hmis_csv_2022_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_ServicesID_data_source_id_idx"; -- --- Name: hmiscsv2022enrollmentcocs_caGj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_caGj" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_ServicesID_idx"; -- --- Name: hmiscsv2022enrollmentcocs_cezi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022enrollmentcocs_cezi ON public.hmis_csv_2022_enrollment_cocs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_ServicesID_idx1"; -- --- Name: hmiscsv2022enrollmentcocs_emcB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_emcB" ON public.hmis_csv_2022_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_ServicesID_idx2"; -- --- Name: hmiscsv2022enrollmentcocs_f3a2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022enrollmentcocs_f3a2 ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_ServicesID_idx3"; -- --- Name: hmiscsv2022enrollmentcocs_g5J5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_g5J5" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_47_ServicesID_idx4"; -- --- Name: hmiscsv2022enrollmentcocs_gXcN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_gXcN" ON public.hmis_csv_2022_enrollment_cocs USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_47_importer_log_id_idx; -- --- Name: hmiscsv2022enrollmentcocs_iz8D; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_iz8D" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateDeleted"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_47_pkey; -- --- Name: hmiscsv2022enrollmentcocs_mKux; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_47_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_mKux" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateCreated"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_47_source_type_source_id_idx; -- --- Name: hmiscsv2022enrollmentcocs_nt0O; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_nt0O" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateCreated_idx"; -- --- Name: hmiscsv2022enrollmentcocs_oCoG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_oCoG" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateCreated_idx1"; -- --- Name: hmiscsv2022enrollmentcocs_p3i5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022enrollmentcocs_p3i5 ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateCreated_idx2"; -- --- Name: hmiscsv2022enrollmentcocs_pfEL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_pfEL" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateCreated_idx3"; -- --- Name: hmiscsv2022enrollmentcocs_pmSf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_pmSf" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateCreated_idx4"; -- --- Name: hmiscsv2022enrollmentcocs_qsT9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_qsT9" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateDeleted_idx"; -- --- Name: hmiscsv2022enrollmentcocs_wcbV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_wcbV" ON public.hmis_csv_2022_enrollment_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateDeleted_idx1"; -- --- Name: hmiscsv2022enrollmentcocs_wiac; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022enrollmentcocs_wiac ON public.hmis_csv_2022_enrollment_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateDeleted_idx2"; -- --- Name: hmiscsv2022enrollmentcocs_ybyR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_ybyR" ON public.hmis_csv_2022_enrollment_cocs USING btree ("CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateDeleted_idx3"; -- --- Name: hmiscsv2022enrollmentcocs_zIJt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollmentcocs_zIJt" ON public.hmis_csv_2022_enrollment_cocs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateDeleted_idx4"; -- --- Name: hmiscsv2022enrollments_000u; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022enrollments_000u ON public.hmis_csv_2022_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateProvided_idx"; -- --- Name: hmiscsv2022enrollments_02Gq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_02Gq" ON public.hmis_csv_2022_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateProvided_idx1"; -- --- Name: hmiscsv2022enrollments_04uI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_04uI" ON public.hmis_csv_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateProvided_idx2"; -- --- Name: hmiscsv2022enrollments_0CSP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_0CSP" ON public.hmis_csv_2022_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateProvided_idx3"; -- --- Name: hmiscsv2022enrollments_0HUb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_0HUb" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateProvided_idx4"; -- --- Name: hmiscsv2022enrollments_0x3v; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022enrollments_0x3v ON public.hmis_csv_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateUpdated_idx"; -- --- Name: hmiscsv2022enrollments_1O7e; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_1O7e" ON public.hmis_csv_2022_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateUpdated_idx1"; -- --- Name: hmiscsv2022enrollments_1jXQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_1jXQ" ON public.hmis_csv_2022_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateUpdated_idx2"; -- --- Name: hmiscsv2022enrollments_2KUN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_2KUN" ON public.hmis_csv_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateUpdated_idx3"; -- --- Name: hmiscsv2022enrollments_2Uh6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_2Uh6" ON public.hmis_csv_2022_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_DateUpdated_idx4"; -- --- Name: hmiscsv2022enrollments_2W2h; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_2W2h" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx"; -- --- Name: hmiscsv2022enrollments_3085; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022enrollments_3085 ON public.hmis_csv_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx1"; -- --- Name: hmiscsv2022enrollments_5Od1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_5Od1" ON public.hmis_csv_2022_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx2"; -- --- Name: hmiscsv2022enrollments_6RGw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_6RGw" ON public.hmis_csv_2022_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx3"; -- --- Name: hmiscsv2022enrollments_6xDx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_6xDx" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx4"; -- --- Name: hmiscsv2022enrollments_9KtN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_9KtN" ON public.hmis_csv_2022_enrollments USING btree ("PersonalID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_EnrollmentID_PersonalID_idx5"; -- --- Name: hmiscsv2022enrollments_COSj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_COSj" ON public.hmis_csv_2022_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_EnrollmentID_idx"; -- --- Name: hmiscsv2022enrollments_DEbx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_DEbx" ON public.hmis_csv_2022_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_EnrollmentID_idx1"; -- --- Name: hmiscsv2022enrollments_G41a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_G41a" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_EnrollmentID_idx2"; -- --- Name: hmiscsv2022enrollments_G6mN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_G6mN" ON public.hmis_csv_2022_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_EnrollmentID_idx3"; -- --- Name: hmiscsv2022enrollments_HAgm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_HAgm" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_EnrollmentID_idx4"; -- --- Name: hmiscsv2022enrollments_INhf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_INhf" ON public.hmis_csv_2022_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_ExportID_idx"; -- --- Name: hmiscsv2022enrollments_Jfc4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_Jfc4" ON public.hmis_csv_2022_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_ExportID_idx1"; -- --- Name: hmiscsv2022enrollments_Kbfs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_Kbfs" ON public.hmis_csv_2022_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_ExportID_idx2"; -- --- Name: hmiscsv2022enrollments_Knt6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_Knt6" ON public.hmis_csv_2022_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_ExportID_idx3"; -- --- Name: hmiscsv2022enrollments_LOT5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_LOT5" ON public.hmis_csv_2022_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_ExportID_idx4"; -- --- Name: hmiscsv2022enrollments_LVhZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_LVhZ" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_PersonalID_idx"; -- --- Name: hmiscsv2022enrollments_Lr7G; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_Lr7G" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_PersonalID_idx1"; -- --- Name: hmiscsv2022enrollments_N5Wd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_N5Wd" ON public.hmis_csv_2022_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_PersonalID_idx2"; -- --- Name: hmiscsv2022enrollments_NGvh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_NGvh" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_PersonalID_idx3"; -- --- Name: hmiscsv2022enrollments_OvVn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_OvVn" ON public.hmis_csv_2022_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_PersonalID_idx4"; -- --- Name: hmiscsv2022enrollments_PKib; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_PKib" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx"; -- --- Name: hmiscsv2022enrollments_PZWA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_PZWA" ON public.hmis_csv_2022_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx1"; -- --- Name: hmiscsv2022enrollments_QE4p; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_QE4p" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx2"; -- --- Name: hmiscsv2022enrollments_QJf5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_QJf5" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx3"; -- --- Name: hmiscsv2022enrollments_QqES; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_QqES" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_DateDeleted_idx4"; -- --- Name: hmiscsv2022enrollments_S95a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_S95a" ON public.hmis_csv_2022_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_DateProvided_idx"; -- --- Name: hmiscsv2022enrollments_SIaS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_SIaS" ON public.hmis_csv_2022_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_DateProvided_idx1"; -- --- Name: hmiscsv2022enrollments_TUkM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_TUkM" ON public.hmis_csv_2022_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_DateProvided_idx2"; -- --- Name: hmiscsv2022enrollments_Vf7B; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_Vf7B" ON public.hmis_csv_2022_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_DateProvided_idx3"; -- --- Name: hmiscsv2022enrollments_WODv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_WODv" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_DateProvided_idx4"; -- --- Name: hmiscsv2022enrollments_XcDq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_XcDq" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_idx"; -- --- Name: hmiscsv2022enrollments_Xlha; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_Xlha" ON public.hmis_csv_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_idx1"; -- --- Name: hmiscsv2022enrollments_YQva; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_YQva" ON public.hmis_csv_2022_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_idx2"; -- --- Name: hmiscsv2022enrollments_YiGw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_YiGw" ON public.hmis_csv_2022_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_idx3"; -- --- Name: hmiscsv2022enrollments_YwGX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_YwGX" ON public.hmis_csv_2022_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_RecordType_idx4"; -- --- Name: hmiscsv2022enrollments_ZJOW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_ZJOW" ON public.hmis_csv_2022_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_ServicesID_data_source_id_idx"; -- --- Name: hmiscsv2022enrollments_b4C4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_b4C4" ON public.hmis_csv_2022_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_ServicesID_idx"; -- --- Name: hmiscsv2022enrollments_bItG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_bItG" ON public.hmis_csv_2022_enrollments USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_ServicesID_idx1"; -- --- Name: hmiscsv2022enrollments_cCys; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_cCys" ON public.hmis_csv_2022_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_ServicesID_idx2"; -- --- Name: hmiscsv2022enrollments_dJ9X; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_dJ9X" ON public.hmis_csv_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_ServicesID_idx3"; -- --- Name: hmiscsv2022enrollments_dc9H; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_dc9H" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_48_ServicesID_idx4"; -- --- Name: hmiscsv2022enrollments_eMPH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_eMPH" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_48_importer_log_id_idx; -- --- Name: hmiscsv2022enrollments_fYTX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_fYTX" ON public.hmis_csv_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_48_pkey; -- --- Name: hmiscsv2022enrollments_fkcM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_48_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_fkcM" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_48_source_type_source_id_idx; -- --- Name: hmiscsv2022enrollments_gn6K; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_gn6K" ON public.hmis_csv_2022_enrollments USING btree ("LivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateCreated_idx"; -- --- Name: hmiscsv2022enrollments_goII; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_goII" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateCreated_idx1"; -- --- Name: hmiscsv2022enrollments_hYxd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_hYxd" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateCreated_idx2"; -- --- Name: hmiscsv2022enrollments_hdwb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022enrollments_hdwb ON public.hmis_csv_2022_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateCreated_idx3"; -- --- Name: hmiscsv2022enrollments_iWHQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_iWHQ" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateCreated_idx4"; -- --- Name: hmiscsv2022enrollments_jJjY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_jJjY" ON public.hmis_csv_2022_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateDeleted_idx"; -- --- Name: hmiscsv2022enrollments_jiTz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_jiTz" ON public.hmis_csv_2022_enrollments USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateDeleted_idx1"; -- --- Name: hmiscsv2022enrollments_kdcK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_kdcK" ON public.hmis_csv_2022_enrollments USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateDeleted_idx2"; -- --- Name: hmiscsv2022enrollments_kfHu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_kfHu" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateDeleted_idx3"; -- --- Name: hmiscsv2022enrollments_lCDv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_lCDv" ON public.hmis_csv_2022_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateDeleted_idx4"; -- --- Name: hmiscsv2022enrollments_mGyY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_mGyY" ON public.hmis_csv_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateProvided_idx"; -- --- Name: hmiscsv2022enrollments_nhXb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_nhXb" ON public.hmis_csv_2022_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateProvided_idx1"; -- --- Name: hmiscsv2022enrollments_oC1q; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_oC1q" ON public.hmis_csv_2022_enrollments USING btree ("RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateProvided_idx2"; -- --- Name: hmiscsv2022enrollments_oOOv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_oOOv" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateProvided_idx3"; -- --- Name: hmiscsv2022enrollments_pYk7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_pYk7" ON public.hmis_csv_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateProvided_idx4"; -- --- Name: hmiscsv2022enrollments_pksT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_pksT" ON public.hmis_csv_2022_enrollments USING btree ("HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateUpdated_idx"; -- --- Name: hmiscsv2022enrollments_py9x; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022enrollments_py9x ON public.hmis_csv_2022_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateUpdated_idx1"; -- --- Name: hmiscsv2022enrollments_qhAg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_qhAg" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateUpdated_idx2"; -- --- Name: hmiscsv2022enrollments_rgZ9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_rgZ9" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "HouseholdID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateUpdated_idx3"; -- --- Name: hmiscsv2022enrollments_rmZr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_rmZr" ON public.hmis_csv_2022_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_DateUpdated_idx4"; -- --- Name: hmiscsv2022enrollments_rufY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_rufY" ON public.hmis_csv_2022_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx"; -- --- Name: hmiscsv2022enrollments_sD3N; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_sD3N" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx1"; -- --- Name: hmiscsv2022enrollments_upFd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_upFd" ON public.hmis_csv_2022_enrollments USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx2"; -- --- Name: hmiscsv2022enrollments_vfUq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_vfUq" ON public.hmis_csv_2022_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx3"; -- --- Name: hmiscsv2022enrollments_wCi5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_wCi5" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx4"; -- --- Name: hmiscsv2022enrollments_xYjO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_xYjO" ON public.hmis_csv_2022_enrollments USING btree ("DateCreated"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_EnrollmentID_PersonalID_idx5"; -- --- Name: hmiscsv2022enrollments_xkHU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_xkHU" ON public.hmis_csv_2022_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_EnrollmentID_idx"; -- --- Name: hmiscsv2022enrollments_xwum; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022enrollments_xwum ON public.hmis_csv_2022_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_EnrollmentID_idx1"; -- --- Name: hmiscsv2022enrollments_yiWK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_yiWK" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_EnrollmentID_idx2"; -- --- Name: hmiscsv2022enrollments_z9WI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022enrollments_z9WI" ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_EnrollmentID_idx3"; -- --- Name: hmiscsv2022enrollments_zumz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022enrollments_zumz ON public.hmis_csv_2022_enrollments USING btree ("ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_EnrollmentID_idx4"; -- --- Name: hmiscsv2022events_6eMI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_6eMI" ON public.hmis_csv_2022_events USING btree ("EventDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_ExportID_idx"; -- --- Name: hmiscsv2022events_70cK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_70cK" ON public.hmis_csv_2022_events USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_ExportID_idx1"; -- --- Name: hmiscsv2022events_9PUb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_9PUb" ON public.hmis_csv_2022_events USING btree ("EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_ExportID_idx2"; -- --- Name: hmiscsv2022events_9r3x; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022events_9r3x ON public.hmis_csv_2022_events USING btree ("EventDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_ExportID_idx3"; -- --- Name: hmiscsv2022events_9rNL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_9rNL" ON public.hmis_csv_2022_events USING btree ("EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_ExportID_idx4"; -- --- Name: hmiscsv2022events_A0Re; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_A0Re" ON public.hmis_csv_2022_events USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_PersonalID_idx"; -- --- Name: hmiscsv2022events_AFoC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_AFoC" ON public.hmis_csv_2022_events USING btree ("EventDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_PersonalID_idx1"; -- --- Name: hmiscsv2022events_EF2x; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_EF2x" ON public.hmis_csv_2022_events USING btree ("EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_PersonalID_idx2"; -- --- Name: hmiscsv2022events_HWMU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_HWMU" ON public.hmis_csv_2022_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_PersonalID_idx3"; -- --- Name: hmiscsv2022events_MpdL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_MpdL" ON public.hmis_csv_2022_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_PersonalID_idx4"; -- --- Name: hmiscsv2022events_PVi4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_PVi4" ON public.hmis_csv_2022_events USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx"; -- --- Name: hmiscsv2022events_RGSg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_RGSg" ON public.hmis_csv_2022_events USING btree ("EventDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx1"; -- --- Name: hmiscsv2022events_RRPj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_RRPj" ON public.hmis_csv_2022_events USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx2"; -- --- Name: hmiscsv2022events_SEgq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_SEgq" ON public.hmis_csv_2022_events USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx3"; -- --- Name: hmiscsv2022events_TrwM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_TrwM" ON public.hmis_csv_2022_events USING btree ("EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_DateDeleted_idx4"; -- --- Name: hmiscsv2022events_UMEc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_UMEc" ON public.hmis_csv_2022_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_DateProvided_idx"; -- --- Name: hmiscsv2022events_b0HY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_b0HY" ON public.hmis_csv_2022_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_DateProvided_idx1"; -- --- Name: hmiscsv2022events_f8eV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_f8eV" ON public.hmis_csv_2022_events USING btree ("EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_DateProvided_idx2"; -- --- Name: hmiscsv2022events_fVxv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_fVxv" ON public.hmis_csv_2022_events USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_DateProvided_idx3"; -- --- Name: hmiscsv2022events_gFxo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_gFxo" ON public.hmis_csv_2022_events USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_DateProvided_idx4"; -- --- Name: hmiscsv2022events_jBzv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_jBzv" ON public.hmis_csv_2022_events USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_idx"; -- --- Name: hmiscsv2022events_k3Vz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_k3Vz" ON public.hmis_csv_2022_events USING btree ("EventDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_idx1"; -- --- Name: hmiscsv2022events_wPoI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_wPoI" ON public.hmis_csv_2022_events USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_idx2"; -- --- Name: hmiscsv2022events_wiJI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022events_wiJI" ON public.hmis_csv_2022_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_idx3"; -- --- Name: hmiscsv2022events_yhpj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022events_yhpj ON public.hmis_csv_2022_events USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_RecordType_idx4"; -- --- Name: hmiscsv2022exits_0oqJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_0oqJ" ON public.hmis_csv_2022_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_ServicesID_data_source_id_idx"; -- --- Name: hmiscsv2022exits_2IJt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_2IJt" ON public.hmis_csv_2022_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_ServicesID_idx"; -- --- Name: hmiscsv2022exits_3hM6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_3hM6" ON public.hmis_csv_2022_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_ServicesID_idx1"; -- --- Name: hmiscsv2022exits_6mEQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_6mEQ" ON public.hmis_csv_2022_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_ServicesID_idx2"; -- --- Name: hmiscsv2022exits_7XJm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_7XJm" ON public.hmis_csv_2022_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_ServicesID_idx3"; -- --- Name: hmiscsv2022exits_7kNM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_7kNM" ON public.hmis_csv_2022_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_49_ServicesID_idx4"; -- --- Name: hmiscsv2022exits_97kE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_97kE" ON public.hmis_csv_2022_exits USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_49_importer_log_id_idx; -- --- Name: hmiscsv2022exits_9wKe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_9wKe" ON public.hmis_csv_2022_exits USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_49_pkey; -- --- Name: hmiscsv2022exits_AJQd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_49_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_AJQd" ON public.hmis_csv_2022_exits USING btree ("ExitID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_49_source_type_source_id_idx; -- --- Name: hmiscsv2022exits_BugK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_BugK" ON public.hmis_csv_2022_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateCreated_idx"; -- --- Name: hmiscsv2022exits_CFOy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_CFOy" ON public.hmis_csv_2022_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateCreated_idx1"; -- --- Name: hmiscsv2022exits_FaOP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_FaOP" ON public.hmis_csv_2022_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateCreated_idx2"; -- --- Name: hmiscsv2022exits_GVqN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_GVqN" ON public.hmis_csv_2022_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateCreated_idx3"; -- --- Name: hmiscsv2022exits_H1wM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_H1wM" ON public.hmis_csv_2022_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateCreated_idx4"; -- --- Name: hmiscsv2022exits_HEXL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_HEXL" ON public.hmis_csv_2022_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateDeleted_idx"; -- --- Name: hmiscsv2022exits_JFIj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_JFIj" ON public.hmis_csv_2022_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateDeleted_idx1"; -- --- Name: hmiscsv2022exits_QIyW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_QIyW" ON public.hmis_csv_2022_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateDeleted_idx2"; -- --- Name: hmiscsv2022exits_QQgW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_QQgW" ON public.hmis_csv_2022_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateDeleted_idx3"; -- --- Name: hmiscsv2022exits_Sweu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_Sweu" ON public.hmis_csv_2022_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateDeleted_idx4"; -- --- Name: hmiscsv2022exits_UpXI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_UpXI" ON public.hmis_csv_2022_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateProvided_idx"; -- --- Name: hmiscsv2022exits_V4hG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_V4hG" ON public.hmis_csv_2022_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateProvided_idx1"; -- --- Name: hmiscsv2022exits_YPuW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_YPuW" ON public.hmis_csv_2022_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateProvided_idx2"; -- --- Name: hmiscsv2022exits_ZLAK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_ZLAK" ON public.hmis_csv_2022_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateProvided_idx3"; -- --- Name: hmiscsv2022exits_b9Iz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_b9Iz" ON public.hmis_csv_2022_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateProvided_idx4"; -- --- Name: hmiscsv2022exits_jid6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022exits_jid6 ON public.hmis_csv_2022_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateUpdated_idx"; -- --- Name: hmiscsv2022exits_lR9a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_lR9a" ON public.hmis_csv_2022_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateUpdated_idx1"; -- --- Name: hmiscsv2022exits_nNms; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_nNms" ON public.hmis_csv_2022_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateUpdated_idx2"; -- --- Name: hmiscsv2022exits_nix9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022exits_nix9 ON public.hmis_csv_2022_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateUpdated_idx3"; -- --- Name: hmiscsv2022exits_othX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_othX" ON public.hmis_csv_2022_exits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_DateUpdated_idx4"; -- --- Name: hmiscsv2022exits_pVQh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_pVQh" ON public.hmis_csv_2022_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx"; -- --- Name: hmiscsv2022exits_s2TS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_s2TS" ON public.hmis_csv_2022_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx1"; -- --- Name: hmiscsv2022exits_sL74; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_sL74" ON public.hmis_csv_2022_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx2"; -- --- Name: hmiscsv2022exits_sUuv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_sUuv" ON public.hmis_csv_2022_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx3"; -- --- Name: hmiscsv2022exits_t4xs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022exits_t4xs ON public.hmis_csv_2022_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx4"; -- --- Name: hmiscsv2022exits_vZPo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_vZPo" ON public.hmis_csv_2022_exits USING btree ("EnrollmentID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_EnrollmentID_PersonalID_idx5"; -- --- Name: hmiscsv2022exits_vtCz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_vtCz" ON public.hmis_csv_2022_exits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_EnrollmentID_idx"; -- --- Name: hmiscsv2022exits_w7ex; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022exits_w7ex ON public.hmis_csv_2022_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_EnrollmentID_idx1"; -- --- Name: hmiscsv2022exits_xila; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022exits_xila ON public.hmis_csv_2022_exits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_EnrollmentID_idx2"; -- --- Name: hmiscsv2022exits_xm89; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022exits_xm89 ON public.hmis_csv_2022_exits USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_EnrollmentID_idx3"; -- --- Name: hmiscsv2022exits_yCw0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exits_yCw0" ON public.hmis_csv_2022_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_EnrollmentID_idx4"; -- --- Name: hmiscsv2022exports_4A4m; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exports_4A4m" ON public.hmis_csv_2022_exports USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_ExportID_idx"; -- --- Name: hmiscsv2022exports_786V; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exports_786V" ON public.hmis_csv_2022_exports USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_ExportID_idx1"; -- --- Name: hmiscsv2022exports_7cpb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022exports_7cpb ON public.hmis_csv_2022_exports USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_ExportID_idx2"; -- --- Name: hmiscsv2022exports_Gf6i; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exports_Gf6i" ON public.hmis_csv_2022_exports USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_ExportID_idx3"; -- --- Name: hmiscsv2022exports_qkPK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022exports_qkPK" ON public.hmis_csv_2022_exports USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_ExportID_idx4"; -- --- Name: hmiscsv2022funders_EBQd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_EBQd" ON public.hmis_csv_2022_funders USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_PersonalID_idx"; -- --- Name: hmiscsv2022funders_EeF8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_EeF8" ON public.hmis_csv_2022_funders USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_PersonalID_idx1"; -- --- Name: hmiscsv2022funders_FasV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_FasV" ON public.hmis_csv_2022_funders USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_PersonalID_idx2"; -- --- Name: hmiscsv2022funders_I59Y; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_I59Y" ON public.hmis_csv_2022_funders USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_PersonalID_idx3"; -- --- Name: hmiscsv2022funders_KCdj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_KCdj" ON public.hmis_csv_2022_funders USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_PersonalID_idx4"; -- --- Name: hmiscsv2022funders_Q8i7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_Q8i7" ON public.hmis_csv_2022_funders USING btree ("FunderID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx"; -- --- Name: hmiscsv2022funders_U23e; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_U23e" ON public.hmis_csv_2022_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx1"; -- --- Name: hmiscsv2022funders_W9nA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_W9nA" ON public.hmis_csv_2022_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx2"; -- --- Name: hmiscsv2022funders_Zyir; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_Zyir" ON public.hmis_csv_2022_funders USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx3"; -- --- Name: hmiscsv2022funders_aEqh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_aEqh" ON public.hmis_csv_2022_funders USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_DateDeleted_idx4"; -- --- Name: hmiscsv2022funders_acMZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_acMZ" ON public.hmis_csv_2022_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_DateProvided_idx"; -- --- Name: hmiscsv2022funders_gFjD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_gFjD" ON public.hmis_csv_2022_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_DateProvided_idx1"; -- --- Name: hmiscsv2022funders_hsxT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_hsxT" ON public.hmis_csv_2022_funders USING btree ("FunderID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_DateProvided_idx2"; -- --- Name: hmiscsv2022funders_trtP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_trtP" ON public.hmis_csv_2022_funders USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_DateProvided_idx3"; -- --- Name: hmiscsv2022funders_vp8u; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022funders_vp8u ON public.hmis_csv_2022_funders USING btree ("FunderID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_DateProvided_idx4"; -- --- Name: hmiscsv2022funders_wAAz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_wAAz" ON public.hmis_csv_2022_funders USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_idx"; -- --- Name: hmiscsv2022funders_wkTK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_wkTK" ON public.hmis_csv_2022_funders USING btree ("FunderID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_idx1"; -- --- Name: hmiscsv2022funders_y0jT; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_y0jT" ON public.hmis_csv_2022_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_idx2"; -- --- Name: hmiscsv2022funders_yNBZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_yNBZ" ON public.hmis_csv_2022_funders USING btree ("FunderID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_idx3"; -- --- Name: hmiscsv2022funders_zZPu; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022funders_zZPu" ON public.hmis_csv_2022_funders USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_RecordType_idx4"; -- --- Name: hmiscsv2022healthanddvs_3s5V; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_3s5V" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_ServicesID_data_source_id_idx"; -- --- Name: hmiscsv2022healthanddvs_8V6w; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_8V6w" ON public.hmis_csv_2022_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_ServicesID_idx"; -- --- Name: hmiscsv2022healthanddvs_9xZf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_9xZf" ON public.hmis_csv_2022_health_and_dvs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_ServicesID_idx1"; -- --- Name: hmiscsv2022healthanddvs_BRTj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_BRTj" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_ServicesID_idx2"; -- --- Name: hmiscsv2022healthanddvs_CRfc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_CRfc" ON public.hmis_csv_2022_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_ServicesID_idx3"; -- --- Name: hmiscsv2022healthanddvs_DBWO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_DBWO" ON public.hmis_csv_2022_health_and_dvs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_ServicesID_idx4"; -- --- Name: hmiscsv2022healthanddvs_HnGC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_ServicesID_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_HnGC" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_4_ServicesID_importer_log_id_idx"; -- --- Name: hmiscsv2022healthanddvs_I9SQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_I9SQ" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateCreated"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_4_importer_log_id_idx; -- --- Name: hmiscsv2022healthanddvs_JFxv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_JFxv" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_4_pkey; -- --- Name: hmiscsv2022healthanddvs_PVQH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_4_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_PVQH" ON public.hmis_csv_2022_health_and_dvs USING btree ("PersonalID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_4_source_type_source_id_idx; -- --- Name: hmiscsv2022healthanddvs_TMQt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_TMQt" ON public.hmis_csv_2022_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateCreated_idx"; -- --- Name: hmiscsv2022healthanddvs_Vsks; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_Vsks" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateCreated_idx1"; -- --- Name: hmiscsv2022healthanddvs_Xory; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_Xory" ON public.hmis_csv_2022_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateCreated_idx2"; -- --- Name: hmiscsv2022healthanddvs_Y01x; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_Y01x" ON public.hmis_csv_2022_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateCreated_idx3"; -- --- Name: hmiscsv2022healthanddvs_elHq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_elHq" ON public.hmis_csv_2022_health_and_dvs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateCreated_idx4"; -- --- Name: hmiscsv2022healthanddvs_fkYA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_fkYA" ON public.hmis_csv_2022_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateDeleted_idx"; -- --- Name: hmiscsv2022healthanddvs_h8HB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_h8HB" ON public.hmis_csv_2022_health_and_dvs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateDeleted_idx1"; -- --- Name: hmiscsv2022healthanddvs_i9dN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_i9dN" ON public.hmis_csv_2022_health_and_dvs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateDeleted_idx2"; -- --- Name: hmiscsv2022healthanddvs_lDba; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_lDba" ON public.hmis_csv_2022_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateDeleted_idx3"; -- --- Name: hmiscsv2022healthanddvs_lP0u; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_lP0u" ON public.hmis_csv_2022_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateDeleted_idx4"; -- --- Name: hmiscsv2022healthanddvs_n8lZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_n8lZ" ON public.hmis_csv_2022_health_and_dvs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateProvided_idx"; -- --- Name: hmiscsv2022healthanddvs_nNgi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_nNgi" ON public.hmis_csv_2022_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateProvided_idx1"; -- --- Name: hmiscsv2022healthanddvs_pyNn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_pyNn" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateProvided_idx2"; -- --- Name: hmiscsv2022healthanddvs_q5XV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_q5XV" ON public.hmis_csv_2022_health_and_dvs USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateProvided_idx3"; -- --- Name: hmiscsv2022healthanddvs_qUR2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_qUR2" ON public.hmis_csv_2022_health_and_dvs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateProvided_idx4"; -- --- Name: hmiscsv2022healthanddvs_r4Lx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_r4Lx" ON public.hmis_csv_2022_health_and_dvs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateUpdated_idx"; -- --- Name: hmiscsv2022healthanddvs_sdZG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_sdZG" ON public.hmis_csv_2022_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateUpdated_idx1"; -- --- Name: hmiscsv2022healthanddvs_xsrk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022healthanddvs_xsrk ON public.hmis_csv_2022_health_and_dvs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateUpdated_idx2"; -- --- Name: hmiscsv2022healthanddvs_yG7j; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022healthanddvs_yG7j" ON public.hmis_csv_2022_health_and_dvs USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateUpdated_idx3"; -- --- Name: hmiscsv2022healthanddvs_zf1v; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022healthanddvs_zf1v ON public.hmis_csv_2022_health_and_dvs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_DateUpdated_idx4"; -- --- Name: hmiscsv2022incomebenefits_16c2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022incomebenefits_16c2 ON public.hmis_csv_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx"; -- --- Name: hmiscsv2022incomebenefits_1RQb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_1RQb" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx1"; -- --- Name: hmiscsv2022incomebenefits_1XAs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_1XAs" ON public.hmis_csv_2022_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx2"; -- --- Name: hmiscsv2022incomebenefits_1tdi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022incomebenefits_1tdi ON public.hmis_csv_2022_income_benefits USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx3"; -- --- Name: hmiscsv2022incomebenefits_2tUP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_2tUP" ON public.hmis_csv_2022_income_benefits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx4"; -- --- Name: hmiscsv2022incomebenefits_6HiZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_6HiZ" ON public.hmis_csv_2022_income_benefits USING btree ("ExportID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_EnrollmentID_PersonalID_idx5"; -- --- Name: hmiscsv2022incomebenefits_6g8h; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022incomebenefits_6g8h ON public.hmis_csv_2022_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_EnrollmentID_idx"; -- --- Name: hmiscsv2022incomebenefits_7IcJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_7IcJ" ON public.hmis_csv_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_EnrollmentID_idx1"; -- --- Name: hmiscsv2022incomebenefits_7obR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_7obR" ON public.hmis_csv_2022_income_benefits USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_EnrollmentID_idx2"; -- --- Name: hmiscsv2022incomebenefits_Aw1x; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_Aw1x" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_EnrollmentID_idx3"; -- --- Name: hmiscsv2022incomebenefits_BPxA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_BPxA" ON public.hmis_csv_2022_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_EnrollmentID_idx4"; -- --- Name: hmiscsv2022incomebenefits_EJv6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_EJv6" ON public.hmis_csv_2022_income_benefits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_ExportID_idx"; -- --- Name: hmiscsv2022incomebenefits_EOkg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_EOkg" ON public.hmis_csv_2022_income_benefits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_ExportID_idx1"; -- --- Name: hmiscsv2022incomebenefits_EY8v; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_EY8v" ON public.hmis_csv_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_ExportID_idx2"; -- --- Name: hmiscsv2022incomebenefits_F7Yo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_F7Yo" ON public.hmis_csv_2022_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_ExportID_idx3"; -- --- Name: hmiscsv2022incomebenefits_Fget; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_Fget" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_ExportID_idx4"; -- --- Name: hmiscsv2022incomebenefits_FnDI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_FnDI" ON public.hmis_csv_2022_income_benefits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_PersonalID_idx"; -- --- Name: hmiscsv2022incomebenefits_GD5Y; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_GD5Y" ON public.hmis_csv_2022_income_benefits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_PersonalID_idx1"; -- --- Name: hmiscsv2022incomebenefits_GRRK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_GRRK" ON public.hmis_csv_2022_income_benefits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_PersonalID_idx2"; -- --- Name: hmiscsv2022incomebenefits_Gcc7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_Gcc7" ON public.hmis_csv_2022_income_benefits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_PersonalID_idx3"; -- --- Name: hmiscsv2022incomebenefits_HQxa; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_HQxa" ON public.hmis_csv_2022_income_benefits USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_PersonalID_idx4"; -- --- Name: hmiscsv2022incomebenefits_HeoF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_HeoF" ON public.hmis_csv_2022_income_benefits USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx"; -- --- Name: hmiscsv2022incomebenefits_Hzxy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_Hzxy" ON public.hmis_csv_2022_income_benefits USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx1"; -- --- Name: hmiscsv2022incomebenefits_KDpF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_KDpF" ON public.hmis_csv_2022_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx2"; -- --- Name: hmiscsv2022incomebenefits_Myd9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_Myd9" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx3"; -- --- Name: hmiscsv2022incomebenefits_OVW3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_OVW3" ON public.hmis_csv_2022_income_benefits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_DateDeleted_idx4"; -- --- Name: hmiscsv2022incomebenefits_QURQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_QURQ" ON public.hmis_csv_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_DateProvided_idx"; -- --- Name: hmiscsv2022incomebenefits_RlAP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_RlAP" ON public.hmis_csv_2022_income_benefits USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_DateProvided_idx1"; -- --- Name: hmiscsv2022incomebenefits_SyN5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_SyN5" ON public.hmis_csv_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_DateProvided_idx2"; -- --- Name: hmiscsv2022incomebenefits_VKKY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_VKKY" ON public.hmis_csv_2022_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_DateProvided_idx3"; -- --- Name: hmiscsv2022incomebenefits_W8mA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_W8mA" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_DateProvided_idx4"; -- --- Name: hmiscsv2022incomebenefits_WpiB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_WpiB" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_idx"; -- --- Name: hmiscsv2022incomebenefits_Yjz6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_Yjz6" ON public.hmis_csv_2022_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_idx1"; -- --- Name: hmiscsv2022incomebenefits_ZRt9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_ZRt9" ON public.hmis_csv_2022_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_idx2"; -- --- Name: hmiscsv2022incomebenefits_ZW68; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_ZW68" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_idx3"; -- --- Name: hmiscsv2022incomebenefits_ae8d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022incomebenefits_ae8d ON public.hmis_csv_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_RecordType_idx4"; -- --- Name: hmiscsv2022incomebenefits_cE9a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_cE9a" ON public.hmis_csv_2022_income_benefits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_ServicesID_data_source_id_idx"; -- --- Name: hmiscsv2022incomebenefits_irza; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022incomebenefits_irza ON public.hmis_csv_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_ServicesID_idx"; -- --- Name: hmiscsv2022incomebenefits_jnNE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_jnNE" ON public.hmis_csv_2022_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_ServicesID_idx1"; -- --- Name: hmiscsv2022incomebenefits_mM7W; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_mM7W" ON public.hmis_csv_2022_income_benefits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_ServicesID_idx2"; -- --- Name: hmiscsv2022incomebenefits_nLIb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_nLIb" ON public.hmis_csv_2022_income_benefits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_ServicesID_idx3"; -- --- Name: hmiscsv2022incomebenefits_pgB6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_pgB6" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_50_ServicesID_idx4"; -- --- Name: hmiscsv2022incomebenefits_rV97; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_rV97" ON public.hmis_csv_2022_income_benefits USING btree ("EnrollmentID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_50_importer_log_id_idx; -- --- Name: hmiscsv2022incomebenefits_t2OW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_t2OW" ON public.hmis_csv_2022_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_50_pkey; -- --- Name: hmiscsv2022incomebenefits_vuok; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_50_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022incomebenefits_vuok ON public.hmis_csv_2022_income_benefits USING btree ("PersonalID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_50_source_type_source_id_idx; -- --- Name: hmiscsv2022incomebenefits_w5M0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022incomebenefits_w5M0" ON public.hmis_csv_2022_income_benefits USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateCreated_idx"; -- --- Name: hmiscsv2022incomebenefits_z5mn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022incomebenefits_z5mn ON public.hmis_csv_2022_income_benefits USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateCreated_idx1"; -- --- Name: hmiscsv2022inventories_0hc8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022inventories_0hc8 ON public.hmis_csv_2022_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateCreated_idx2"; -- --- Name: hmiscsv2022inventories_2JYH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_2JYH" ON public.hmis_csv_2022_inventories USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateCreated_idx3"; -- --- Name: hmiscsv2022inventories_5blG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_5blG" ON public.hmis_csv_2022_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateCreated_idx4"; -- --- Name: hmiscsv2022inventories_7XPQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_7XPQ" ON public.hmis_csv_2022_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateDeleted_idx"; -- --- Name: hmiscsv2022inventories_9529; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022inventories_9529 ON public.hmis_csv_2022_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateDeleted_idx1"; -- --- Name: hmiscsv2022inventories_FcjB; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_FcjB" ON public.hmis_csv_2022_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateDeleted_idx2"; -- --- Name: hmiscsv2022inventories_HoVQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_HoVQ" ON public.hmis_csv_2022_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateDeleted_idx3"; -- --- Name: hmiscsv2022inventories_MaX0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_MaX0" ON public.hmis_csv_2022_inventories USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateDeleted_idx4"; -- --- Name: hmiscsv2022inventories_Mam6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_Mam6" ON public.hmis_csv_2022_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateProvided_idx"; -- --- Name: hmiscsv2022inventories_O4mI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_O4mI" ON public.hmis_csv_2022_inventories USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateProvided_idx1"; -- --- Name: hmiscsv2022inventories_TTYE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_TTYE" ON public.hmis_csv_2022_inventories USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateProvided_idx2"; -- --- Name: hmiscsv2022inventories_UVsK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_UVsK" ON public.hmis_csv_2022_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateProvided_idx3"; -- --- Name: hmiscsv2022inventories_Xkhg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_Xkhg" ON public.hmis_csv_2022_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateProvided_idx4"; -- --- Name: hmiscsv2022inventories_bqiF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_bqiF" ON public.hmis_csv_2022_inventories USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateUpdated_idx"; -- --- Name: hmiscsv2022inventories_ctyg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022inventories_ctyg ON public.hmis_csv_2022_inventories USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateUpdated_idx1"; -- --- Name: hmiscsv2022inventories_f8rb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022inventories_f8rb ON public.hmis_csv_2022_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateUpdated_idx2"; -- --- Name: hmiscsv2022inventories_h8H6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_h8H6" ON public.hmis_csv_2022_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateUpdated_idx3"; -- --- Name: hmiscsv2022inventories_hcBa; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_hcBa" ON public.hmis_csv_2022_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_DateUpdated_idx4"; -- --- Name: hmiscsv2022inventories_hpp8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022inventories_hpp8 ON public.hmis_csv_2022_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx"; -- --- Name: hmiscsv2022inventories_hu1F; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_hu1F" ON public.hmis_csv_2022_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx1"; -- --- Name: hmiscsv2022inventories_nYsR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_nYsR" ON public.hmis_csv_2022_inventories USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx2"; -- --- Name: hmiscsv2022inventories_pqsZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_pqsZ" ON public.hmis_csv_2022_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx3"; -- --- Name: hmiscsv2022inventories_vHpP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_vHpP" ON public.hmis_csv_2022_inventories USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx4"; -- --- Name: hmiscsv2022inventories_wNmp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_wNmp" ON public.hmis_csv_2022_inventories USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_EnrollmentID_PersonalID_idx5"; -- --- Name: hmiscsv2022inventories_yEox; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_yEox" ON public.hmis_csv_2022_inventories USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_EnrollmentID_idx"; -- --- Name: hmiscsv2022inventories_yqNs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022inventories_yqNs" ON public.hmis_csv_2022_inventories USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_EnrollmentID_idx1"; -- --- Name: hmiscsv2022organizations_FjV6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022organizations_FjV6" ON public.hmis_csv_2022_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_EnrollmentID_idx2"; -- --- Name: hmiscsv2022organizations_LnYR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022organizations_LnYR" ON public.hmis_csv_2022_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_EnrollmentID_idx3"; -- --- Name: hmiscsv2022organizations_P9WD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022organizations_P9WD" ON public.hmis_csv_2022_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_EnrollmentID_idx4"; -- --- Name: hmiscsv2022organizations_PW7F; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022organizations_PW7F" ON public.hmis_csv_2022_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_ExportID_idx"; -- --- Name: hmiscsv2022organizations_Q2CY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022organizations_Q2CY" ON public.hmis_csv_2022_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_ExportID_idx1"; -- --- Name: hmiscsv2022organizations_SBB6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022organizations_SBB6" ON public.hmis_csv_2022_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_ExportID_idx2"; -- --- Name: hmiscsv2022organizations_eKN2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022organizations_eKN2" ON public.hmis_csv_2022_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_ExportID_idx3"; -- --- Name: hmiscsv2022organizations_gmSL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022organizations_gmSL" ON public.hmis_csv_2022_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_ExportID_idx4"; -- --- Name: hmiscsv2022organizations_qR0a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022organizations_qR0a" ON public.hmis_csv_2022_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_PersonalID_idx"; -- --- Name: hmiscsv2022organizations_uD5T; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022organizations_uD5T" ON public.hmis_csv_2022_organizations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_PersonalID_idx1"; -- --- Name: hmiscsv2022projectcocs_0mWW; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_0mWW" ON public.hmis_csv_2022_project_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_PersonalID_idx2"; -- --- Name: hmiscsv2022projectcocs_7QwC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_7QwC" ON public.hmis_csv_2022_project_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_PersonalID_idx3"; -- --- Name: hmiscsv2022projectcocs_7coH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_7coH" ON public.hmis_csv_2022_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_PersonalID_idx4"; -- --- Name: hmiscsv2022projectcocs_F3r0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_F3r0" ON public.hmis_csv_2022_project_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx"; -- --- Name: hmiscsv2022projectcocs_Jfub; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_Jfub" ON public.hmis_csv_2022_project_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx1"; -- --- Name: hmiscsv2022projectcocs_KMu5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_KMu5" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx2"; -- --- Name: hmiscsv2022projectcocs_KccU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_KccU" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx3"; -- --- Name: hmiscsv2022projectcocs_QHMr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_QHMr" ON public.hmis_csv_2022_project_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_DateDeleted_idx4"; -- --- Name: hmiscsv2022projectcocs_R2Yn; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_R2Yn" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_DateProvided_idx"; -- --- Name: hmiscsv2022projectcocs_XKYG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_XKYG" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_DateProvided_idx1"; -- --- Name: hmiscsv2022projectcocs_ZaMC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_ZaMC" ON public.hmis_csv_2022_project_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_DateProvided_idx2"; -- --- Name: hmiscsv2022projectcocs_Zv8Z; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_Zv8Z" ON public.hmis_csv_2022_project_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_DateProvided_idx3"; -- --- Name: hmiscsv2022projectcocs_ZwP7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_ZwP7" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_DateProvided_idx4"; -- --- Name: hmiscsv2022projectcocs_fHPb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_fHPb" ON public.hmis_csv_2022_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_idx"; -- --- Name: hmiscsv2022projectcocs_gMun; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_gMun" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_idx1"; -- --- Name: hmiscsv2022projectcocs_haHj; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_haHj" ON public.hmis_csv_2022_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_idx2"; -- --- Name: hmiscsv2022projectcocs_hhqc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022projectcocs_hhqc ON public.hmis_csv_2022_project_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_idx3"; -- --- Name: hmiscsv2022projectcocs_jWiU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_jWiU" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_RecordType_idx4"; -- --- Name: hmiscsv2022projectcocs_lfWt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_lfWt" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_ServicesID_data_source_id_idx"; -- --- Name: hmiscsv2022projectcocs_mLOc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_mLOc" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_ServicesID_idx"; -- --- Name: hmiscsv2022projectcocs_rI43; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_rI43" ON public.hmis_csv_2022_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_ServicesID_idx1"; -- --- Name: hmiscsv2022projectcocs_snwr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022projectcocs_snwr ON public.hmis_csv_2022_project_cocs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_ServicesID_idx2"; -- --- Name: hmiscsv2022projectcocs_toVK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_toVK" ON public.hmis_csv_2022_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_ServicesID_idx3"; -- --- Name: hmiscsv2022projectcocs_uGEA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_uGEA" ON public.hmis_csv_2022_project_cocs USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_51_ServicesID_idx4"; -- --- Name: hmiscsv2022projectcocs_xNgm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projectcocs_xNgm" ON public.hmis_csv_2022_project_cocs USING btree ("DateUpdated"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_51_importer_log_id_idx; -- --- Name: hmiscsv2022projects_6pjf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022projects_6pjf ON public.hmis_csv_2022_projects USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_51_pkey; -- --- Name: hmiscsv2022projects_AZRv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_51_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_AZRv" ON public.hmis_csv_2022_projects USING btree ("ProjectID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_51_source_type_source_id_idx; -- --- Name: hmiscsv2022projects_BNpw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_BNpw" ON public.hmis_csv_2022_projects USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateCreated_idx"; -- --- Name: hmiscsv2022projects_BcGz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_BcGz" ON public.hmis_csv_2022_projects USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateCreated_idx1"; -- --- Name: hmiscsv2022projects_CR7E; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_CR7E" ON public.hmis_csv_2022_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateCreated_idx2"; -- --- Name: hmiscsv2022projects_CrgU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_CrgU" ON public.hmis_csv_2022_projects USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateCreated_idx3"; -- --- Name: hmiscsv2022projects_EFMI; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_EFMI" ON public.hmis_csv_2022_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateCreated_idx4"; -- --- Name: hmiscsv2022projects_EHcK; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_EHcK" ON public.hmis_csv_2022_projects USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateDeleted_idx"; -- --- Name: hmiscsv2022projects_FH4m; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_FH4m" ON public.hmis_csv_2022_projects USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateDeleted_idx1"; -- --- Name: hmiscsv2022projects_K1UM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_K1UM" ON public.hmis_csv_2022_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateDeleted_idx2"; -- --- Name: hmiscsv2022projects_K1g9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_K1g9" ON public.hmis_csv_2022_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateDeleted_idx3"; -- --- Name: hmiscsv2022projects_LGTq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_LGTq" ON public.hmis_csv_2022_projects USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateDeleted_idx4"; -- --- Name: hmiscsv2022projects_Oc0U; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_Oc0U" ON public.hmis_csv_2022_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateProvided_idx"; -- --- Name: hmiscsv2022projects_Oj9G; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_Oj9G" ON public.hmis_csv_2022_projects USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateProvided_idx1"; -- --- Name: hmiscsv2022projects_OtF6; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_OtF6" ON public.hmis_csv_2022_projects USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateProvided_idx2"; -- --- Name: hmiscsv2022projects_QkSr; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_QkSr" ON public.hmis_csv_2022_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateProvided_idx3"; -- --- Name: hmiscsv2022projects_VzMf; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_VzMf" ON public.hmis_csv_2022_projects USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateProvided_idx4"; -- --- Name: hmiscsv2022projects_fGby; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_fGby" ON public.hmis_csv_2022_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateUpdated_idx"; -- --- Name: hmiscsv2022projects_ftTe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_ftTe" ON public.hmis_csv_2022_projects USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateUpdated_idx1"; -- --- Name: hmiscsv2022projects_jgtt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022projects_jgtt ON public.hmis_csv_2022_projects USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateUpdated_idx2"; -- --- Name: hmiscsv2022projects_oatJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_oatJ" ON public.hmis_csv_2022_projects USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateUpdated_idx3"; -- --- Name: hmiscsv2022projects_ouoy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022projects_ouoy ON public.hmis_csv_2022_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_DateUpdated_idx4"; -- --- Name: hmiscsv2022projects_qPVR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_qPVR" ON public.hmis_csv_2022_projects USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx"; -- --- Name: hmiscsv2022projects_uN6c; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_uN6c" ON public.hmis_csv_2022_projects USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx1"; -- --- Name: hmiscsv2022projects_yGw1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022projects_yGw1" ON public.hmis_csv_2022_projects USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx2"; -- --- Name: hmiscsv2022services_1kzC; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_1kzC" ON public.hmis_csv_2022_services USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx3"; -- --- Name: hmiscsv2022services_3gBa; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_3gBa" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx4"; -- --- Name: hmiscsv2022services_3wwH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_3wwH" ON public.hmis_csv_2022_services USING btree ("EnrollmentID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_EnrollmentID_PersonalID_idx5"; -- --- Name: hmiscsv2022services_4qG7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_4qG7" ON public.hmis_csv_2022_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_EnrollmentID_idx"; -- --- Name: hmiscsv2022services_53sL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_53sL" ON public.hmis_csv_2022_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_EnrollmentID_idx1"; -- --- Name: hmiscsv2022services_68n9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022services_68n9 ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_EnrollmentID_idx2"; -- --- Name: hmiscsv2022services_732S; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_732S" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_EnrollmentID_idx3"; -- --- Name: hmiscsv2022services_78KE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_78KE" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_EnrollmentID_idx4"; -- --- Name: hmiscsv2022services_9Ain; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_9Ain" ON public.hmis_csv_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_ExportID_idx"; -- --- Name: hmiscsv2022services_AGvJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_AGvJ" ON public.hmis_csv_2022_services USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_ExportID_idx1"; -- --- Name: hmiscsv2022services_AMYt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_AMYt" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_ExportID_idx2"; -- --- Name: hmiscsv2022services_BZI2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_BZI2" ON public.hmis_csv_2022_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_ExportID_idx3"; -- --- Name: hmiscsv2022services_BbIE; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_BbIE" ON public.hmis_csv_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_ExportID_idx4"; -- --- Name: hmiscsv2022services_Bo1g; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_Bo1g" ON public.hmis_csv_2022_services USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_PersonalID_idx"; -- --- Name: hmiscsv2022services_D39O; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_D39O" ON public.hmis_csv_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_PersonalID_idx1"; -- --- Name: hmiscsv2022services_E4Js; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_E4Js" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_PersonalID_idx2"; -- --- Name: hmiscsv2022services_EtU3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_EtU3" ON public.hmis_csv_2022_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_PersonalID_idx3"; -- --- Name: hmiscsv2022services_FnGv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_FnGv" ON public.hmis_csv_2022_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_PersonalID_idx4"; -- --- Name: hmiscsv2022services_G0rQ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_G0rQ" ON public.hmis_csv_2022_services USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx"; -- --- Name: hmiscsv2022services_HfxJ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_HfxJ" ON public.hmis_csv_2022_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx1"; -- --- Name: hmiscsv2022services_IyZM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_IyZM" ON public.hmis_csv_2022_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx2"; -- --- Name: hmiscsv2022services_JOKs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_JOKs" ON public.hmis_csv_2022_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx3"; -- --- Name: hmiscsv2022services_JiC3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_JiC3" ON public.hmis_csv_2022_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_DateDeleted_idx4"; -- --- Name: hmiscsv2022services_K7Zt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_K7Zt" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_DateProvided_idx"; -- --- Name: hmiscsv2022services_Ke4l; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_Ke4l" ON public.hmis_csv_2022_services USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_DateProvided_idx1"; -- --- Name: hmiscsv2022services_LD3i; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_LD3i" ON public.hmis_csv_2022_services USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_DateProvided_idx2"; -- --- Name: hmiscsv2022services_LJSD; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_LJSD" ON public.hmis_csv_2022_services USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_DateProvided_idx3"; -- --- Name: hmiscsv2022services_Lk4w; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_Lk4w" ON public.hmis_csv_2022_services USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_DateProvided_idx4"; -- --- Name: hmiscsv2022services_MBfF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_MBfF" ON public.hmis_csv_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_idx"; -- --- Name: hmiscsv2022services_NI7r; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_NI7r" ON public.hmis_csv_2022_services USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_idx1"; -- --- Name: hmiscsv2022services_OCo1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_OCo1" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_idx2"; -- --- Name: hmiscsv2022services_Owsi; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_Owsi" ON public.hmis_csv_2022_services USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_idx3"; -- --- Name: hmiscsv2022services_PZaU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_PZaU" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_RecordType_idx4"; -- --- Name: hmiscsv2022services_QQPx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_QQPx" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_ServicesID_data_source_id_idx"; -- --- Name: hmiscsv2022services_RLdg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_RLdg" ON public.hmis_csv_2022_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_ServicesID_idx"; -- --- Name: hmiscsv2022services_U2RZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_U2RZ" ON public.hmis_csv_2022_services USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_ServicesID_idx1"; -- --- Name: hmiscsv2022services_WkLH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_WkLH" ON public.hmis_csv_2022_services USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_ServicesID_idx2"; -- --- Name: hmiscsv2022services_WxH1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_WxH1" ON public.hmis_csv_2022_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_ServicesID_idx3"; -- --- Name: hmiscsv2022services_Xjc3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_Xjc3" ON public.hmis_csv_2022_services USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_52_ServicesID_idx4"; -- --- Name: hmiscsv2022services_Xt15; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_Xt15" ON public.hmis_csv_2022_services USING btree ("DateUpdated"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_52_importer_log_id_idx; -- --- Name: hmiscsv2022services_Zeox; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_Zeox" ON public.hmis_csv_2022_services USING btree ("RecordType"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_52_pkey; -- --- Name: hmiscsv2022services_ZsCG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_52_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_ZsCG" ON public.hmis_csv_2022_services USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_52_source_type_source_id_idx; -- --- Name: hmiscsv2022services_aK50; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_aK50" ON public.hmis_csv_2022_services USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateCreated_idx"; -- --- Name: hmiscsv2022services_cK9O; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_cK9O" ON public.hmis_csv_2022_services USING btree ("PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateCreated_idx1"; -- --- Name: hmiscsv2022services_cOsh; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_cOsh" ON public.hmis_csv_2022_services USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateCreated_idx2"; -- --- Name: hmiscsv2022services_dQSt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_dQSt" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "RecordType", "DateDeleted", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateCreated_idx3"; -- --- Name: hmiscsv2022services_enQH; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_enQH" ON public.hmis_csv_2022_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateCreated_idx4"; -- --- Name: hmiscsv2022services_f0qq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022services_f0qq ON public.hmis_csv_2022_services USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateDeleted_idx"; -- --- Name: hmiscsv2022services_f8LM; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_f8LM" ON public.hmis_csv_2022_services USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateDeleted_idx1"; -- --- Name: hmiscsv2022services_fGnF; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_fGnF" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateDeleted_idx2"; -- --- Name: hmiscsv2022services_gUHS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_gUHS" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateDeleted_idx3"; -- --- Name: hmiscsv2022services_iILP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_iILP" ON public.hmis_csv_2022_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateDeleted_idx4"; -- --- Name: hmiscsv2022services_ipWR; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_ipWR" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateProvided_idx"; -- --- Name: hmiscsv2022services_kUi3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_kUi3" ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateProvided_idx1"; -- --- Name: hmiscsv2022services_lCd2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_lCd2" ON public.hmis_csv_2022_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateProvided_idx2"; -- --- Name: hmiscsv2022services_lbEG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_lbEG" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateProvided_idx3"; -- --- Name: hmiscsv2022services_mIWt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_mIWt" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateProvided_idx4"; -- --- Name: hmiscsv2022services_mSwA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_mSwA" ON public.hmis_csv_2022_services USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateUpdated_idx"; -- --- Name: hmiscsv2022services_n0Bz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_n0Bz" ON public.hmis_csv_2022_services USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateUpdated_idx1"; -- --- Name: hmiscsv2022services_qYm3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_qYm3" ON public.hmis_csv_2022_services USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateUpdated_idx2"; -- --- Name: hmiscsv2022services_s7W3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_s7W3" ON public.hmis_csv_2022_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateUpdated_idx3"; -- --- Name: hmiscsv2022services_t2qL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_t2qL" ON public.hmis_csv_2022_services USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_DateUpdated_idx4"; -- --- Name: hmiscsv2022services_tUIX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_tUIX" ON public.hmis_csv_2022_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx"; -- --- Name: hmiscsv2022services_thj9; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022services_thj9 ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx1"; -- --- Name: hmiscsv2022services_ut9w; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022services_ut9w ON public.hmis_csv_2022_services USING btree ("EnrollmentID", "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx2"; -- --- Name: hmiscsv2022services_wl51; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022services_wl51 ON public.hmis_csv_2022_services USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx3"; -- --- Name: hmiscsv2022services_x0QA; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_x0QA" ON public.hmis_csv_2022_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx4"; -- --- Name: hmiscsv2022services_x32D; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_x32D" ON public.hmis_csv_2022_services USING btree ("RecordType", "DateProvided"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_EnrollmentID_PersonalID_idx5"; -- --- Name: hmiscsv2022services_ytLZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_ytLZ" ON public.hmis_csv_2022_services USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_EnrollmentID_idx"; -- --- Name: hmiscsv2022services_zkJ3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022services_zkJ3" ON public.hmis_csv_2022_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_EnrollmentID_idx1"; -- --- Name: hmiscsv2022users_57c7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022users_57c7 ON public.hmis_csv_2022_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_EnrollmentID_idx2"; -- --- Name: hmiscsv2022users_7hAX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022users_7hAX" ON public.hmis_csv_2022_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_EnrollmentID_idx3"; -- --- Name: hmiscsv2022users_8RTX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022users_8RTX" ON public.hmis_csv_2022_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_EnrollmentID_idx4"; -- --- Name: hmiscsv2022users_9lCp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022users_9lCp" ON public.hmis_csv_2022_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_ExportID_idx"; -- --- Name: hmiscsv2022users_FSU8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022users_FSU8" ON public.hmis_csv_2022_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_ExportID_idx1"; -- --- Name: hmiscsv2022users_MWOa; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022users_MWOa" ON public.hmis_csv_2022_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_ExportID_idx2"; -- --- Name: hmiscsv2022users_T7HY; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022users_T7HY" ON public.hmis_csv_2022_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_ExportID_idx3"; -- --- Name: hmiscsv2022users_ZsWm; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022users_ZsWm" ON public.hmis_csv_2022_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_ExportID_idx4"; -- --- Name: hmiscsv2022users_ut6h; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022users_ut6h ON public.hmis_csv_2022_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_PersonalID_idx"; -- --- Name: hmiscsv2022users_wBZo; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022users_wBZo" ON public.hmis_csv_2022_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_PersonalID_idx1"; -- --- Name: hmiscsv2022users_xDzZ; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022users_xDzZ" ON public.hmis_csv_2022_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_PersonalID_idx2"; -- --- Name: hmiscsv2022youtheducationstatuses_22GP; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_22GP" ON public.hmis_csv_2022_youth_education_statuses USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_PersonalID_idx3"; -- --- Name: hmiscsv2022youtheducationstatuses_27QU; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_27QU" ON public.hmis_csv_2022_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_PersonalID_idx4"; -- --- Name: hmiscsv2022youtheducationstatuses_3wUp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_3wUp" ON public.hmis_csv_2022_youth_education_statuses USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx"; -- --- Name: hmiscsv2022youtheducationstatuses_6Gvz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_6Gvz" ON public.hmis_csv_2022_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx1"; -- --- Name: hmiscsv2022youtheducationstatuses_9UF7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_9UF7" ON public.hmis_csv_2022_youth_education_statuses USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx2"; -- --- Name: hmiscsv2022youtheducationstatuses_9dk3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022youtheducationstatuses_9dk3 ON public.hmis_csv_2022_youth_education_statuses USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx3"; -- --- Name: hmiscsv2022youtheducationstatuses_IQMw; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_IQMw" ON public.hmis_csv_2022_youth_education_statuses USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_DateDeleted_idx4"; -- --- Name: hmiscsv2022youtheducationstatuses_LLFz; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_LLFz" ON public.hmis_csv_2022_youth_education_statuses USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_DateProvided_idx"; -- --- Name: hmiscsv2022youtheducationstatuses_LsJX; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_LsJX" ON public.hmis_csv_2022_youth_education_statuses USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_DateProvided_idx1"; -- --- Name: hmiscsv2022youtheducationstatuses_Msvb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_Msvb" ON public.hmis_csv_2022_youth_education_statuses USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_DateProvided_idx2"; -- --- Name: hmiscsv2022youtheducationstatuses_O5XN; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_O5XN" ON public.hmis_csv_2022_youth_education_statuses USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_DateProvided_idx3"; -- --- Name: hmiscsv2022youtheducationstatuses_P7pk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_P7pk" ON public.hmis_csv_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_DateProvided_idx4"; -- --- Name: hmiscsv2022youtheducationstatuses_PBWg; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_PBWg" ON public.hmis_csv_2022_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_idx"; -- --- Name: hmiscsv2022youtheducationstatuses_PMHG; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_PMHG" ON public.hmis_csv_2022_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_idx1"; -- --- Name: hmiscsv2022youtheducationstatuses_Tv5M; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_Tv5M" ON public.hmis_csv_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_idx2"; -- --- Name: hmiscsv2022youtheducationstatuses_WARO; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_WARO" ON public.hmis_csv_2022_youth_education_statuses USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_idx3"; -- --- Name: hmiscsv2022youtheducationstatuses_eWaV; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_eWaV" ON public.hmis_csv_2022_youth_education_statuses USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_RecordType_idx4"; -- --- Name: hmiscsv2022youtheducationstatuses_fsBL; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_fsBL" ON public.hmis_csv_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_ServicesID_data_source_id_idx"; -- --- Name: hmiscsv2022youtheducationstatuses_g8wl; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022youtheducationstatuses_g8wl ON public.hmis_csv_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_ServicesID_idx"; -- --- Name: hmiscsv2022youtheducationstatuses_hkeS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_hkeS" ON public.hmis_csv_2022_youth_education_statuses USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_ServicesID_idx1"; -- --- Name: hmiscsv2022youtheducationstatuses_nb9y; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2022youtheducationstatuses_nb9y ON public.hmis_csv_2022_youth_education_statuses USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_ServicesID_idx2"; -- --- Name: hmiscsv2022youtheducationstatuses_u98C; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_u98C" ON public.hmis_csv_2022_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_ServicesID_idx3"; -- --- Name: hmiscsv2022youtheducationstatuses_uegS; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_uegS" ON public.hmis_csv_2022_youth_education_statuses USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_53_ServicesID_idx4"; -- --- Name: hmiscsv2022youtheducationstatuses_vPI4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_vPI4" ON public.hmis_csv_2022_youth_education_statuses USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_53_importer_log_id_idx; -- --- Name: hmiscsv2022youtheducationstatuses_xGU1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "hmiscsv2022youtheducationstatuses_xGU1" ON public.hmis_csv_2022_youth_education_statuses USING btree ("YouthEducationStatusID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_53_pkey; -- --- Name: hmiscsv2024assessmentquestions_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_53_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024assessmentquestions_634d ON public.hmis_csv_2024_assessment_questions USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_53_source_type_source_id_idx; -- --- Name: hmiscsv2024assessmentquestions_da04; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024assessmentquestions_da04 ON public.hmis_csv_2024_assessment_questions USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateCreated_idx"; -- --- Name: hmiscsv2024assessmentresults_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024assessmentresults_634d ON public.hmis_csv_2024_assessment_results USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateCreated_idx1"; -- --- Name: hmiscsv2024assessments_4fa0; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024assessments_4fa0 ON public.hmis_csv_2024_assessments USING btree ("AssessmentDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateCreated_idx2"; -- --- Name: hmiscsv2024assessments_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024assessments_634d ON public.hmis_csv_2024_assessments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateCreated_idx3"; -- --- Name: hmiscsv2024assessments_da04; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024assessments_da04 ON public.hmis_csv_2024_assessments USING btree ("AssessmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateCreated_idx4"; -- --- Name: hmiscsv2024ceparticipations_42af; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024ceparticipations_42af ON public.hmis_csv_2024_ce_participations USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateDeleted_idx"; -- --- Name: hmiscsv2024ceparticipations_5a29; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024ceparticipations_5a29 ON public.hmis_csv_2024_ce_participations USING btree ("CEParticipationID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateDeleted_idx1"; -- --- Name: hmiscsv2024ceparticipations_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024ceparticipations_634d ON public.hmis_csv_2024_ce_participations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateDeleted_idx2"; -- --- Name: hmiscsv2024clients_20a8; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024clients_20a8 ON public.hmis_csv_2024_clients USING btree ("VeteranStatus"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateDeleted_idx3"; -- --- Name: hmiscsv2024clients_603f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024clients_603f ON public.hmis_csv_2024_clients USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateDeleted_idx4"; -- --- Name: hmiscsv2024clients_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024clients_634d ON public.hmis_csv_2024_clients USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateProvided_idx"; -- --- Name: hmiscsv2024currentlivingsituations_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024currentlivingsituations_634d ON public.hmis_csv_2024_current_living_situations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateProvided_idx1"; -- --- Name: hmiscsv2024currentlivingsituations_c1ef; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024currentlivingsituations_c1ef ON public.hmis_csv_2024_current_living_situations USING btree ("CurrentLivingSitID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateProvided_idx2"; -- --- Name: hmiscsv2024currentlivingsituations_d718; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024currentlivingsituations_d718 ON public.hmis_csv_2024_current_living_situations USING btree ("CurrentLivingSituation"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateProvided_idx3"; -- --- Name: hmiscsv2024disabilities_1873; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024disabilities_1873 ON public.hmis_csv_2024_disabilities USING btree ("DisabilitiesID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateProvided_idx4"; -- --- Name: hmiscsv2024disabilities_4337; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024disabilities_4337 ON public.hmis_csv_2024_disabilities USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateUpdated_idx"; -- --- Name: hmiscsv2024disabilities_603f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024disabilities_603f ON public.hmis_csv_2024_disabilities USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateUpdated_idx1"; -- --- Name: hmiscsv2024disabilities_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024disabilities_634d ON public.hmis_csv_2024_disabilities USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateUpdated_idx2"; -- --- Name: hmiscsv2024employmenteducations_350e; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024employmenteducations_350e ON public.hmis_csv_2024_employment_educations USING btree ("EmploymentEducationID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateUpdated_idx3"; -- --- Name: hmiscsv2024employmenteducations_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024employmenteducations_634d ON public.hmis_csv_2024_employment_educations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_DateUpdated_idx4"; -- --- Name: hmiscsv2024enrollments_3085; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_3085 ON public.hmis_csv_2024_enrollments USING btree ("PreviousStreetESSH", "LengthOfStay"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx"; -- --- Name: hmiscsv2024enrollments_34e3; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_34e3 ON public.hmis_csv_2024_enrollments USING btree ("EnrollmentID", "ProjectID", "EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx1"; -- --- Name: hmiscsv2024enrollments_42af; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_42af ON public.hmis_csv_2024_enrollments USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx2"; -- --- Name: hmiscsv2024enrollments_4337; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_4337 ON public.hmis_csv_2024_enrollments USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx3"; -- --- Name: hmiscsv2024enrollments_44c4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_44c4 ON public.hmis_csv_2024_enrollments USING btree ("MonthsHomelessPastThreeYears") INCLUDE ("EnrollmentID", "LivingSituation", "PreviousStreetESSH"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx4"; -- --- Name: hmiscsv2024enrollments_4685; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_4685 ON public.hmis_csv_2024_enrollments USING btree ("LengthOfStay") INCLUDE ("EnrollmentID"); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_EnrollmentID_PersonalID_idx5"; -- --- Name: hmiscsv2024enrollments_5d40; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_5d40 ON public.hmis_csv_2024_enrollments USING btree ("HouseholdID", "DateDeleted", "EntryDate", "RelationshipToHoH") INCLUDE ("EnrollmentID", "PersonalID", "DisablingCondition"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_EnrollmentID_idx"; -- --- Name: hmiscsv2024enrollments_6191; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_6191 ON public.hmis_csv_2024_enrollments USING btree ("EntryDate") INCLUDE ("EnrollmentID", "ProjectID", "HouseholdID", "RelationshipToHoH", "DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_EnrollmentID_idx1"; -- --- Name: hmiscsv2024enrollments_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_634d ON public.hmis_csv_2024_enrollments USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_EnrollmentID_idx2"; -- --- Name: hmiscsv2024enrollments_821a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_821a ON public.hmis_csv_2024_enrollments USING btree ("LivingSituation") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_EnrollmentID_idx3"; -- --- Name: hmiscsv2024enrollments_89e7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_89e7 ON public.hmis_csv_2024_enrollments USING btree ("HouseholdID", "DateDeleted", "RelationshipToHoH") INCLUDE ("EnrollmentID", "PersonalID", "EntryDate", "DisablingCondition"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_EnrollmentID_idx4"; -- --- Name: hmiscsv2024enrollments_8d5c; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_8d5c ON public.hmis_csv_2024_enrollments USING btree ("DateDeleted", "RelationshipToHoH") INCLUDE ("EnrollmentID", "PersonalID", "EntryDate", "HouseholdID", "DisablingCondition"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_ExportID_idx"; -- --- Name: hmiscsv2024enrollments_9005; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_9005 ON public.hmis_csv_2024_enrollments USING btree ("ProjectID", "RelationshipToHoH", "DateDeleted") INCLUDE ("EnrollmentID", "PersonalID", "EntryDate", "HouseholdID", "MoveInDate"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_ExportID_idx1"; -- --- Name: hmiscsv2024enrollments_c321; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_c321 ON public.hmis_csv_2024_enrollments USING btree ("TimesHomelessPastThreeYears", "MonthsHomelessPastThreeYears") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_ExportID_idx2"; -- --- Name: hmiscsv2024enrollments_c3b4; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_c3b4 ON public.hmis_csv_2024_enrollments USING btree ("RelationshipToHoH", "DateDeleted") INCLUDE ("EnrollmentID", "PersonalID", "ProjectID", "EntryDate", "HouseholdID", "MoveInDate", "DisablingCondition"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_ExportID_idx3"; -- --- Name: hmiscsv2024enrollments_c830; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_c830 ON public.hmis_csv_2024_enrollments USING btree ("DateDeleted", "EntryDate") INCLUDE ("EnrollmentID", "HouseholdID", "ProjectID", "RelationshipToHoH"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_ExportID_idx4"; -- --- Name: hmiscsv2024enrollments_ea7f; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_ea7f ON public.hmis_csv_2024_enrollments USING btree ("HouseholdID", "RelationshipToHoH", "DateDeleted") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_PersonalID_idx"; -- --- Name: hmiscsv2024enrollments_f3a2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_f3a2 ON public.hmis_csv_2024_enrollments USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_PersonalID_idx1"; -- --- Name: hmiscsv2024enrollments_fbbd; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024enrollments_fbbd ON public.hmis_csv_2024_enrollments USING btree ("MoveInDate") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_PersonalID_idx2"; -- --- Name: hmiscsv2024events_4337; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024events_4337 ON public.hmis_csv_2024_events USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_PersonalID_idx3"; -- --- Name: hmiscsv2024events_5251; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024events_5251 ON public.hmis_csv_2024_events USING btree ("EventID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_PersonalID_idx4"; -- --- Name: hmiscsv2024events_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024events_634d ON public.hmis_csv_2024_events USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx"; -- --- Name: hmiscsv2024events_ab19; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024events_ab19 ON public.hmis_csv_2024_events USING btree ("EventDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx1"; -- --- Name: hmiscsv2024exits_13dc; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024exits_13dc ON public.hmis_csv_2024_exits USING btree ("ExitDate", "Destination") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx2"; -- --- Name: hmiscsv2024exits_42d5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024exits_42d5 ON public.hmis_csv_2024_exits USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx3"; -- --- Name: hmiscsv2024exits_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024exits_634d ON public.hmis_csv_2024_exits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_DateDeleted_idx4"; -- --- Name: hmiscsv2024exits_6f2b; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024exits_6f2b ON public.hmis_csv_2024_exits USING btree ("ExitID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_DateProvided_idx"; -- --- Name: hmiscsv2024exits_f3a2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024exits_f3a2 ON public.hmis_csv_2024_exits USING btree ("DateDeleted") INCLUDE ("EnrollmentID", "ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_DateProvided_idx1"; -- --- Name: hmiscsv2024exits_fa9a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024exits_fa9a ON public.hmis_csv_2024_exits USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_DateProvided_idx2"; -- --- Name: hmiscsv2024funders_4657; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024funders_4657 ON public.hmis_csv_2024_funders USING btree ("FunderID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_DateProvided_idx3"; -- --- Name: hmiscsv2024funders_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024funders_634d ON public.hmis_csv_2024_funders USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_DateProvided_idx4"; -- --- Name: hmiscsv2024healthanddvs_1329; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024healthanddvs_1329 ON public.hmis_csv_2024_health_and_dvs USING btree ("HealthAndDVID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_idx"; -- --- Name: hmiscsv2024healthanddvs_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024healthanddvs_634d ON public.hmis_csv_2024_health_and_dvs USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_idx1"; -- --- Name: hmiscsv2024hmisparticipations_42af; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024hmisparticipations_42af ON public.hmis_csv_2024_hmis_participations USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_idx2"; -- --- Name: hmiscsv2024hmisparticipations_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024hmisparticipations_634d ON public.hmis_csv_2024_hmis_participations USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_idx3"; -- --- Name: hmiscsv2024incomebenefits_16c2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024incomebenefits_16c2 ON public.hmis_csv_2024_income_benefits USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_RecordType_idx4"; -- --- Name: hmiscsv2024incomebenefits_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024incomebenefits_634d ON public.hmis_csv_2024_income_benefits USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_ServicesID_data_source_id_idx"; -- --- Name: hmiscsv2024incomebenefits_ae8d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024incomebenefits_ae8d ON public.hmis_csv_2024_income_benefits USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_ServicesID_idx"; -- --- Name: hmiscsv2024incomebenefits_f5f5; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024incomebenefits_f5f5 ON public.hmis_csv_2024_income_benefits USING btree ("IncomeBenefitsID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_ServicesID_idx1"; -- --- Name: hmiscsv2024inventories_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024inventories_634d ON public.hmis_csv_2024_inventories USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_ServicesID_idx2"; -- --- Name: hmiscsv2024inventories_9529; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024inventories_9529 ON public.hmis_csv_2024_inventories USING btree ("InventoryID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_ServicesID_idx3"; -- --- Name: hmiscsv2024organizations_b19d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024organizations_b19d ON public.hmis_csv_2024_organizations USING btree ("OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_54_ServicesID_idx4"; -- --- Name: hmiscsv2024projectcocs_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024projectcocs_634d ON public.hmis_csv_2024_project_cocs USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_54_importer_log_id_idx; -- --- Name: hmiscsv2024projectcocs_787b; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024projectcocs_787b ON public.hmis_csv_2024_project_cocs USING btree ("ProjectCoCID"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_54_pkey; -- --- Name: hmiscsv2024projects_42af; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_54_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024projects_42af ON public.hmis_csv_2024_projects USING btree ("ProjectID"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_54_source_type_source_id_idx; -- --- Name: hmiscsv2024services_237b; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024services_237b ON public.hmis_csv_2024_services USING btree ("RecordType"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateCreated_idx"; -- --- Name: hmiscsv2024services_3444; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024services_3444 ON public.hmis_csv_2024_services USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateCreated_idx1"; -- --- Name: hmiscsv2024services_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024services_634d ON public.hmis_csv_2024_services USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateCreated_idx2"; -- --- Name: hmiscsv2024services_6415; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024services_6415 ON public.hmis_csv_2024_services USING btree ("ServicesID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateCreated_idx3"; -- --- Name: hmiscsv2024services_8dbb; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024services_8dbb ON public.hmis_csv_2024_services USING btree ("RecordType", "DateDeleted", "DateProvided") INCLUDE ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateCreated_idx4"; -- --- Name: hmiscsv2024services_9c1a; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024services_9c1a ON public.hmis_csv_2024_services USING btree ("EnrollmentID", "RecordType", "DateDeleted") INCLUDE ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateDeleted_idx"; -- --- Name: hmiscsv2024services_f3a2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024services_f3a2 ON public.hmis_csv_2024_services USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateDeleted_idx1"; -- --- Name: hmiscsv2024users_57c7; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024users_57c7 ON public.hmis_csv_2024_users USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateDeleted_idx2"; -- --- Name: hmiscsv2024users_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024users_634d ON public.hmis_csv_2024_users USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateDeleted_idx3"; -- --- Name: hmiscsv2024youtheducationstatuses_6049; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024youtheducationstatuses_6049 ON public.hmis_csv_2024_youth_education_statuses USING btree ("YouthEducationStatusID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateDeleted_idx4"; -- --- Name: hmiscsv2024youtheducationstatuses_634d; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024youtheducationstatuses_634d ON public.hmis_csv_2024_youth_education_statuses USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateProvided_idx"; -- --- Name: hmiscsv2024youtheducationstatuses_fabe; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX hmiscsv2024youtheducationstatuses_fabe ON public.hmis_csv_2024_youth_education_statuses USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateProvided_idx1"; -- --- Name: household_id_rsh_index; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX household_id_rsh_index ON public.recent_service_history USING btree (household_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateProvided_idx2"; -- --- Name: hud_path_client_conflict_columns; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX hud_path_client_conflict_columns ON public.hud_report_path_clients USING btree (report_instance_id, data_source_id, client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateProvided_idx3"; -- --- Name: hud_pit_client_conflict_columns; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX hud_pit_client_conflict_columns ON public.hud_report_pit_clients USING btree (report_instance_id, data_source_id, client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateProvided_idx4"; -- --- Name: hud_report_hic_funders_uniqueness_constraint; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX hud_report_hic_funders_uniqueness_constraint ON public.hud_report_hic_funders USING btree ("FunderID", data_source_id, report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateUpdated_idx"; -- --- Name: hud_report_hic_inventories_uniqueness_constraint; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX hud_report_hic_inventories_uniqueness_constraint ON public.hud_report_hic_inventories USING btree ("InventoryID", data_source_id, report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateUpdated_idx1"; -- --- Name: hud_report_hic_organizations_uniqueness_constraint; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX hud_report_hic_organizations_uniqueness_constraint ON public.hud_report_hic_organizations USING btree ("OrganizationID", data_source_id, report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateUpdated_idx2"; -- --- Name: hud_report_hic_project_cocs_uniqueness_constraint; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX hud_report_hic_project_cocs_uniqueness_constraint ON public.hud_report_hic_project_cocs USING btree ("ProjectCoCID", data_source_id, report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateUpdated_idx3"; -- --- Name: hud_report_hic_projects_uniqueness_constraint; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX hud_report_hic_projects_uniqueness_constraint ON public.hud_report_hic_projects USING btree ("ProjectID", data_source_id, report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_DateUpdated_idx4"; -- --- Name: id_ret_index; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX id_ret_index ON public.recent_report_enrollments USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx"; -- --- Name: id_rsh_index; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX id_rsh_index ON public.recent_service_history USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx1"; -- --- Name: idxCustomCaseNoteOnID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "idxCustomCaseNoteOnID" ON public."CustomCaseNote" USING btree (data_source_id, "CustomCaseNoteID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx2"; -- --- Name: idx_CustomDataElementDefinitions_1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "idx_CustomDataElementDefinitions_1" ON public."CustomDataElementDefinitions" USING btree (form_definition_identifier); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx3"; -- --- Name: idx_any_stage; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_any_stage ON public."IncomeBenefits" USING btree ("IncomeFromAnySource", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx4"; -- --- Name: idx_cibs_p_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_cibs_p_id_ds_id ON public.custom_imports_b_services_rows USING btree (personal_id, data_source_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_EnrollmentID_PersonalID_idx5"; -- --- Name: idx_client_custom_names_full_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_client_custom_names_full_idx ON public."CustomClientName" USING gin (search_name_full public.gin_trgm_ops); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_EnrollmentID_idx"; -- --- Name: idx_client_custom_names_last_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_client_custom_names_last_idx ON public."CustomClientName" USING gin (search_name_last public.gin_trgm_ops); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_EnrollmentID_idx1"; -- --- Name: idx_client_name_full_gin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_client_name_full_gin ON public."Client" USING gin (search_name_full public.gin_trgm_ops); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_EnrollmentID_idx2"; -- --- Name: idx_client_name_last_gin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_client_name_last_gin ON public."Client" USING gin (search_name_last public.gin_trgm_ops); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_EnrollmentID_idx3"; -- --- Name: idx_dis_p_id_e_id_del_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_dis_p_id_e_id_del_ds_id ON public."Disabilities" USING btree ("EnrollmentID", "PersonalID", "DateDeleted", data_source_id) WHERE ("IndefiniteAndImpairs" = 1); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_EnrollmentID_idx4"; -- --- Name: idx_earned_stage; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_earned_stage ON public."IncomeBenefits" USING btree ("Earned", "DataCollectionStage"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_ExportID_idx"; -- --- Name: idx_enrollment_ds_id_hh_id_p_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_enrollment_ds_id_hh_id_p_id ON public."Enrollment" USING btree (data_source_id, "HouseholdID", "ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_ExportID_idx1"; -- --- Name: idx_fed_census_acc_on_geo_measure; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_fed_census_acc_on_geo_measure ON public.federal_census_breakdowns USING btree (accurate_on, geography, geography_level, measure); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_ExportID_idx2"; -- --- Name: idx_hmis_2020_affiliations_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_affiliations_imid_du ON public.hmis_2020_affiliations USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_ExportID_idx3"; -- --- Name: idx_hmis_2020_assessment_results_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_assessment_results_imid_du ON public.hmis_2020_assessment_results USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_ExportID_idx4"; -- --- Name: idx_hmis_2020_assessments_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_assessments_imid_du ON public.hmis_2020_assessments USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_PersonalID_idx"; -- --- Name: idx_hmis_2020_clients_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_clients_imid_du ON public.hmis_2020_clients USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_PersonalID_idx1"; -- --- Name: idx_hmis_2020_current_living_situations_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_current_living_situations_imid_du ON public.hmis_2020_current_living_situations USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_PersonalID_idx2"; -- --- Name: idx_hmis_2020_disabilities_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_disabilities_imid_du ON public.hmis_2020_disabilities USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_PersonalID_idx3"; -- --- Name: idx_hmis_2020_employment_educations_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_employment_educations_imid_du ON public.hmis_2020_employment_educations USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_PersonalID_idx4"; -- --- Name: idx_hmis_2020_enrollment_cocs_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_enrollment_cocs_imid_du ON public.hmis_2020_enrollment_cocs USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx"; -- --- Name: idx_hmis_2020_enrollments_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_enrollments_imid_du ON public.hmis_2020_enrollments USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx1"; -- --- Name: idx_hmis_2020_exits_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_exits_imid_du ON public.hmis_2020_exits USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx2"; -- --- Name: idx_hmis_2020_funders_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_funders_imid_du ON public.hmis_2020_funders USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx3"; -- --- Name: idx_hmis_2020_health_and_dvs_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_health_and_dvs_imid_du ON public.hmis_2020_health_and_dvs USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_DateDeleted_idx4"; -- --- Name: idx_hmis_2020_income_benefits_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_income_benefits_imid_du ON public.hmis_2020_income_benefits USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_DateProvided_idx"; -- --- Name: idx_hmis_2020_inventories_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_inventories_imid_du ON public.hmis_2020_inventories USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_DateProvided_idx1"; -- --- Name: idx_hmis_2020_organizations_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_organizations_imid_du ON public.hmis_2020_organizations USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_DateProvided_idx2"; -- --- Name: idx_hmis_2020_project_cocs_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_project_cocs_imid_du ON public.hmis_2020_project_cocs USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_DateProvided_idx3"; -- --- Name: idx_hmis_2020_projects_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_projects_imid_du ON public.hmis_2020_projects USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_DateProvided_idx4"; -- --- Name: idx_hmis_2020_services_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_services_imid_du ON public.hmis_2020_services USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_idx"; -- --- Name: idx_hmis_2020_users_imid_du; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_2020_users_imid_du ON public.hmis_2020_users USING btree (importer_log_id, "DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_idx1"; -- --- Name: idx_hmis_external_referral_hms_on_referral_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_external_referral_hms_on_referral_id ON public.hmis_external_referral_household_members USING btree (referral_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_idx2"; -- --- Name: idx_hmis_external_referral_postings_on_request_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_external_referral_postings_on_request_id ON public.hmis_external_referral_postings USING btree (referral_request_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_idx3"; -- --- Name: idx_hmis_external_referral_postings_user_1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_external_referral_postings_user_1 ON public.hmis_external_referral_postings USING btree (status_updated_by_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_RecordType_idx4"; -- --- Name: idx_hmis_external_referral_postings_user_2; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_hmis_external_referral_postings_user_2 ON public.hmis_external_referral_postings USING btree (status_note_updated_by_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_ServicesID_data_source_id_idx"; -- --- Name: idx_inbound_api_configurations_uniq; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX idx_inbound_api_configurations_uniq ON public.inbound_api_configurations USING btree (internal_system_id, external_system_name, version); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_ServicesID_idx"; -- --- Name: idx_services_hud_types; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX idx_services_hud_types ON public."Services" USING btree ("RecordType", "TypeProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_ServicesID_idx1"; -- --- Name: idx_tpc_uniqueness; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX idx_tpc_uniqueness ON public.enrollment_extras USING btree (hud_enrollment_id, entry_date, vispdat_ended_at, project_name, agency_name, community, data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_ServicesID_idx2"; -- --- Name: income_benefits_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX income_benefits_date_created ON public."IncomeBenefits" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_ServicesID_idx3"; -- --- Name: income_benefits_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX income_benefits_date_updated ON public."IncomeBenefits" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_55_ServicesID_idx4"; -- --- Name: income_benefits_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX income_benefits_export_id ON public."IncomeBenefits" USING btree ("ExportID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_55_importer_log_id_idx; -- --- Name: index_Affiliation_on_AffiliationID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_Affiliation_on_AffiliationID_and_data_source_id" ON public."Affiliation" USING btree ("AffiliationID", data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_55_pkey; -- --- Name: index_Affiliation_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_55_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Affiliation_on_DateDeleted_and_data_source_id" ON public."Affiliation" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_55_source_type_source_id_idx; -- --- Name: index_Affiliation_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Affiliation_on_data_source_id" ON public."Affiliation" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateCreated_idx"; -- --- Name: index_Affiliation_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Affiliation_on_pending_date_deleted" ON public."Affiliation" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateCreated_idx1"; -- --- Name: index_AssessmentQuestions_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_AssessmentQuestions_on_pending_date_deleted" ON public."AssessmentQuestions" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateCreated_idx2"; -- --- Name: index_AssessmentResults_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_AssessmentResults_on_pending_date_deleted" ON public."AssessmentResults" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateCreated_idx3"; -- --- Name: index_Assessment_on_AssessmentID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_Assessment_on_AssessmentID_and_data_source_id" ON public."Assessment" USING btree ("AssessmentID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateCreated_idx4"; -- --- Name: index_Assessment_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Assessment_on_pending_date_deleted" ON public."Assessment" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateDeleted_idx"; -- --- Name: index_CEParticipation_on_CEParticipationID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CEParticipation_on_CEParticipationID" ON public."CEParticipation" USING btree ("CEParticipationID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateDeleted_idx1"; -- --- Name: index_CEParticipation_on_ProjectID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CEParticipation_on_ProjectID" ON public."CEParticipation" USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateDeleted_idx2"; -- --- Name: index_Client_on_AmIndAKNative; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_AmIndAKNative" ON public."Client" USING btree ("AmIndAKNative"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateDeleted_idx3"; -- --- Name: index_Client_on_Asian; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_Asian" ON public."Client" USING btree ("Asian"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateDeleted_idx4"; -- --- Name: index_Client_on_BlackAfAmerican; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_BlackAfAmerican" ON public."Client" USING btree ("BlackAfAmerican"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateProvided_idx"; -- --- Name: index_Client_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_DateDeleted_and_data_source_id" ON public."Client" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateProvided_idx1"; -- --- Name: index_Client_on_Female; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_Female" ON public."Client" USING btree ("Female"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateProvided_idx2"; -- --- Name: index_Client_on_GenderNone; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_GenderNone" ON public."Client" USING btree ("GenderNone"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateProvided_idx3"; -- --- Name: index_Client_on_Male; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_Male" ON public."Client" USING btree ("Male"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateProvided_idx4"; -- --- Name: index_Client_on_NativeHIOtherPacific; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_NativeHIOtherPacific" ON public."Client" USING btree ("NativeHIOtherPacific"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateUpdated_idx"; -- --- Name: index_Client_on_NativeHIPacific; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_NativeHIPacific" ON public."Client" USING btree ("NativeHIPacific"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateUpdated_idx1"; -- --- Name: index_Client_on_NoSingleGender; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_NoSingleGender" ON public."Client" USING btree ("NoSingleGender"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateUpdated_idx2"; -- --- Name: index_Client_on_Questioning; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_Questioning" ON public."Client" USING btree ("Questioning"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateUpdated_idx3"; -- --- Name: index_Client_on_RaceNone; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_RaceNone" ON public."Client" USING btree ("RaceNone"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_DateUpdated_idx4"; -- --- Name: index_Client_on_Transgender; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_Transgender" ON public."Client" USING btree ("Transgender"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx"; -- --- Name: index_Client_on_White; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_White" ON public."Client" USING btree ("White"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx1"; -- --- Name: index_Client_on_creator_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_creator_id" ON public."Client" USING btree (creator_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx2"; -- --- Name: index_Client_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_data_source_id" ON public."Client" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx3"; -- --- Name: index_Client_on_health_housing_navigator_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_health_housing_navigator_id" ON public."Client" USING btree (health_housing_navigator_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx4"; -- --- Name: index_Client_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Client_on_pending_date_deleted" ON public."Client" USING btree (pending_date_deleted); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_EnrollmentID_PersonalID_idx5"; -- --- Name: index_CurrentLivingSituation_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CurrentLivingSituation_on_pending_date_deleted" ON public."CurrentLivingSituation" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_EnrollmentID_idx"; -- --- Name: index_CurrentLivingSituation_on_verified_by_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CurrentLivingSituation_on_verified_by_project_id" ON public."CurrentLivingSituation" USING btree (verified_by_project_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_EnrollmentID_idx1"; -- --- Name: index_CustomAssessments_on_created_by_hud_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomAssessments_on_created_by_hud_user_id" ON public."CustomAssessments" USING btree (created_by_hud_user_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_EnrollmentID_idx2"; -- --- Name: index_CustomAssessments_on_updated_by_hud_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomAssessments_on_updated_by_hud_user_id" ON public."CustomAssessments" USING btree (updated_by_hud_user_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_EnrollmentID_idx3"; -- --- Name: index_CustomCaseNote_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomCaseNote_on_EnrollmentID" ON public."CustomCaseNote" USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_EnrollmentID_idx4"; -- --- Name: index_CustomCaseNote_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomCaseNote_on_PersonalID" ON public."CustomCaseNote" USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_ExportID_idx"; -- --- Name: index_CustomCaseNote_on_UserID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomCaseNote_on_UserID" ON public."CustomCaseNote" USING btree ("UserID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_ExportID_idx1"; -- --- Name: index_CustomClientAddress_on_data_source_id_and_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_CustomClientAddress_on_data_source_id_and_EnrollmentID" ON public."CustomClientAddress" USING btree (data_source_id, "EnrollmentID") WHERE (((enrollment_address_type)::text = 'move_in'::text) AND ("DateDeleted" IS NULL)); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_ExportID_idx2"; -- --- Name: index_CustomDataElementDefinitions_on_custom_service_type_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomDataElementDefinitions_on_custom_service_type_id" ON public."CustomDataElementDefinitions" USING btree (custom_service_type_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_ExportID_idx3"; -- --- Name: index_CustomDataElementDefinitions_on_key; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomDataElementDefinitions_on_key" ON public."CustomDataElementDefinitions" USING btree (key); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_ExportID_idx4"; -- --- Name: index_CustomDataElementDefinitions_on_owner_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomDataElementDefinitions_on_owner_type" ON public."CustomDataElementDefinitions" USING btree (owner_type); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_PersonalID_idx"; -- --- Name: index_CustomDataElements_on_data_element_definition_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomDataElements_on_data_element_definition_id" ON public."CustomDataElements" USING btree (data_element_definition_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_PersonalID_idx1"; -- --- Name: index_CustomDataElements_on_owner; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomDataElements_on_owner" ON public."CustomDataElements" USING btree (owner_type, owner_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_PersonalID_idx2"; -- --- Name: index_CustomServiceTypes_on_custom_service_category_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomServiceTypes_on_custom_service_category_id" ON public."CustomServiceTypes" USING btree (custom_service_category_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_PersonalID_idx3"; -- --- Name: index_CustomServices_on_DateProvided; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomServices_on_DateProvided" ON public."CustomServices" USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_PersonalID_idx4"; -- --- Name: index_CustomServices_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomServices_on_EnrollmentID" ON public."CustomServices" USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx"; -- --- Name: index_CustomServices_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomServices_on_PersonalID" ON public."CustomServices" USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx1"; -- --- Name: index_CustomServices_on_custom_service_type_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomServices_on_custom_service_type_id" ON public."CustomServices" USING btree (custom_service_type_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx2"; -- --- Name: index_CustomServices_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_CustomServices_on_data_source_id" ON public."CustomServices" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx3"; -- --- Name: index_Disabilities_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Disabilities_on_DateDeleted_and_data_source_id" ON public."Disabilities" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_DateDeleted_idx4"; -- --- Name: index_Disabilities_on_DisabilitiesID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_Disabilities_on_DisabilitiesID_and_data_source_id" ON public."Disabilities" USING btree ("DisabilitiesID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_DateProvided_idx"; -- --- Name: index_Disabilities_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Disabilities_on_EnrollmentID" ON public."Disabilities" USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_DateProvided_idx1"; -- --- Name: index_Disabilities_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Disabilities_on_PersonalID" ON public."Disabilities" USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_DateProvided_idx2"; -- --- Name: index_Disabilities_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Disabilities_on_data_source_id" ON public."Disabilities" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_DateProvided_idx3"; -- --- Name: index_Disabilities_on_data_source_id_and_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Disabilities_on_data_source_id_and_PersonalID" ON public."Disabilities" USING btree (data_source_id, "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_DateProvided_idx4"; -- --- Name: index_Disabilities_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Disabilities_on_pending_date_deleted" ON public."Disabilities" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_idx"; -- --- Name: index_EmploymentEducation_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_EmploymentEducation_on_DateDeleted_and_data_source_id" ON public."EmploymentEducation" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_idx1"; -- --- Name: index_EmploymentEducation_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_EmploymentEducation_on_EnrollmentID" ON public."EmploymentEducation" USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_idx2"; -- --- Name: index_EmploymentEducation_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_EmploymentEducation_on_PersonalID" ON public."EmploymentEducation" USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_idx3"; -- --- Name: index_EmploymentEducation_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_EmploymentEducation_on_data_source_id" ON public."EmploymentEducation" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_RecordType_idx4"; -- --- Name: index_EmploymentEducation_on_data_source_id_and_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_EmploymentEducation_on_data_source_id_and_PersonalID" ON public."EmploymentEducation" USING btree (data_source_id, "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_ServicesID_data_source_id_idx"; -- --- Name: index_EmploymentEducation_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_EmploymentEducation_on_pending_date_deleted" ON public."EmploymentEducation" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_ServicesID_idx"; -- --- Name: index_EnrollmentCoC_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_EnrollmentCoC_on_DateDeleted_and_data_source_id" ON public."EnrollmentCoC" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_ServicesID_idx1"; -- --- Name: index_EnrollmentCoC_on_EnrollmentCoCID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_EnrollmentCoC_on_EnrollmentCoCID" ON public."EnrollmentCoC" USING btree ("EnrollmentCoCID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_ServicesID_idx2"; -- --- Name: index_EnrollmentCoC_on_EnrollmentCoCID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_EnrollmentCoC_on_EnrollmentCoCID_and_data_source_id" ON public."EnrollmentCoC" USING btree ("EnrollmentCoCID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_ServicesID_idx3"; -- --- Name: index_EnrollmentCoC_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_EnrollmentCoC_on_data_source_id" ON public."EnrollmentCoC" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_56_ServicesID_idx4"; -- --- Name: index_EnrollmentCoC_on_data_source_id_and_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_EnrollmentCoC_on_data_source_id_and_PersonalID" ON public."EnrollmentCoC" USING btree (data_source_id, "PersonalID"); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_56_importer_log_id_idx; -- --- Name: index_EnrollmentCoC_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_EnrollmentCoC_on_pending_date_deleted" ON public."EnrollmentCoC" USING btree (pending_date_deleted); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_56_pkey; -- --- Name: index_Enrollment_on_DateDeleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_56_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_DateDeleted" ON public."Enrollment" USING btree ("DateDeleted"); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_56_source_type_source_id_idx; -- --- Name: index_Enrollment_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_DateDeleted_and_data_source_id" ON public."Enrollment" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateCreated_idx"; -- --- Name: index_Enrollment_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_EnrollmentID" ON public."Enrollment" USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateCreated_idx1"; -- --- Name: index_Enrollment_on_EntryDate; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_EntryDate" ON public."Enrollment" USING btree ("EntryDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateCreated_idx2"; -- --- Name: index_Enrollment_on_MoveInDate; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_MoveInDate" ON public."Enrollment" USING btree ("MoveInDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateCreated_idx3"; -- --- Name: index_Enrollment_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_PersonalID" ON public."Enrollment" USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateCreated_idx4"; -- --- Name: index_Enrollment_on_ProjectID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_ProjectID" ON public."Enrollment" USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateDeleted_idx"; -- --- Name: index_Enrollment_on_ProjectID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_ProjectID_and_data_source_id" ON public."Enrollment" USING btree ("ProjectID", data_source_id) WHERE ("DateDeleted" IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateDeleted_idx1"; -- --- Name: index_Enrollment_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_data_source_id" ON public."Enrollment" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateDeleted_idx2"; -- --- Name: index_Enrollment_on_data_source_id_and_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_data_source_id_and_PersonalID" ON public."Enrollment" USING btree (data_source_id, "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateDeleted_idx3"; -- --- Name: index_Enrollment_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_pending_date_deleted" ON public."Enrollment" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateDeleted_idx4"; -- --- Name: index_Enrollment_on_project_pk; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_project_pk" ON public."Enrollment" USING btree (project_pk); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateProvided_idx"; -- --- Name: index_Enrollment_on_service_history_processing_job_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Enrollment_on_service_history_processing_job_id" ON public."Enrollment" USING btree (service_history_processing_job_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateProvided_idx1"; -- --- Name: index_Event_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Event_on_pending_date_deleted" ON public."Event" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateProvided_idx2"; -- --- Name: index_Exit_on_DateDeleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Exit_on_DateDeleted" ON public."Exit" USING btree ("DateDeleted"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateProvided_idx3"; -- --- Name: index_Exit_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Exit_on_DateDeleted_and_data_source_id" ON public."Exit" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateProvided_idx4"; -- --- Name: index_Exit_on_ExitDate; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Exit_on_ExitDate" ON public."Exit" USING btree ("ExitDate"); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateUpdated_idx"; -- --- Name: index_Exit_on_ExitID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_Exit_on_ExitID_and_data_source_id" ON public."Exit" USING btree ("ExitID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateUpdated_idx1"; -- --- Name: index_Exit_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Exit_on_pending_date_deleted" ON public."Exit" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateUpdated_idx2"; -- --- Name: index_Export_on_ExportID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_Export_on_ExportID_and_data_source_id" ON public."Export" USING btree ("ExportID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateUpdated_idx3"; -- --- Name: index_Export_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Export_on_data_source_id" ON public."Export" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_DateUpdated_idx4"; -- --- Name: index_Funder_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Funder_on_DateDeleted_and_data_source_id" ON public."Funder" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx"; -- --- Name: index_Funder_on_FunderID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_Funder_on_FunderID_and_data_source_id" ON public."Funder" USING btree ("FunderID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx1"; -- --- Name: index_Funder_on_ProjectID_and_Funder; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Funder_on_ProjectID_and_Funder" ON public."Funder" USING btree ("ProjectID", "Funder"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx2"; -- --- Name: index_Funder_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Funder_on_data_source_id" ON public."Funder" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx3"; -- --- Name: index_Funder_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Funder_on_pending_date_deleted" ON public."Funder" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx4"; -- --- Name: index_Geography_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Geography_on_DateDeleted_and_data_source_id" ON public."Geography" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_EnrollmentID_PersonalID_idx5"; -- --- Name: index_Geography_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Geography_on_data_source_id" ON public."Geography" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_EnrollmentID_idx"; -- --- Name: index_Geography_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Geography_on_pending_date_deleted" ON public."Geography" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_EnrollmentID_idx1"; -- --- Name: index_HMISParticipation_on_HMISParticipationID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_HMISParticipation_on_HMISParticipationID" ON public."HMISParticipation" USING btree ("HMISParticipationID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_EnrollmentID_idx2"; -- --- Name: index_HMISParticipation_on_ProjectID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_HMISParticipation_on_ProjectID" ON public."HMISParticipation" USING btree ("ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_EnrollmentID_idx3"; -- --- Name: index_HealthAndDV_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_HealthAndDV_on_DateDeleted_and_data_source_id" ON public."HealthAndDV" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_EnrollmentID_idx4"; -- --- Name: index_HealthAndDV_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_HealthAndDV_on_EnrollmentID" ON public."HealthAndDV" USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_ExportID_idx"; -- --- Name: index_HealthAndDV_on_HealthAndDVID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_HealthAndDV_on_HealthAndDVID_and_data_source_id" ON public."HealthAndDV" USING btree ("HealthAndDVID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_ExportID_idx1"; -- --- Name: index_HealthAndDV_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_HealthAndDV_on_PersonalID" ON public."HealthAndDV" USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_ExportID_idx2"; -- --- Name: index_HealthAndDV_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_HealthAndDV_on_data_source_id" ON public."HealthAndDV" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_ExportID_idx3"; -- --- Name: index_HealthAndDV_on_data_source_id_and_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_HealthAndDV_on_data_source_id_and_PersonalID" ON public."HealthAndDV" USING btree (data_source_id, "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_ExportID_idx4"; -- --- Name: index_HealthAndDV_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_HealthAndDV_on_pending_date_deleted" ON public."HealthAndDV" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_PersonalID_idx"; -- --- Name: index_IncomeBenefits_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_IncomeBenefits_on_DateDeleted_and_data_source_id" ON public."IncomeBenefits" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_PersonalID_idx1"; -- --- Name: index_IncomeBenefits_on_EnrollmentID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_IncomeBenefits_on_EnrollmentID" ON public."IncomeBenefits" USING btree ("EnrollmentID"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_PersonalID_idx2"; -- --- Name: index_IncomeBenefits_on_IncomeBenefitsID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_IncomeBenefits_on_IncomeBenefitsID_and_data_source_id" ON public."IncomeBenefits" USING btree ("IncomeBenefitsID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_PersonalID_idx3"; -- --- Name: index_IncomeBenefits_on_InformationDate; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_IncomeBenefits_on_InformationDate" ON public."IncomeBenefits" USING btree ("InformationDate"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_PersonalID_idx4"; -- --- Name: index_IncomeBenefits_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_IncomeBenefits_on_PersonalID" ON public."IncomeBenefits" USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx"; -- --- Name: index_IncomeBenefits_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_IncomeBenefits_on_data_source_id" ON public."IncomeBenefits" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx1"; -- --- Name: index_IncomeBenefits_on_data_source_id_and_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_IncomeBenefits_on_data_source_id_and_PersonalID" ON public."IncomeBenefits" USING btree (data_source_id, "PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx2"; -- --- Name: index_IncomeBenefits_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_IncomeBenefits_on_pending_date_deleted" ON public."IncomeBenefits" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx3"; -- --- Name: index_Inventory_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Inventory_on_DateDeleted_and_data_source_id" ON public."Inventory" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_DateDeleted_idx4"; -- --- Name: index_Inventory_on_InventoryID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_Inventory_on_InventoryID_and_data_source_id" ON public."Inventory" USING btree ("InventoryID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_DateProvided_idx"; -- --- Name: index_Inventory_on_ProjectID_and_CoCCode_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Inventory_on_ProjectID_and_CoCCode_and_data_source_id" ON public."Inventory" USING btree ("ProjectID", "CoCCode", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_DateProvided_idx1"; -- --- Name: index_Inventory_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Inventory_on_data_source_id" ON public."Inventory" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_DateProvided_idx2"; -- --- Name: index_Inventory_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Inventory_on_pending_date_deleted" ON public."Inventory" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_DateProvided_idx3"; -- --- Name: index_Organization_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Organization_on_DateDeleted_and_data_source_id" ON public."Organization" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_DateProvided_idx4"; -- --- Name: index_Organization_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Organization_on_data_source_id" ON public."Organization" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_idx"; -- --- Name: index_Organization_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Organization_on_pending_date_deleted" ON public."Organization" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_idx1"; -- --- Name: index_ProjectCoC_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_ProjectCoC_on_DateDeleted_and_data_source_id" ON public."ProjectCoC" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_idx2"; -- --- Name: index_ProjectCoC_on_ProjectCoCID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_ProjectCoC_on_ProjectCoCID_and_data_source_id" ON public."ProjectCoC" USING btree ("ProjectCoCID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_idx3"; -- --- Name: index_ProjectCoC_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_ProjectCoC_on_data_source_id" ON public."ProjectCoC" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_RecordType_idx4"; -- --- Name: index_ProjectCoC_on_data_source_id_and_ProjectID_and_CoCCode; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_ProjectCoC_on_data_source_id_and_ProjectID_and_CoCCode" ON public."ProjectCoC" USING btree (data_source_id, "ProjectID", "CoCCode"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_ServicesID_data_source_id_idx"; -- --- Name: index_ProjectCoC_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_ProjectCoC_on_pending_date_deleted" ON public."ProjectCoC" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_ServicesID_idx"; -- --- Name: index_Project_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Project_on_DateDeleted_and_data_source_id" ON public."Project" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_ServicesID_idx1"; -- --- Name: index_Project_on_ProjectType; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Project_on_ProjectType" ON public."Project" USING btree ("ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_ServicesID_idx2"; -- --- Name: index_Project_on_computed_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Project_on_computed_project_type" ON public."Project" USING btree (computed_project_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_ServicesID_idx3"; -- --- Name: index_Project_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Project_on_data_source_id" ON public."Project" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_57_ServicesID_idx4"; -- --- Name: index_Project_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Project_on_pending_date_deleted" ON public."Project" USING btree (pending_date_deleted); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_57_importer_log_id_idx; -- --- Name: index_Services_on_DateDeleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Services_on_DateDeleted" ON public."Services" USING btree ("DateDeleted"); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_57_pkey; -- --- Name: index_Services_on_DateDeleted_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_57_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Services_on_DateDeleted_and_data_source_id" ON public."Services" USING btree ("DateDeleted", data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_57_source_type_source_id_idx; -- --- Name: index_Services_on_DateProvided; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Services_on_DateProvided" ON public."Services" USING btree ("DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateCreated_idx"; -- --- Name: index_Services_on_PersonalID; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Services_on_PersonalID" ON public."Services" USING btree ("PersonalID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateCreated_idx1"; -- --- Name: index_Services_on_ServicesID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_Services_on_ServicesID_and_data_source_id" ON public."Services" USING btree ("ServicesID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateCreated_idx2"; -- --- Name: index_Services_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Services_on_data_source_id" ON public."Services" USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateCreated_idx3"; -- --- Name: index_Services_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_Services_on_pending_date_deleted" ON public."Services" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateCreated_idx4"; -- --- Name: index_User_on_UserID_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "index_User_on_UserID_and_data_source_id" ON public."User" USING btree ("UserID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateDeleted_idx"; -- --- Name: index_User_on_pending_date_deleted; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_User_on_pending_date_deleted" ON public."User" USING btree (pending_date_deleted); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateDeleted_idx1"; -- --- Name: index_ac_hmis_projects_import_attempts_on_etag; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ac_hmis_projects_import_attempts_on_etag ON public.ac_hmis_projects_import_attempts USING btree (etag); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateDeleted_idx2"; -- --- Name: index_ac_hmis_projects_import_attempts_on_key_and_etag; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_ac_hmis_projects_import_attempts_on_key_and_etag ON public.ac_hmis_projects_import_attempts USING btree (key, etag); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateDeleted_idx3"; -- --- Name: index_ad_hoc_batches_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ad_hoc_batches_on_created_at ON public.ad_hoc_batches USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateDeleted_idx4"; -- --- Name: index_ad_hoc_batches_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ad_hoc_batches_on_deleted_at ON public.ad_hoc_batches USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateProvided_idx"; -- --- Name: index_ad_hoc_batches_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ad_hoc_batches_on_updated_at ON public.ad_hoc_batches USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateProvided_idx1"; -- --- Name: index_ad_hoc_clients_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ad_hoc_clients_on_created_at ON public.ad_hoc_clients USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateProvided_idx2"; -- --- Name: index_ad_hoc_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ad_hoc_clients_on_deleted_at ON public.ad_hoc_clients USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateProvided_idx3"; -- --- Name: index_ad_hoc_clients_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ad_hoc_clients_on_updated_at ON public.ad_hoc_clients USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateProvided_idx4"; -- --- Name: index_ad_hoc_data_sources_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ad_hoc_data_sources_on_created_at ON public.ad_hoc_data_sources USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateUpdated_idx"; -- --- Name: index_ad_hoc_data_sources_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ad_hoc_data_sources_on_deleted_at ON public.ad_hoc_data_sources USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateUpdated_idx1"; -- --- Name: index_ad_hoc_data_sources_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ad_hoc_data_sources_on_updated_at ON public.ad_hoc_data_sources USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateUpdated_idx2"; -- --- Name: index_ad_hoc_data_sources_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ad_hoc_data_sources_on_user_id ON public.ad_hoc_data_sources USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateUpdated_idx3"; -- --- Name: index_administrative_events_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_administrative_events_on_deleted_at ON public.administrative_events USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_DateUpdated_idx4"; -- --- Name: index_anomalies_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_anomalies_on_client_id ON public.anomalies USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx"; -- --- Name: index_anomalies_on_status; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_anomalies_on_status ON public.anomalies USING btree (status); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx1"; -- --- Name: index_ansd_enrollments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ansd_enrollments_on_enrollment_id ON public.ansd_enrollments USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx2"; -- --- Name: index_ansd_enrollments_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ansd_enrollments_on_report_id ON public.ansd_enrollments USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx3"; -- --- Name: index_ansd_events_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ansd_events_on_enrollment_id ON public.ansd_events USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx4"; -- --- Name: index_api_client_data_source_ids_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_api_client_data_source_ids_on_client_id ON public.api_client_data_source_ids USING btree (client_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_EnrollmentID_PersonalID_idx5"; -- --- Name: index_api_client_data_source_ids_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_api_client_data_source_ids_on_data_source_id ON public.api_client_data_source_ids USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_EnrollmentID_idx"; -- --- Name: index_api_client_data_source_ids_on_warehouse_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_api_client_data_source_ids_on_warehouse_id ON public.api_client_data_source_ids USING btree (warehouse_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_EnrollmentID_idx1"; -- --- Name: index_assessment_answer_lookups_on_response_code; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_assessment_answer_lookups_on_response_code ON public.assessment_answer_lookups USING btree (response_code); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_EnrollmentID_idx2"; -- --- Name: index_boston_project_scorecard_reports_on_apr_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_boston_project_scorecard_reports_on_apr_id ON public.boston_project_scorecard_reports USING btree (apr_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_EnrollmentID_idx3"; -- --- Name: index_boston_project_scorecard_reports_on_comparison_apr_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_boston_project_scorecard_reports_on_comparison_apr_id ON public.boston_project_scorecard_reports USING btree (comparison_apr_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_EnrollmentID_idx4"; -- --- Name: index_boston_project_scorecard_reports_on_project_group_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_boston_project_scorecard_reports_on_project_group_id ON public.boston_project_scorecard_reports USING btree (project_group_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_ExportID_idx"; -- --- Name: index_boston_project_scorecard_reports_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_boston_project_scorecard_reports_on_project_id ON public.boston_project_scorecard_reports USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_ExportID_idx1"; -- --- Name: index_boston_project_scorecard_reports_on_secondary_reviewer_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_boston_project_scorecard_reports_on_secondary_reviewer_id ON public.boston_project_scorecard_reports USING btree (secondary_reviewer_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_ExportID_idx2"; -- --- Name: index_boston_project_scorecard_reports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_boston_project_scorecard_reports_on_user_id ON public.boston_project_scorecard_reports USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_ExportID_idx3"; -- --- Name: index_cas_availabilities_on_available_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_availabilities_on_available_at ON public.cas_availabilities USING btree (available_at); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_ExportID_idx4"; -- --- Name: index_cas_availabilities_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_availabilities_on_client_id ON public.cas_availabilities USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_PersonalID_idx"; -- --- Name: index_cas_availabilities_on_unavailable_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_availabilities_on_unavailable_at ON public.cas_availabilities USING btree (unavailable_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_PersonalID_idx1"; -- --- Name: index_cas_ce_assessments_on_cas_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_ce_assessments_on_cas_client_id ON public.cas_ce_assessments USING btree (cas_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_PersonalID_idx2"; -- --- Name: index_cas_ce_assessments_on_cas_non_hmis_assessment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_cas_ce_assessments_on_cas_non_hmis_assessment_id ON public.cas_ce_assessments USING btree (cas_non_hmis_assessment_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_PersonalID_idx3"; -- --- Name: index_cas_ce_assessments_on_hmis_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_ce_assessments_on_hmis_client_id ON public.cas_ce_assessments USING btree (hmis_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_PersonalID_idx4"; -- --- Name: index_cas_ce_assessments_on_program_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_ce_assessments_on_program_id ON public.cas_ce_assessments USING btree (program_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx"; -- --- Name: index_cas_enrollments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_enrollments_on_client_id ON public.cas_enrollments USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx1"; -- --- Name: index_cas_enrollments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_enrollments_on_enrollment_id ON public.cas_enrollments USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx2"; -- --- Name: index_cas_houseds_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_houseds_on_client_id ON public.cas_houseds USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx3"; -- --- Name: index_cas_non_hmis_client_histories_on_cas_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_non_hmis_client_histories_on_cas_client_id ON public.cas_non_hmis_client_histories USING btree (cas_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_DateDeleted_idx4"; -- --- Name: index_cas_programs_to_projects_on_program_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_programs_to_projects_on_program_id ON public.cas_programs_to_projects USING btree (program_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_DateProvided_idx"; -- --- Name: index_cas_programs_to_projects_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_programs_to_projects_on_project_id ON public.cas_programs_to_projects USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_DateProvided_idx1"; -- --- Name: index_cas_referral_events_on_cas_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_referral_events_on_cas_client_id ON public.cas_referral_events USING btree (cas_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_DateProvided_idx2"; -- --- Name: index_cas_referral_events_on_client_opportunity_match_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_referral_events_on_client_opportunity_match_id ON public.cas_referral_events USING btree (client_opportunity_match_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_DateProvided_idx3"; -- --- Name: index_cas_referral_events_on_hmis_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_referral_events_on_hmis_client_id ON public.cas_referral_events USING btree (hmis_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_DateProvided_idx4"; -- --- Name: index_cas_referral_events_on_program_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_referral_events_on_program_id ON public.cas_referral_events USING btree (program_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_idx"; -- --- Name: index_cas_reports_on_client_id_and_match_id_and_decision_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_cas_reports_on_client_id_and_match_id_and_decision_id ON public.cas_reports USING btree (client_id, match_id, decision_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_idx1"; -- --- Name: index_cas_vacancies_on_program_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_vacancies_on_program_id ON public.cas_vacancies USING btree (program_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_idx2"; -- --- Name: index_cas_vacancies_on_sub_program_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cas_vacancies_on_sub_program_id ON public.cas_vacancies USING btree (sub_program_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_idx3"; -- --- Name: index_ce_assessments_on_assessor_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ce_assessments_on_assessor_id ON public.ce_assessments USING btree (assessor_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_RecordType_idx4"; -- --- Name: index_ce_assessments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ce_assessments_on_client_id ON public.ce_assessments USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_ServicesID_data_source_id_idx"; -- --- Name: index_ce_assessments_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ce_assessments_on_deleted_at ON public.ce_assessments USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_ServicesID_idx"; -- --- Name: index_ce_assessments_on_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ce_assessments_on_type ON public.ce_assessments USING btree (type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_ServicesID_idx1"; -- --- Name: index_ce_assessments_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ce_assessments_on_user_id ON public.ce_assessments USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_ServicesID_idx2"; -- --- Name: index_ce_performance_ce_aprs_on_ce_apr_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ce_performance_ce_aprs_on_ce_apr_id ON public.ce_performance_ce_aprs USING btree (ce_apr_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_ServicesID_idx3"; -- --- Name: index_ce_performance_ce_aprs_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ce_performance_ce_aprs_on_report_id ON public.ce_performance_ce_aprs USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_58_ServicesID_idx4"; -- --- Name: index_ce_performance_clients_on_ce_apr_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ce_performance_clients_on_ce_apr_id ON public.ce_performance_clients USING btree (ce_apr_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_58_importer_log_id_idx; -- --- Name: index_ce_performance_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ce_performance_clients_on_client_id ON public.ce_performance_clients USING btree (client_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_58_pkey; -- --- Name: index_ce_performance_clients_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_58_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ce_performance_clients_on_report_id ON public.ce_performance_clients USING btree (report_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_58_source_type_source_id_idx; -- --- Name: index_ce_performance_results_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ce_performance_results_on_report_id ON public.ce_performance_results USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateCreated_idx"; -- --- Name: index_census_groups_on_year_and_dataset_and_name; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_census_groups_on_year_and_dataset_and_name ON public.census_groups USING btree (year, dataset, name); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateCreated_idx1"; -- --- Name: index_census_values_on_census_level; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_census_values_on_census_level ON public.census_values USING btree (census_level); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateCreated_idx2"; -- --- Name: index_census_values_on_census_variable_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_census_values_on_census_variable_id ON public.census_values USING btree (census_variable_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateCreated_idx3"; -- --- Name: index_census_values_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_census_values_on_full_geoid ON public.census_values USING btree (full_geoid); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateCreated_idx4"; -- --- Name: index_census_values_on_full_geoid_and_census_variable_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_census_values_on_full_geoid_and_census_variable_id ON public.census_values USING btree (full_geoid, census_variable_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateDeleted_idx"; -- --- Name: index_census_variables_on_dataset; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_census_variables_on_dataset ON public.census_variables USING btree (dataset); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateDeleted_idx1"; -- --- Name: index_census_variables_on_internal_name_and_year_and_dataset; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_census_variables_on_internal_name_and_year_and_dataset ON public.census_variables USING btree (internal_name, year, dataset) WHERE (internal_name IS NOT NULL); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateDeleted_idx2"; -- --- Name: index_census_variables_on_year_and_dataset_and_name; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_census_variables_on_year_and_dataset_and_name ON public.census_variables USING btree (year, dataset, name); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateDeleted_idx3"; -- --- Name: index_censuses_ds_id_proj_type_org_id_proj_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_censuses_ds_id_proj_type_org_id_proj_id ON public.censuses USING btree (data_source_id, "ProjectType", "OrganizationID", "ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateDeleted_idx4"; -- --- Name: index_censuses_on_date; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_censuses_on_date ON public.censuses USING btree (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateProvided_idx"; -- --- Name: index_censuses_on_date_and_ProjectType; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_censuses_on_date_and_ProjectType" ON public.censuses USING btree (date, "ProjectType"); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateProvided_idx1"; -- --- Name: index_children_on_family_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_children_on_family_id ON public.children USING btree (family_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateProvided_idx2"; -- --- Name: index_chronics_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_chronics_on_client_id ON public.chronics USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateProvided_idx3"; -- --- Name: index_chronics_on_date; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_chronics_on_date ON public.chronics USING btree (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateProvided_idx4"; -- --- Name: index_clh_locations_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_clh_locations_on_client_id ON public.clh_locations USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateUpdated_idx"; -- --- Name: index_clh_locations_on_lat_and_lon; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_clh_locations_on_lat_and_lon ON public.clh_locations USING btree (lat, lon); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateUpdated_idx1"; -- --- Name: index_clh_locations_on_source_type_and_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_clh_locations_on_source_type_and_source_id ON public.clh_locations USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateUpdated_idx2"; -- --- Name: index_client_contacts_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_contacts_on_client_id ON public.client_contacts USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateUpdated_idx3"; -- --- Name: index_client_contacts_on_source_type_and_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_contacts_on_source_type_and_source_id ON public.client_contacts USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_DateUpdated_idx4"; -- --- Name: index_client_matches_on_destination_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_matches_on_destination_client_id ON public.client_matches USING btree (destination_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx"; -- --- Name: index_client_matches_on_source_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_matches_on_source_client_id ON public.client_matches USING btree (source_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx1"; -- --- Name: index_client_matches_on_updated_by_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_matches_on_updated_by_id ON public.client_matches USING btree (updated_by_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx2"; -- --- Name: index_client_merge_histories_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_merge_histories_on_created_at ON public.client_merge_histories USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx3"; -- --- Name: index_client_merge_histories_on_merged_from; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_merge_histories_on_merged_from ON public.client_merge_histories USING btree (merged_from); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx4"; -- --- Name: index_client_merge_histories_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_merge_histories_on_updated_at ON public.client_merge_histories USING btree (updated_at); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_EnrollmentID_PersonalID_idx5"; -- --- Name: index_client_notes_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_notes_on_client_id ON public.client_notes USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_EnrollmentID_idx"; -- --- Name: index_client_notes_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_notes_on_project_id ON public.client_notes USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_EnrollmentID_idx1"; -- --- Name: index_client_notes_on_service_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_notes_on_service_id ON public.client_notes USING btree (service_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_EnrollmentID_idx2"; -- --- Name: index_client_notes_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_notes_on_user_id ON public.client_notes USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_EnrollmentID_idx3"; -- --- Name: index_client_roi_authorizations_on_destination_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_client_roi_authorizations_on_destination_client_id ON public.client_roi_authorizations USING btree (destination_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_EnrollmentID_idx4"; -- --- Name: index_client_split_histories_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_split_histories_on_created_at ON public.client_split_histories USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_ExportID_idx"; -- --- Name: index_client_split_histories_on_split_from; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_split_histories_on_split_from ON public.client_split_histories USING btree (split_from); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_ExportID_idx1"; -- --- Name: index_client_split_histories_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_client_split_histories_on_updated_at ON public.client_split_histories USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_ExportID_idx2"; -- --- Name: index_coc_codes_on_coc_code; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_coc_codes_on_coc_code ON public.coc_codes USING btree (coc_code); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_ExportID_idx3"; -- --- Name: index_coc_pit_counts_on_goal_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_coc_pit_counts_on_goal_id ON public.coc_pit_counts USING btree (goal_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_ExportID_idx4"; -- --- Name: index_cohort_client_changes_on_change; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cohort_client_changes_on_change ON public.cohort_client_changes USING btree (change); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_PersonalID_idx"; -- --- Name: index_cohort_client_changes_on_changed_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cohort_client_changes_on_changed_at ON public.cohort_client_changes USING btree (changed_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_PersonalID_idx1"; -- --- Name: index_cohort_client_notes_on_cohort_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cohort_client_notes_on_cohort_client_id ON public.cohort_client_notes USING btree (cohort_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_PersonalID_idx2"; -- --- Name: index_cohort_client_notes_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cohort_client_notes_on_deleted_at ON public.cohort_client_notes USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_PersonalID_idx3"; -- --- Name: index_cohort_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cohort_clients_on_client_id ON public.cohort_clients USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_PersonalID_idx4"; -- --- Name: index_cohort_clients_on_cohort_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cohort_clients_on_cohort_id ON public.cohort_clients USING btree (cohort_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx"; -- --- Name: index_cohort_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cohort_clients_on_deleted_at ON public.cohort_clients USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx1"; -- --- Name: index_cohort_tabs_on_cohort_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cohort_tabs_on_cohort_id ON public.cohort_tabs USING btree (cohort_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx2"; -- --- Name: index_cohorts_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cohorts_on_deleted_at ON public.cohorts USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx3"; -- --- Name: index_cohorts_on_project_group_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_cohorts_on_project_group_id ON public.cohorts USING btree (project_group_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_DateDeleted_idx4"; -- --- Name: index_contacts_on_entity_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_contacts_on_entity_id ON public.contacts USING btree (entity_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_DateProvided_idx"; -- --- Name: index_contacts_on_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_contacts_on_type ON public.contacts USING btree (type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_DateProvided_idx1"; -- --- Name: index_csg_engage_program_mappings_on_program_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_csg_engage_program_mappings_on_program_id ON public.csg_engage_program_mappings USING btree (program_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_DateProvided_idx2"; -- --- Name: index_csg_engage_program_mappings_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_csg_engage_program_mappings_on_project_id ON public.csg_engage_program_mappings USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_DateProvided_idx3"; -- --- Name: index_csg_engage_program_reports_on_program_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_csg_engage_program_reports_on_program_id ON public.csg_engage_program_reports USING btree (program_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_DateProvided_idx4"; -- --- Name: index_csg_engage_program_reports_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_csg_engage_program_reports_on_report_id ON public.csg_engage_program_reports USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_idx"; -- --- Name: index_csg_engage_programs_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_csg_engage_programs_on_agency_id ON public.csg_engage_programs USING btree (agency_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_idx1"; -- --- Name: index_csg_engage_reports_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_csg_engage_reports_on_agency_id ON public.csg_engage_reports USING btree (agency_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_idx2"; -- --- Name: index_custom_imports_b_al_rows_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_al_rows_on_created_at ON public.custom_imports_b_al_rows USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_idx3"; -- --- Name: index_custom_imports_b_al_rows_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_al_rows_on_data_source_id ON public.custom_imports_b_al_rows USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_RecordType_idx4"; -- --- Name: index_custom_imports_b_al_rows_on_import_file_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_al_rows_on_import_file_id ON public.custom_imports_b_al_rows USING btree (import_file_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_ServicesID_data_source_id_idx"; -- --- Name: index_custom_imports_b_al_rows_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_al_rows_on_updated_at ON public.custom_imports_b_al_rows USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_ServicesID_idx"; -- --- Name: index_custom_imports_b_contacts_rows_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_contacts_rows_on_created_at ON public.custom_imports_b_contacts_rows USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_ServicesID_idx1"; -- --- Name: index_custom_imports_b_contacts_rows_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_contacts_rows_on_data_source_id ON public.custom_imports_b_contacts_rows USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_ServicesID_idx2"; -- --- Name: index_custom_imports_b_contacts_rows_on_import_file_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_contacts_rows_on_import_file_id ON public.custom_imports_b_contacts_rows USING btree (import_file_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_ServicesID_idx3"; -- --- Name: index_custom_imports_b_contacts_rows_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_contacts_rows_on_updated_at ON public.custom_imports_b_contacts_rows USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_59_ServicesID_idx4"; -- --- Name: index_custom_imports_b_coo_rows_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_coo_rows_on_data_source_id ON public.custom_imports_b_coo_rows USING btree (data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_59_importer_log_id_idx; -- --- Name: index_custom_imports_b_coo_rows_on_import_file_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_coo_rows_on_import_file_id ON public.custom_imports_b_coo_rows USING btree (import_file_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_59_pkey; -- --- Name: index_custom_imports_b_coo_rows_on_unique_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_59_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_custom_imports_b_coo_rows_on_unique_id ON public.custom_imports_b_coo_rows USING btree (unique_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_59_source_type_source_id_idx; -- --- Name: index_custom_imports_b_services_rows_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_services_rows_on_created_at ON public.custom_imports_b_services_rows USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateCreated_idx"; -- --- Name: index_custom_imports_b_services_rows_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_services_rows_on_data_source_id ON public.custom_imports_b_services_rows USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateCreated_idx1"; -- --- Name: index_custom_imports_b_services_rows_on_import_file_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_services_rows_on_import_file_id ON public.custom_imports_b_services_rows USING btree (import_file_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateCreated_idx2"; -- --- Name: index_custom_imports_b_services_rows_on_service_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_custom_imports_b_services_rows_on_service_id ON public.custom_imports_b_services_rows USING btree (service_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateCreated_idx3"; -- --- Name: index_custom_imports_b_services_rows_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_b_services_rows_on_updated_at ON public.custom_imports_b_services_rows USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateCreated_idx4"; -- --- Name: index_custom_imports_config_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_config_on_created_at ON public.custom_imports_config USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateDeleted_idx"; -- --- Name: index_custom_imports_config_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_config_on_data_source_id ON public.custom_imports_config USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateDeleted_idx1"; -- --- Name: index_custom_imports_config_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_config_on_updated_at ON public.custom_imports_config USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateDeleted_idx2"; -- --- Name: index_custom_imports_config_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_config_on_user_id ON public.custom_imports_config USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateDeleted_idx3"; -- --- Name: index_custom_imports_files_on_config_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_files_on_config_id ON public.custom_imports_files USING btree (config_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateDeleted_idx4"; -- --- Name: index_custom_imports_files_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_files_on_created_at ON public.custom_imports_files USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateProvided_idx"; -- --- Name: index_custom_imports_files_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_files_on_data_source_id ON public.custom_imports_files USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateProvided_idx1"; -- --- Name: index_custom_imports_files_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_custom_imports_files_on_updated_at ON public.custom_imports_files USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateProvided_idx2"; -- --- Name: index_data_monitorings_on_calculated_on; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_data_monitorings_on_calculated_on ON public.data_monitorings USING btree (calculated_on); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateProvided_idx3"; -- --- Name: index_data_monitorings_on_census; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_data_monitorings_on_census ON public.data_monitorings USING btree (census); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateProvided_idx4"; -- --- Name: index_data_monitorings_on_resource_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_data_monitorings_on_resource_id ON public.data_monitorings USING btree (resource_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateUpdated_idx"; -- --- Name: index_data_monitorings_on_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_data_monitorings_on_type ON public.data_monitorings USING btree (type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateUpdated_idx1"; -- --- Name: index_datasets_on_source; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_datasets_on_source ON public.datasets USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateUpdated_idx2"; -- --- Name: index_direct_financial_assistances_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_direct_financial_assistances_on_deleted_at ON public.direct_financial_assistances USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateUpdated_idx3"; -- --- Name: index_document_exports_on_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_document_exports_on_type ON public.document_exports USING btree (type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_DateUpdated_idx4"; -- --- Name: index_document_exports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_document_exports_on_user_id ON public.document_exports USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx"; -- --- Name: index_eccovia_assessments_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_eccovia_assessments_on_data_source_id ON public.eccovia_assessments USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx1"; -- --- Name: index_eccovia_case_managers_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_eccovia_case_managers_on_data_source_id ON public.eccovia_case_managers USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx2"; -- --- Name: index_eccovia_client_contacts_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_eccovia_client_contacts_on_data_source_id ON public.eccovia_client_contacts USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx3"; -- --- Name: index_eccovia_fetches_on_credentials_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_eccovia_fetches_on_credentials_id ON public.eccovia_fetches USING btree (credentials_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx4"; -- --- Name: index_eccovia_fetches_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_eccovia_fetches_on_data_source_id ON public.eccovia_fetches USING btree (data_source_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_EnrollmentID_PersonalID_idx5"; -- --- Name: index_enrollment_change_histories_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_enrollment_change_histories_on_client_id ON public.enrollment_change_histories USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_EnrollmentID_idx"; -- --- Name: index_enrollment_extras_on_client_id_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_enrollment_extras_on_client_id_and_data_source_id ON public.enrollment_extras USING btree (client_id, data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_EnrollmentID_idx1"; -- --- Name: index_enrollment_extras_on_file_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_enrollment_extras_on_file_id ON public.enrollment_extras USING btree (file_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_EnrollmentID_idx2"; -- --- Name: index_enrollment_extras_on_hud_enrollment_id_and_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_enrollment_extras_on_hud_enrollment_id_and_data_source_id ON public.enrollment_extras USING btree (hud_enrollment_id, data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_EnrollmentID_idx3"; -- --- Name: index_eto_api_configs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_eto_api_configs_on_data_source_id ON public.eto_api_configs USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_EnrollmentID_idx4"; -- --- Name: index_eto_client_lookups_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_eto_client_lookups_on_client_id ON public.eto_client_lookups USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_ExportID_idx"; -- --- Name: index_eto_client_lookups_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_eto_client_lookups_on_data_source_id ON public.eto_client_lookups USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_ExportID_idx1"; -- --- Name: index_eto_subject_response_lookups_on_subject_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_eto_subject_response_lookups_on_subject_id ON public.eto_subject_response_lookups USING btree (subject_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_ExportID_idx2"; -- --- Name: index_eto_touch_point_lookups_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_eto_touch_point_lookups_on_client_id ON public.eto_touch_point_lookups USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_ExportID_idx3"; -- --- Name: index_eto_touch_point_lookups_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_eto_touch_point_lookups_on_data_source_id ON public.eto_touch_point_lookups USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_ExportID_idx4"; -- --- Name: index_exports_ad_hoc_anons_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_exports_ad_hoc_anons_on_created_at ON public.exports_ad_hoc_anons USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_PersonalID_idx"; -- --- Name: index_exports_ad_hoc_anons_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_exports_ad_hoc_anons_on_updated_at ON public.exports_ad_hoc_anons USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_PersonalID_idx1"; -- --- Name: index_exports_ad_hoc_anons_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_exports_ad_hoc_anons_on_user_id ON public.exports_ad_hoc_anons USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_PersonalID_idx2"; -- --- Name: index_exports_ad_hocs_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_exports_ad_hocs_on_created_at ON public.exports_ad_hocs USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_PersonalID_idx3"; -- --- Name: index_exports_ad_hocs_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_exports_ad_hocs_on_updated_at ON public.exports_ad_hocs USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_PersonalID_idx4"; -- --- Name: index_exports_ad_hocs_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_exports_ad_hocs_on_user_id ON public.exports_ad_hocs USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx"; -- --- Name: index_exports_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_exports_on_deleted_at ON public.exports USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx1"; -- --- Name: index_exports_on_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_exports_on_export_id ON public.exports USING btree (export_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx2"; -- --- Name: index_external_ids_on_external_request_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_external_ids_on_external_request_log_id ON public.external_ids USING btree (external_request_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx3"; -- --- Name: index_external_ids_on_remote_credential_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_external_ids_on_remote_credential_id ON public.external_ids USING btree (remote_credential_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_DateDeleted_idx4"; -- --- Name: index_external_ids_on_value; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_external_ids_on_value ON public.external_ids USING btree (value); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_DateProvided_idx"; -- --- Name: index_external_reporting_cohort_permissions_on_cohort_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_external_reporting_cohort_permissions_on_cohort_id ON public.external_reporting_cohort_permissions USING btree (cohort_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_DateProvided_idx1"; -- --- Name: index_external_reporting_cohort_permissions_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_external_reporting_cohort_permissions_on_user_id ON public.external_reporting_cohort_permissions USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_DateProvided_idx2"; -- --- Name: index_external_reporting_project_permissions_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_external_reporting_project_permissions_on_project_id ON public.external_reporting_project_permissions USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_DateProvided_idx3"; -- --- Name: index_external_reporting_project_permissions_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_external_reporting_project_permissions_on_user_id ON public.external_reporting_project_permissions USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_DateProvided_idx4"; -- --- Name: index_external_request_logs_on_initiator; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_external_request_logs_on_initiator ON public.external_request_logs USING btree (initiator_type, initiator_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_idx"; -- --- Name: index_external_request_logs_on_initiator_id_and_initiator_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_external_request_logs_on_initiator_id_and_initiator_type ON public.external_request_logs USING btree (initiator_id, initiator_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_idx1"; -- --- Name: index_external_request_logs_on_ip; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_external_request_logs_on_ip ON public.external_request_logs USING btree (ip); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_idx2"; -- --- Name: index_external_request_logs_on_requested_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_external_request_logs_on_requested_at ON public.external_request_logs USING btree (requested_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_idx3"; -- --- Name: index_favorites_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_favorites_on_created_at ON public.favorites USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_RecordType_idx4"; -- --- Name: index_favorites_on_entity; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_favorites_on_entity ON public.favorites USING btree (entity_type, entity_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_ServicesID_data_source_id_idx"; -- --- Name: index_favorites_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_favorites_on_updated_at ON public.favorites USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_ServicesID_idx"; -- --- Name: index_favorites_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_favorites_on_user_id ON public.favorites USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_ServicesID_idx1"; -- --- Name: index_files_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_files_on_data_source_id ON public.files USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_ServicesID_idx2"; -- --- Name: index_files_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_files_on_enrollment_id ON public.files USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_ServicesID_idx3"; -- --- Name: index_files_on_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_files_on_type ON public.files USING btree (type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_ServicesID_idx4"; -- --- Name: index_files_on_updated_by_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_ServicesID_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_files_on_updated_by_id ON public.files USING btree (updated_by_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_5_ServicesID_importer_log_id_idx"; -- --- Name: index_files_on_vispdat_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_files_on_vispdat_id ON public.files USING btree (vispdat_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_5_importer_log_id_idx; -- --- Name: index_generic_services_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_generic_services_on_client_id ON public.generic_services USING btree (client_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_5_pkey; -- --- Name: index_grades_on_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_5_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_grades_on_type ON public.grades USING btree (type); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_5_source_type_source_id_idx; -- --- Name: index_group_viewable_entities_on_collection_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_group_viewable_entities_on_collection_id ON public.group_viewable_entities USING btree (collection_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateCreated_idx"; -- --- Name: index_hap_report_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hap_report_clients_on_client_id ON public.hap_report_clients USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateCreated_idx1"; -- --- Name: index_hap_report_eraps_on_hap_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hap_report_eraps_on_hap_report_id ON public.hap_report_eraps USING btree (hap_report_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateCreated_idx2"; -- --- Name: index_health_emergency_ama_restrictions_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_ama_restrictions_on_agency_id ON public.health_emergency_ama_restrictions USING btree (agency_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateCreated_idx3"; -- --- Name: index_health_emergency_ama_restrictions_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_ama_restrictions_on_client_id ON public.health_emergency_ama_restrictions USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateCreated_idx4"; -- --- Name: index_health_emergency_ama_restrictions_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_ama_restrictions_on_created_at ON public.health_emergency_ama_restrictions USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateDeleted_idx"; -- --- Name: index_health_emergency_ama_restrictions_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_ama_restrictions_on_updated_at ON public.health_emergency_ama_restrictions USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateDeleted_idx1"; -- --- Name: index_health_emergency_ama_restrictions_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_ama_restrictions_on_user_id ON public.health_emergency_ama_restrictions USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateDeleted_idx2"; -- --- Name: index_health_emergency_clinical_triages_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_clinical_triages_on_agency_id ON public.health_emergency_clinical_triages USING btree (agency_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateDeleted_idx3"; -- --- Name: index_health_emergency_clinical_triages_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_clinical_triages_on_client_id ON public.health_emergency_clinical_triages USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateDeleted_idx4"; -- --- Name: index_health_emergency_clinical_triages_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_clinical_triages_on_created_at ON public.health_emergency_clinical_triages USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateProvided_idx"; -- --- Name: index_health_emergency_clinical_triages_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_clinical_triages_on_updated_at ON public.health_emergency_clinical_triages USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateProvided_idx1"; -- --- Name: index_health_emergency_clinical_triages_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_clinical_triages_on_user_id ON public.health_emergency_clinical_triages USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateProvided_idx2"; -- --- Name: index_health_emergency_isolations_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_isolations_on_agency_id ON public.health_emergency_isolations USING btree (agency_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateProvided_idx3"; -- --- Name: index_health_emergency_isolations_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_isolations_on_client_id ON public.health_emergency_isolations USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateProvided_idx4"; -- --- Name: index_health_emergency_isolations_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_isolations_on_created_at ON public.health_emergency_isolations USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateUpdated_idx"; -- --- Name: index_health_emergency_isolations_on_location; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_isolations_on_location ON public.health_emergency_isolations USING btree (location); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateUpdated_idx1"; -- --- Name: index_health_emergency_isolations_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_isolations_on_updated_at ON public.health_emergency_isolations USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateUpdated_idx2"; -- --- Name: index_health_emergency_isolations_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_isolations_on_user_id ON public.health_emergency_isolations USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateUpdated_idx3"; -- --- Name: index_health_emergency_test_batches_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_test_batches_on_created_at ON public.health_emergency_test_batches USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_DateUpdated_idx4"; -- --- Name: index_health_emergency_test_batches_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_test_batches_on_deleted_at ON public.health_emergency_test_batches USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx"; -- --- Name: index_health_emergency_test_batches_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_test_batches_on_updated_at ON public.health_emergency_test_batches USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx1"; -- --- Name: index_health_emergency_test_batches_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_test_batches_on_user_id ON public.health_emergency_test_batches USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx2"; -- --- Name: index_health_emergency_tests_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_tests_on_agency_id ON public.health_emergency_tests USING btree (agency_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx3"; -- --- Name: index_health_emergency_tests_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_tests_on_client_id ON public.health_emergency_tests USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx4"; -- --- Name: index_health_emergency_tests_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_tests_on_created_at ON public.health_emergency_tests USING btree (created_at); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_EnrollmentID_PersonalID_idx5"; -- --- Name: index_health_emergency_tests_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_tests_on_updated_at ON public.health_emergency_tests USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_EnrollmentID_idx"; -- --- Name: index_health_emergency_tests_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_tests_on_user_id ON public.health_emergency_tests USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_EnrollmentID_idx1"; -- --- Name: index_health_emergency_triages_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_triages_on_agency_id ON public.health_emergency_triages USING btree (agency_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_EnrollmentID_idx2"; -- --- Name: index_health_emergency_triages_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_triages_on_client_id ON public.health_emergency_triages USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_EnrollmentID_idx3"; -- --- Name: index_health_emergency_triages_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_triages_on_created_at ON public.health_emergency_triages USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_EnrollmentID_idx4"; -- --- Name: index_health_emergency_triages_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_triages_on_updated_at ON public.health_emergency_triages USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_ExportID_idx"; -- --- Name: index_health_emergency_triages_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_triages_on_user_id ON public.health_emergency_triages USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_ExportID_idx1"; -- --- Name: index_health_emergency_uploaded_tests_on_ama_restriction_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_uploaded_tests_on_ama_restriction_id ON public.health_emergency_uploaded_tests USING btree (ama_restriction_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_ExportID_idx2"; -- --- Name: index_health_emergency_uploaded_tests_on_batch_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_uploaded_tests_on_batch_id ON public.health_emergency_uploaded_tests USING btree (batch_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_ExportID_idx3"; -- --- Name: index_health_emergency_uploaded_tests_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_uploaded_tests_on_created_at ON public.health_emergency_uploaded_tests USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_ExportID_idx4"; -- --- Name: index_health_emergency_uploaded_tests_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_uploaded_tests_on_deleted_at ON public.health_emergency_uploaded_tests USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_PersonalID_idx"; -- --- Name: index_health_emergency_uploaded_tests_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_uploaded_tests_on_updated_at ON public.health_emergency_uploaded_tests USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_PersonalID_idx1"; -- --- Name: index_health_emergency_vaccinations_on_agency_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_vaccinations_on_agency_id ON public.health_emergency_vaccinations USING btree (agency_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_PersonalID_idx2"; -- --- Name: index_health_emergency_vaccinations_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_vaccinations_on_client_id ON public.health_emergency_vaccinations USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_PersonalID_idx3"; -- --- Name: index_health_emergency_vaccinations_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_vaccinations_on_created_at ON public.health_emergency_vaccinations USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_PersonalID_idx4"; -- --- Name: index_health_emergency_vaccinations_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_vaccinations_on_updated_at ON public.health_emergency_vaccinations USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx"; -- --- Name: index_health_emergency_vaccinations_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_health_emergency_vaccinations_on_user_id ON public.health_emergency_vaccinations USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx1"; -- --- Name: index_helps_on_controller_path_and_action_name; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_helps_on_controller_path_and_action_name ON public.helps USING btree (controller_path, action_name); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx2"; -- --- Name: index_helps_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_helps_on_created_at ON public.helps USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx3"; -- --- Name: index_helps_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_helps_on_updated_at ON public.helps USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_DateDeleted_idx4"; -- --- Name: index_hmis_2020_exports_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2020_exports_on_importer_log_id ON public.hmis_2020_exports USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_DateProvided_idx"; -- --- Name: index_hmis_2022_affiliations_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_affiliations_on_importer_log_id ON public.hmis_2022_affiliations USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_DateProvided_idx1"; -- --- Name: index_hmis_2022_assessment_questions_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_assessment_questions_on_importer_log_id ON public.hmis_2022_assessment_questions USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_DateProvided_idx2"; -- --- Name: index_hmis_2022_assessment_results_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_assessment_results_on_importer_log_id ON public.hmis_2022_assessment_results USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_DateProvided_idx3"; -- --- Name: index_hmis_2022_assessments_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_assessments_on_importer_log_id ON public.hmis_2022_assessments USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_DateProvided_idx4"; -- --- Name: index_hmis_2022_clients_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_clients_on_importer_log_id ON public.hmis_2022_clients USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_idx"; -- --- Name: index_hmis_2022_current_living_situations_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_current_living_situations_on_importer_log_id ON public.hmis_2022_current_living_situations USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_idx1"; -- --- Name: index_hmis_2022_disabilities_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_disabilities_on_importer_log_id ON public.hmis_2022_disabilities USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_idx2"; -- --- Name: index_hmis_2022_employment_educations_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_employment_educations_on_importer_log_id ON public.hmis_2022_employment_educations USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_idx3"; -- --- Name: index_hmis_2022_enrollment_cocs_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_enrollment_cocs_on_importer_log_id ON public.hmis_2022_enrollment_cocs USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_RecordType_idx4"; -- --- Name: index_hmis_2022_enrollments_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_enrollments_on_importer_log_id ON public.hmis_2022_enrollments USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_ServicesID_data_source_id_idx"; -- --- Name: index_hmis_2022_events_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_events_on_importer_log_id ON public.hmis_2022_events USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_ServicesID_idx"; -- --- Name: index_hmis_2022_exits_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_exits_on_importer_log_id ON public.hmis_2022_exits USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_ServicesID_idx1"; -- --- Name: index_hmis_2022_exports_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_exports_on_importer_log_id ON public.hmis_2022_exports USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_ServicesID_idx2"; -- --- Name: index_hmis_2022_funders_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_funders_on_importer_log_id ON public.hmis_2022_funders USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_ServicesID_idx3"; -- --- Name: index_hmis_2022_health_and_dvs_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_health_and_dvs_on_importer_log_id ON public.hmis_2022_health_and_dvs USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_60_ServicesID_idx4"; -- --- Name: index_hmis_2022_income_benefits_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_income_benefits_on_importer_log_id ON public.hmis_2022_income_benefits USING btree (importer_log_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_60_importer_log_id_idx; -- --- Name: index_hmis_2022_inventories_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_inventories_on_importer_log_id ON public.hmis_2022_inventories USING btree (importer_log_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_60_pkey; -- --- Name: index_hmis_2022_organizations_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_60_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_organizations_on_importer_log_id ON public.hmis_2022_organizations USING btree (importer_log_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_60_source_type_source_id_idx; -- --- Name: index_hmis_2022_project_cocs_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_project_cocs_on_importer_log_id ON public.hmis_2022_project_cocs USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateCreated_idx"; -- --- Name: index_hmis_2022_projects_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_projects_on_importer_log_id ON public.hmis_2022_projects USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateCreated_idx1"; -- --- Name: index_hmis_2022_services_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_services_on_importer_log_id ON public.hmis_2022_services USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateCreated_idx2"; -- --- Name: index_hmis_2022_users_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_users_on_importer_log_id ON public.hmis_2022_users USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateCreated_idx3"; -- --- Name: index_hmis_2022_youth_education_statuses_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2022_youth_education_statuses_on_importer_log_id ON public.hmis_2022_youth_education_statuses USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateCreated_idx4"; -- --- Name: index_hmis_2024_exits_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_2024_exits_on_importer_log_id ON public.hmis_2024_exits USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateDeleted_idx"; -- --- Name: index_hmis_active_ranges_on_entity; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_active_ranges_on_entity ON public.hmis_active_ranges USING btree (entity_type, entity_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateDeleted_idx1"; -- --- Name: index_hmis_assessment_details_on_assessment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_assessment_details_on_assessment_id ON public.hmis_assessment_details USING btree (assessment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateDeleted_idx2"; -- --- Name: index_hmis_assessment_details_on_assessment_processor_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_assessment_details_on_assessment_processor_id ON public.hmis_assessment_details USING btree (assessment_processor_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateDeleted_idx3"; -- --- Name: index_hmis_assessment_details_on_definition_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_assessment_details_on_definition_id ON public.hmis_assessment_details USING btree (definition_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateDeleted_idx4"; -- --- Name: index_hmis_assessments_on_assessment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_assessments_on_assessment_id ON public.hmis_assessments USING btree (assessment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateProvided_idx"; -- --- Name: index_hmis_assessments_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_assessments_on_data_source_id ON public.hmis_assessments USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateProvided_idx1"; -- --- Name: index_hmis_assessments_on_name; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_assessments_on_name ON public.hmis_assessments USING btree (name); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateProvided_idx2"; -- --- Name: index_hmis_assessments_on_site_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_assessments_on_site_id ON public.hmis_assessments USING btree (site_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateProvided_idx3"; -- --- Name: index_hmis_case_notes_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_case_notes_on_client_id ON public.hmis_case_notes USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateProvided_idx4"; -- --- Name: index_hmis_case_notes_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_case_notes_on_enrollment_id ON public.hmis_case_notes USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateUpdated_idx"; -- --- Name: index_hmis_case_notes_on_organization_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_case_notes_on_organization_id ON public.hmis_case_notes USING btree (organization_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateUpdated_idx1"; -- --- Name: index_hmis_case_notes_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_case_notes_on_project_id ON public.hmis_case_notes USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateUpdated_idx2"; -- --- Name: index_hmis_case_notes_on_source; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_case_notes_on_source ON public.hmis_case_notes USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateUpdated_idx3"; -- --- Name: index_hmis_case_notes_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_case_notes_on_user_id ON public.hmis_case_notes USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_DateUpdated_idx4"; -- --- Name: index_hmis_client_alerts_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_client_alerts_on_client_id ON public.hmis_client_alerts USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx"; -- --- Name: index_hmis_client_alerts_on_created_by_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_client_alerts_on_created_by_id ON public.hmis_client_alerts USING btree (created_by_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx1"; -- --- Name: index_hmis_client_attributes_defined_text_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_client_attributes_defined_text_on_client_id ON public.hmis_client_attributes_defined_text USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx2"; -- --- Name: index_hmis_client_attributes_defined_text_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_client_attributes_defined_text_on_data_source_id ON public.hmis_client_attributes_defined_text USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx3"; -- --- Name: index_hmis_client_merge_histories_on_client_merge_audit_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_client_merge_histories_on_client_merge_audit_id ON public.hmis_client_merge_histories USING btree (client_merge_audit_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx4"; -- --- Name: index_hmis_client_merge_histories_on_deleted_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_client_merge_histories_on_deleted_client_id ON public.hmis_client_merge_histories USING btree (deleted_client_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_EnrollmentID_PersonalID_idx5"; -- --- Name: index_hmis_client_merge_histories_on_retained_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_client_merge_histories_on_retained_client_id ON public.hmis_client_merge_histories USING btree (retained_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_EnrollmentID_idx"; -- --- Name: index_hmis_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_clients_on_client_id ON public.hmis_clients USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_EnrollmentID_idx1"; -- --- Name: index_hmis_csv_2020_assessment_results_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_assessment_results_on_loader_id ON public.hmis_csv_2020_assessment_results USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_EnrollmentID_idx2"; -- --- Name: index_hmis_csv_2020_clients_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_clients_on_loader_id ON public.hmis_csv_2020_clients USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_EnrollmentID_idx3"; -- --- Name: index_hmis_csv_2020_current_living_situations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_current_living_situations_on_loader_id ON public.hmis_csv_2020_current_living_situations USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_EnrollmentID_idx4"; -- --- Name: index_hmis_csv_2020_disabilities_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_disabilities_on_loader_id ON public.hmis_csv_2020_disabilities USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_ExportID_idx"; -- --- Name: index_hmis_csv_2020_employment_educations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_employment_educations_on_loader_id ON public.hmis_csv_2020_employment_educations USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_ExportID_idx1"; -- --- Name: index_hmis_csv_2020_enrollment_cocs_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_enrollment_cocs_on_loader_id ON public.hmis_csv_2020_enrollment_cocs USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_ExportID_idx2"; -- --- Name: index_hmis_csv_2020_enrollments_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_enrollments_on_loader_id ON public.hmis_csv_2020_enrollments USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_ExportID_idx3"; -- --- Name: index_hmis_csv_2020_exports_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_exports_on_loader_id ON public.hmis_csv_2020_exports USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_ExportID_idx4"; -- --- Name: index_hmis_csv_2020_funders_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_funders_on_loader_id ON public.hmis_csv_2020_funders USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_PersonalID_idx"; -- --- Name: index_hmis_csv_2020_health_and_dvs_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_health_and_dvs_on_loader_id ON public.hmis_csv_2020_health_and_dvs USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_PersonalID_idx1"; -- --- Name: index_hmis_csv_2020_income_benefits_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_income_benefits_on_loader_id ON public.hmis_csv_2020_income_benefits USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_PersonalID_idx2"; -- --- Name: index_hmis_csv_2020_inventories_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_inventories_on_loader_id ON public.hmis_csv_2020_inventories USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_PersonalID_idx3"; -- --- Name: index_hmis_csv_2020_organizations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_organizations_on_loader_id ON public.hmis_csv_2020_organizations USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_PersonalID_idx4"; -- --- Name: index_hmis_csv_2020_project_cocs_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_project_cocs_on_loader_id ON public.hmis_csv_2020_project_cocs USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx"; -- --- Name: index_hmis_csv_2020_projects_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_projects_on_loader_id ON public.hmis_csv_2020_projects USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx1"; -- --- Name: index_hmis_csv_2020_services_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_services_on_loader_id ON public.hmis_csv_2020_services USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx2"; -- --- Name: index_hmis_csv_2020_users_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2020_users_on_loader_id ON public.hmis_csv_2020_users USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx3"; -- --- Name: index_hmis_csv_2022_affiliations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_affiliations_on_loader_id ON public.hmis_csv_2022_affiliations USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_DateDeleted_idx4"; -- --- Name: index_hmis_csv_2022_assessment_questions_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_assessment_questions_on_loader_id ON public.hmis_csv_2022_assessment_questions USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_DateProvided_idx"; -- --- Name: index_hmis_csv_2022_assessment_results_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_assessment_results_on_loader_id ON public.hmis_csv_2022_assessment_results USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_DateProvided_idx1"; -- --- Name: index_hmis_csv_2022_assessments_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_assessments_on_loader_id ON public.hmis_csv_2022_assessments USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_DateProvided_idx2"; -- --- Name: index_hmis_csv_2022_clients_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_clients_on_loader_id ON public.hmis_csv_2022_clients USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_DateProvided_idx3"; -- --- Name: index_hmis_csv_2022_current_living_situations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_current_living_situations_on_loader_id ON public.hmis_csv_2022_current_living_situations USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_DateProvided_idx4"; -- --- Name: index_hmis_csv_2022_disabilities_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_disabilities_on_loader_id ON public.hmis_csv_2022_disabilities USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_idx"; -- --- Name: index_hmis_csv_2022_employment_educations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_employment_educations_on_loader_id ON public.hmis_csv_2022_employment_educations USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_idx1"; -- --- Name: index_hmis_csv_2022_enrollment_cocs_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_enrollment_cocs_on_loader_id ON public.hmis_csv_2022_enrollment_cocs USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_idx2"; -- --- Name: index_hmis_csv_2022_enrollments_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_enrollments_on_loader_id ON public.hmis_csv_2022_enrollments USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_idx3"; -- --- Name: index_hmis_csv_2022_events_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_events_on_loader_id ON public.hmis_csv_2022_events USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_RecordType_idx4"; -- --- Name: index_hmis_csv_2022_exits_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_exits_on_loader_id ON public.hmis_csv_2022_exits USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_ServicesID_data_source_id_idx"; -- --- Name: index_hmis_csv_2022_exports_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_exports_on_loader_id ON public.hmis_csv_2022_exports USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_ServicesID_idx"; -- --- Name: index_hmis_csv_2022_funders_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_funders_on_loader_id ON public.hmis_csv_2022_funders USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_ServicesID_idx1"; -- --- Name: index_hmis_csv_2022_health_and_dvs_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_health_and_dvs_on_loader_id ON public.hmis_csv_2022_health_and_dvs USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_ServicesID_idx2"; -- --- Name: index_hmis_csv_2022_income_benefits_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_income_benefits_on_loader_id ON public.hmis_csv_2022_income_benefits USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_ServicesID_idx3"; -- --- Name: index_hmis_csv_2022_inventories_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_inventories_on_loader_id ON public.hmis_csv_2022_inventories USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_61_ServicesID_idx4"; -- --- Name: index_hmis_csv_2022_organizations_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_organizations_on_loader_id ON public.hmis_csv_2022_organizations USING btree (loader_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_61_importer_log_id_idx; -- --- Name: index_hmis_csv_2022_project_cocs_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_project_cocs_on_loader_id ON public.hmis_csv_2022_project_cocs USING btree (loader_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_61_pkey; -- --- Name: index_hmis_csv_2022_projects_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_61_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_projects_on_loader_id ON public.hmis_csv_2022_projects USING btree (loader_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_61_source_type_source_id_idx; -- --- Name: index_hmis_csv_2022_services_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_services_on_loader_id ON public.hmis_csv_2022_services USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateCreated_idx"; -- --- Name: index_hmis_csv_2022_users_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_users_on_loader_id ON public.hmis_csv_2022_users USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateCreated_idx1"; -- --- Name: index_hmis_csv_2022_youth_education_statuses_on_loader_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_2022_youth_education_statuses_on_loader_id ON public.hmis_csv_2022_youth_education_statuses USING btree (loader_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateCreated_idx2"; -- --- Name: index_hmis_csv_import_errors_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_import_errors_on_importer_log_id ON public.hmis_csv_import_errors USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateCreated_idx3"; -- --- Name: index_hmis_csv_import_validations_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_import_validations_on_importer_log_id ON public.hmis_csv_import_validations USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateCreated_idx4"; -- --- Name: index_hmis_csv_import_validations_on_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_import_validations_on_type ON public.hmis_csv_import_validations USING btree (type); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateDeleted_idx"; -- --- Name: index_hmis_csv_importer_logs_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_importer_logs_on_created_at ON public.hmis_csv_importer_logs USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateDeleted_idx1"; -- --- Name: index_hmis_csv_importer_logs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_importer_logs_on_data_source_id ON public.hmis_csv_importer_logs USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateDeleted_idx2"; -- --- Name: index_hmis_csv_importer_logs_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_importer_logs_on_updated_at ON public.hmis_csv_importer_logs USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateDeleted_idx3"; -- --- Name: index_hmis_csv_load_errors_on_loader_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_load_errors_on_loader_log_id ON public.hmis_csv_load_errors USING btree (loader_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateDeleted_idx4"; -- --- Name: index_hmis_csv_loader_logs_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_loader_logs_on_created_at ON public.hmis_csv_loader_logs USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateProvided_idx"; -- --- Name: index_hmis_csv_loader_logs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_loader_logs_on_data_source_id ON public.hmis_csv_loader_logs USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateProvided_idx1"; -- --- Name: index_hmis_csv_loader_logs_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_loader_logs_on_importer_log_id ON public.hmis_csv_loader_logs USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateProvided_idx2"; -- --- Name: index_hmis_csv_loader_logs_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_csv_loader_logs_on_updated_at ON public.hmis_csv_loader_logs USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateProvided_idx3"; -- --- Name: index_hmis_dqt_assessments_on_assessment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_assessments_on_assessment_id ON public.hmis_dqt_assessments USING btree (assessment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateProvided_idx4"; -- --- Name: index_hmis_dqt_assessments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_assessments_on_client_id ON public.hmis_dqt_assessments USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateUpdated_idx"; -- --- Name: index_hmis_dqt_assessments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_assessments_on_enrollment_id ON public.hmis_dqt_assessments USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateUpdated_idx1"; -- --- Name: index_hmis_dqt_assessments_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_assessments_on_report_id ON public.hmis_dqt_assessments USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateUpdated_idx2"; -- --- Name: index_hmis_dqt_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_clients_on_client_id ON public.hmis_dqt_clients USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateUpdated_idx3"; -- --- Name: index_hmis_dqt_clients_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_clients_on_report_id ON public.hmis_dqt_clients USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_DateUpdated_idx4"; -- --- Name: index_hmis_dqt_current_living_situations_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_current_living_situations_on_client_id ON public.hmis_dqt_current_living_situations USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx"; -- --- Name: index_hmis_dqt_current_living_situations_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_current_living_situations_on_enrollment_id ON public.hmis_dqt_current_living_situations USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx1"; -- --- Name: index_hmis_dqt_current_living_situations_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_current_living_situations_on_report_id ON public.hmis_dqt_current_living_situations USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx2"; -- --- Name: index_hmis_dqt_enrollments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_enrollments_on_client_id ON public.hmis_dqt_enrollments USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx3"; -- --- Name: index_hmis_dqt_enrollments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_enrollments_on_enrollment_id ON public.hmis_dqt_enrollments USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx4"; -- --- Name: index_hmis_dqt_enrollments_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_enrollments_on_project_id ON public.hmis_dqt_enrollments USING btree (project_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_EnrollmentID_PersonalID_idx5"; -- --- Name: index_hmis_dqt_enrollments_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_enrollments_on_report_id ON public.hmis_dqt_enrollments USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_EnrollmentID_idx"; -- --- Name: index_hmis_dqt_events_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_events_on_client_id ON public.hmis_dqt_events USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_EnrollmentID_idx1"; -- --- Name: index_hmis_dqt_events_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_events_on_enrollment_id ON public.hmis_dqt_events USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_EnrollmentID_idx2"; -- --- Name: index_hmis_dqt_events_on_event_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_events_on_event_id ON public.hmis_dqt_events USING btree (event_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_EnrollmentID_idx3"; -- --- Name: index_hmis_dqt_events_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_events_on_report_id ON public.hmis_dqt_events USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_EnrollmentID_idx4"; -- --- Name: index_hmis_dqt_inventories_on_inventory_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_inventories_on_inventory_id ON public.hmis_dqt_inventories USING btree (inventory_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_ExportID_idx"; -- --- Name: index_hmis_dqt_inventories_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_inventories_on_project_id ON public.hmis_dqt_inventories USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_ExportID_idx1"; -- --- Name: index_hmis_dqt_inventories_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_dqt_inventories_on_report_id ON public.hmis_dqt_inventories USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_ExportID_idx2"; -- --- Name: index_hmis_external_form_publications_on_definition_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_external_form_publications_on_definition_id ON public.hmis_external_form_publications USING btree (definition_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_ExportID_idx3"; -- --- Name: index_hmis_external_form_submissions_on_definition_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_external_form_submissions_on_definition_id ON public.hmis_external_form_submissions USING btree (definition_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_ExportID_idx4"; -- --- Name: index_hmis_external_form_submissions_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_external_form_submissions_on_enrollment_id ON public.hmis_external_form_submissions USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_PersonalID_idx"; -- --- Name: index_hmis_external_referral_postings_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_external_referral_postings_on_project_id ON public.hmis_external_referral_postings USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_PersonalID_idx1"; -- --- Name: index_hmis_external_referral_postings_on_unit_type_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_external_referral_postings_on_unit_type_id ON public.hmis_external_referral_postings USING btree (unit_type_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_PersonalID_idx2"; -- --- Name: index_hmis_external_referral_requests_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_external_referral_requests_on_project_id ON public.hmis_external_referral_requests USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_PersonalID_idx3"; -- --- Name: index_hmis_external_referral_requests_on_requested_by_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_external_referral_requests_on_requested_by_id ON public.hmis_external_referral_requests USING btree (requested_by_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_PersonalID_idx4"; -- --- Name: index_hmis_external_referral_requests_on_unit_type_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_external_referral_requests_on_unit_type_id ON public.hmis_external_referral_requests USING btree (unit_type_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx"; -- --- Name: index_hmis_external_referral_requests_on_voided_by_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_external_referral_requests_on_voided_by_id ON public.hmis_external_referral_requests USING btree (voided_by_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx1"; -- --- Name: index_hmis_external_referrals_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_external_referrals_on_enrollment_id ON public.hmis_external_referrals USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx2"; -- --- Name: index_hmis_external_unit_availability_syncs_on_unit_type_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_external_unit_availability_syncs_on_unit_type_id ON public.hmis_external_unit_availability_syncs USING btree (unit_type_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx3"; -- --- Name: index_hmis_external_unit_availability_syncs_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_external_unit_availability_syncs_on_user_id ON public.hmis_external_unit_availability_syncs USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_DateDeleted_idx4"; -- --- Name: index_hmis_form_instances_on_entity; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_instances_on_entity ON public.hmis_form_instances USING btree (entity_type, entity_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_DateProvided_idx"; -- --- Name: index_hmis_form_processors_on_ce_assessment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_ce_assessment_id ON public.hmis_form_processors USING btree (ce_assessment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_DateProvided_idx1"; -- --- Name: index_hmis_form_processors_on_ce_event_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_ce_event_id ON public.hmis_form_processors USING btree (ce_event_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_DateProvided_idx2"; -- --- Name: index_hmis_form_processors_on_chronic_health_condition_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_chronic_health_condition_id ON public.hmis_form_processors USING btree (chronic_health_condition_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_DateProvided_idx3"; -- --- Name: index_hmis_form_processors_on_clh_location_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_clh_location_id ON public.hmis_form_processors USING btree (clh_location_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_DateProvided_idx4"; -- --- Name: index_hmis_form_processors_on_developmental_disability_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_developmental_disability_id ON public.hmis_form_processors USING btree (developmental_disability_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_idx"; -- --- Name: index_hmis_form_processors_on_enrollment_coc_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_enrollment_coc_id ON public.hmis_form_processors USING btree (enrollment_coc_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_idx1"; -- --- Name: index_hmis_form_processors_on_exit_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_exit_id ON public.hmis_form_processors USING btree (exit_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_idx2"; -- --- Name: index_hmis_form_processors_on_health_and_dv_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_health_and_dv_id ON public.hmis_form_processors USING btree (health_and_dv_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_idx3"; -- --- Name: index_hmis_form_processors_on_hiv_aids_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_hiv_aids_id ON public.hmis_form_processors USING btree (hiv_aids_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_RecordType_idx4"; -- --- Name: index_hmis_form_processors_on_income_benefit_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_income_benefit_id ON public.hmis_form_processors USING btree (income_benefit_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_ServicesID_data_source_id_idx"; -- --- Name: index_hmis_form_processors_on_mental_health_disorder_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_mental_health_disorder_id ON public.hmis_form_processors USING btree (mental_health_disorder_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_ServicesID_idx"; -- --- Name: index_hmis_form_processors_on_physical_disability_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_physical_disability_id ON public.hmis_form_processors USING btree (physical_disability_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_ServicesID_idx1"; -- --- Name: index_hmis_form_processors_on_substance_use_disorder_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_form_processors_on_substance_use_disorder_id ON public.hmis_form_processors USING btree (substance_use_disorder_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_ServicesID_idx2"; -- --- Name: index_hmis_forms_on_assessment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_forms_on_assessment_id ON public.hmis_forms USING btree (assessment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_ServicesID_idx3"; -- --- Name: index_hmis_forms_on_client_id_and_assessment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_forms_on_client_id_and_assessment_id ON public.hmis_forms USING btree (client_id, assessment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_62_ServicesID_idx4"; -- --- Name: index_hmis_forms_on_collected_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_forms_on_collected_at ON public.hmis_forms USING btree (collected_at); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_62_importer_log_id_idx; -- --- Name: index_hmis_forms_on_name; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_forms_on_name ON public.hmis_forms USING btree (name); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_62_pkey; -- --- Name: index_hmis_group_viewable_entities_on_collection_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_62_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_group_viewable_entities_on_collection_id ON public.hmis_group_viewable_entities USING btree (collection_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_62_source_type_source_id_idx; -- --- Name: index_hmis_group_viewable_entities_on_entity; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_group_viewable_entities_on_entity ON public.hmis_group_viewable_entities USING btree (entity_type, entity_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateCreated_idx"; -- --- Name: index_hmis_import_configs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_import_configs_on_data_source_id ON public.hmis_import_configs USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateCreated_idx1"; -- --- Name: index_hmis_project_configs_on_organization_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_project_configs_on_organization_id ON public.hmis_project_configs USING btree (organization_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateCreated_idx2"; -- --- Name: index_hmis_project_configs_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_project_configs_on_project_id ON public.hmis_project_configs USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateCreated_idx3"; -- --- Name: index_hmis_project_unit_type_mappings_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_project_unit_type_mappings_on_project_id ON public.hmis_project_unit_type_mappings USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateCreated_idx4"; -- --- Name: index_hmis_project_unit_type_mappings_on_unit_type_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_project_unit_type_mappings_on_unit_type_id ON public.hmis_project_unit_type_mappings USING btree (unit_type_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateDeleted_idx"; -- --- Name: index_hmis_scan_card_codes_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_scan_card_codes_on_client_id ON public.hmis_scan_card_codes USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateDeleted_idx1"; -- --- Name: index_hmis_scan_card_codes_on_created_by_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_scan_card_codes_on_created_by_id ON public.hmis_scan_card_codes USING btree (created_by_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateDeleted_idx2"; -- --- Name: index_hmis_scan_card_codes_on_deleted_by_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_scan_card_codes_on_deleted_by_id ON public.hmis_scan_card_codes USING btree (deleted_by_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateDeleted_idx3"; -- --- Name: index_hmis_scan_card_codes_on_value; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_hmis_scan_card_codes_on_value ON public.hmis_scan_card_codes USING btree (value); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateDeleted_idx4"; -- --- Name: index_hmis_staff_assignment_relationships_on_name; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_hmis_staff_assignment_relationships_on_name ON public.hmis_staff_assignment_relationships USING btree (name); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateProvided_idx"; -- --- Name: index_hmis_staff_assignments_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_staff_assignments_on_data_source_id ON public.hmis_staff_assignments USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateProvided_idx1"; -- --- Name: index_hmis_staff_assignments_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_staff_assignments_on_user_id ON public.hmis_staff_assignments USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateProvided_idx2"; -- --- Name: index_hmis_supplemental_data_sets_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_supplemental_data_sets_on_data_source_id ON public.hmis_supplemental_data_sets USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateProvided_idx3"; -- --- Name: index_hmis_supplemental_data_sets_on_remote_credential_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_supplemental_data_sets_on_remote_credential_id ON public.hmis_supplemental_data_sets USING btree (remote_credential_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateProvided_idx4"; -- --- Name: index_hmis_unit_occupancy_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_unit_occupancy_on_enrollment_id ON public.hmis_unit_occupancy USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateUpdated_idx"; -- --- Name: index_hmis_unit_occupancy_on_hmis_service_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_unit_occupancy_on_hmis_service_id ON public.hmis_unit_occupancy USING btree (hmis_service_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateUpdated_idx1"; -- --- Name: index_hmis_unit_occupancy_on_unit_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hmis_unit_occupancy_on_unit_id ON public.hmis_unit_occupancy USING btree (unit_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateUpdated_idx2"; -- --- Name: index_homeless_summary_report_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_homeless_summary_report_clients_on_client_id ON public.homeless_summary_report_clients USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateUpdated_idx3"; -- --- Name: index_homeless_summary_report_clients_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_homeless_summary_report_clients_on_created_at ON public.homeless_summary_report_clients USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_DateUpdated_idx4"; -- --- Name: index_homeless_summary_report_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_homeless_summary_report_clients_on_deleted_at ON public.homeless_summary_report_clients USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx"; -- --- Name: index_homeless_summary_report_clients_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_homeless_summary_report_clients_on_report_id ON public.homeless_summary_report_clients USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx1"; -- --- Name: index_homeless_summary_report_clients_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_homeless_summary_report_clients_on_updated_at ON public.homeless_summary_report_clients USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx2"; -- --- Name: index_homeless_summary_report_results_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_homeless_summary_report_results_on_report_id ON public.homeless_summary_report_results USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx3"; -- --- Name: index_hopwa_caper_enrollments_on_destination_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hopwa_caper_enrollments_on_destination_client_id ON public.hopwa_caper_enrollments USING btree (destination_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx4"; -- --- Name: index_hopwa_caper_enrollments_on_report_household_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hopwa_caper_enrollments_on_report_household_id ON public.hopwa_caper_enrollments USING btree (report_household_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_EnrollmentID_PersonalID_idx5"; -- --- Name: index_hopwa_caper_enrollments_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hopwa_caper_enrollments_on_report_instance_id ON public.hopwa_caper_enrollments USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_EnrollmentID_idx"; -- --- Name: index_hopwa_caper_services_on_destination_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hopwa_caper_services_on_destination_client_id ON public.hopwa_caper_services USING btree (destination_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_EnrollmentID_idx1"; -- --- Name: index_hopwa_caper_services_on_report_household_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hopwa_caper_services_on_report_household_id ON public.hopwa_caper_services USING btree (report_household_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_EnrollmentID_idx2"; -- --- Name: index_hopwa_caper_services_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hopwa_caper_services_on_report_instance_id ON public.hopwa_caper_services USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_EnrollmentID_idx3"; -- --- Name: index_housing_resolution_plans_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_housing_resolution_plans_on_client_id ON public.housing_resolution_plans USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_EnrollmentID_idx4"; -- --- Name: index_housing_resolution_plans_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_housing_resolution_plans_on_user_id ON public.housing_resolution_plans USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_ExportID_idx"; -- --- Name: index_hud_apr_client_liv_sit; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_apr_client_liv_sit ON public.hud_report_apr_living_situations USING btree (hud_report_apr_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_ExportID_idx1"; -- --- Name: index_hud_chronics_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_chronics_on_client_id ON public.hud_chronics USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_ExportID_idx2"; -- --- Name: index_hud_create_logs_on_effective_date; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_create_logs_on_effective_date ON public.hud_create_logs USING btree (effective_date); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_ExportID_idx3"; -- --- Name: index_hud_create_logs_on_imported_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_create_logs_on_imported_at ON public.hud_create_logs USING btree (imported_at); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_ExportID_idx4"; -- --- Name: index_hud_dq_client_liv_sit; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_dq_client_liv_sit ON public.hud_report_dq_living_situations USING btree (hud_report_dq_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_PersonalID_idx"; -- --- Name: index_hud_lsa_summary_results_on_hud_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_lsa_summary_results_on_hud_report_instance_id ON public.hud_lsa_summary_results USING btree (hud_report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_PersonalID_idx1"; -- --- Name: index_hud_report_apr_ce_assessments_on_hud_report_apr_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_apr_ce_assessments_on_hud_report_apr_client_id ON public.hud_report_apr_ce_assessments USING btree (hud_report_apr_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_PersonalID_idx2"; -- --- Name: index_hud_report_apr_ce_assessments_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_apr_ce_assessments_on_project_id ON public.hud_report_apr_ce_assessments USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_PersonalID_idx3"; -- --- Name: index_hud_report_apr_ce_events_on_hud_report_apr_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_apr_ce_events_on_hud_report_apr_client_id ON public.hud_report_apr_ce_events USING btree (hud_report_apr_client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_PersonalID_idx4"; -- --- Name: index_hud_report_apr_ce_events_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_apr_ce_events_on_project_id ON public.hud_report_apr_ce_events USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx"; -- --- Name: index_hud_report_cells_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_cells_on_report_instance_id ON public.hud_report_cells USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx1"; -- --- Name: index_hud_report_hic_funders_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_hic_funders_on_data_source_id ON public.hud_report_hic_funders USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx2"; -- --- Name: index_hud_report_hic_funders_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_hic_funders_on_report_instance_id ON public.hud_report_hic_funders USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx3"; -- --- Name: index_hud_report_hic_inventories_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_hic_inventories_on_data_source_id ON public.hud_report_hic_inventories USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_DateDeleted_idx4"; -- --- Name: index_hud_report_hic_inventories_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_hic_inventories_on_report_instance_id ON public.hud_report_hic_inventories USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_DateProvided_idx"; -- --- Name: index_hud_report_hic_organizations_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_hic_organizations_on_data_source_id ON public.hud_report_hic_organizations USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_DateProvided_idx1"; -- --- Name: index_hud_report_hic_organizations_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_hic_organizations_on_report_instance_id ON public.hud_report_hic_organizations USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_DateProvided_idx2"; -- --- Name: index_hud_report_hic_project_cocs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_hic_project_cocs_on_data_source_id ON public.hud_report_hic_project_cocs USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_DateProvided_idx3"; -- --- Name: index_hud_report_hic_project_cocs_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_hic_project_cocs_on_report_instance_id ON public.hud_report_hic_project_cocs USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_DateProvided_idx4"; -- --- Name: index_hud_report_hic_projects_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_hic_projects_on_data_source_id ON public.hud_report_hic_projects USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_idx"; -- --- Name: index_hud_report_hic_projects_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_hic_projects_on_report_instance_id ON public.hud_report_hic_projects USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_idx1"; -- --- Name: index_hud_report_instances_on_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_instances_on_export_id ON public.hud_report_instances USING btree (export_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_idx2"; -- --- Name: index_hud_report_instances_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_instances_on_user_id ON public.hud_report_instances USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_idx3"; -- --- Name: index_hud_report_path_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_path_clients_on_client_id ON public.hud_report_path_clients USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_RecordType_idx4"; -- --- Name: index_hud_report_path_clients_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_path_clients_on_data_source_id ON public.hud_report_path_clients USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_ServicesID_data_source_id_idx"; -- --- Name: index_hud_report_path_clients_on_incomes_at_entry; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_path_clients_on_incomes_at_entry ON public.hud_report_path_clients USING gin (incomes_at_entry); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_ServicesID_idx"; -- --- Name: index_hud_report_path_clients_on_incomes_at_exit; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_path_clients_on_incomes_at_exit ON public.hud_report_path_clients USING gin (incomes_at_exit); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_ServicesID_idx1"; -- --- Name: index_hud_report_path_clients_on_incomes_at_report_end; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_path_clients_on_incomes_at_report_end ON public.hud_report_path_clients USING gin (incomes_at_report_end); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_ServicesID_idx2"; -- --- Name: index_hud_report_path_clients_on_referrals; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_path_clients_on_referrals ON public.hud_report_path_clients USING gin (referrals); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_ServicesID_idx3"; -- --- Name: index_hud_report_path_clients_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_path_clients_on_report_instance_id ON public.hud_report_path_clients USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_63_ServicesID_idx4"; -- --- Name: index_hud_report_path_clients_on_services; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_path_clients_on_services ON public.hud_report_path_clients USING gin (services); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_63_importer_log_id_idx; -- --- Name: index_hud_report_pit_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_pit_clients_on_client_id ON public.hud_report_pit_clients USING btree (client_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_63_pkey; -- --- Name: index_hud_report_pit_clients_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_63_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_pit_clients_on_data_source_id ON public.hud_report_pit_clients USING btree (data_source_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_63_source_type_source_id_idx; -- --- Name: index_hud_report_pit_clients_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_pit_clients_on_report_instance_id ON public.hud_report_pit_clients USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateCreated_idx"; -- --- Name: index_hud_report_spm_bed_nights_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_bed_nights_on_client_id ON public.hud_report_spm_bed_nights USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateCreated_idx1"; -- --- Name: index_hud_report_spm_bed_nights_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_bed_nights_on_enrollment_id ON public.hud_report_spm_bed_nights USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateCreated_idx2"; -- --- Name: index_hud_report_spm_bed_nights_on_episode_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_bed_nights_on_episode_id ON public.hud_report_spm_bed_nights USING btree (episode_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateCreated_idx3"; -- --- Name: index_hud_report_spm_bed_nights_on_service_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_bed_nights_on_service_id ON public.hud_report_spm_bed_nights USING btree (service_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateCreated_idx4"; -- --- Name: index_hud_report_spm_enrollment_links_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_enrollment_links_on_enrollment_id ON public.hud_report_spm_enrollment_links USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateDeleted_idx"; -- --- Name: index_hud_report_spm_enrollment_links_on_episode_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_enrollment_links_on_episode_id ON public.hud_report_spm_enrollment_links USING btree (episode_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateDeleted_idx1"; -- --- Name: index_hud_report_spm_enrollments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_enrollments_on_client_id ON public.hud_report_spm_enrollments USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateDeleted_idx2"; -- --- Name: index_hud_report_spm_enrollments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_enrollments_on_enrollment_id ON public.hud_report_spm_enrollments USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateDeleted_idx3"; -- --- Name: index_hud_report_spm_enrollments_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_enrollments_on_report_instance_id ON public.hud_report_spm_enrollments USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateDeleted_idx4"; -- --- Name: index_hud_report_spm_episodes_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_episodes_on_client_id ON public.hud_report_spm_episodes USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateProvided_idx"; -- --- Name: index_hud_report_spm_returns_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_returns_on_client_id ON public.hud_report_spm_returns USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateProvided_idx1"; -- --- Name: index_hud_report_spm_returns_on_exit_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_returns_on_exit_enrollment_id ON public.hud_report_spm_returns USING btree (exit_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateProvided_idx2"; -- --- Name: index_hud_report_spm_returns_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_returns_on_report_instance_id ON public.hud_report_spm_returns USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateProvided_idx3"; -- --- Name: index_hud_report_spm_returns_on_return_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_spm_returns_on_return_enrollment_id ON public.hud_report_spm_returns USING btree (return_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateProvided_idx4"; -- --- Name: index_hud_report_universe_members_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_universe_members_on_client_id ON public.hud_report_universe_members USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateUpdated_idx"; -- --- Name: index_hud_report_universe_members_on_report_cell_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_hud_report_universe_members_on_report_cell_id ON public.hud_report_universe_members USING btree (report_cell_id) WHERE (deleted_at IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateUpdated_idx1"; -- --- Name: index_import_logs_on_completed_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_import_logs_on_completed_at ON public.import_logs USING btree (completed_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateUpdated_idx2"; -- --- Name: index_import_logs_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_import_logs_on_created_at ON public.import_logs USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateUpdated_idx3"; -- --- Name: index_import_logs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_import_logs_on_data_source_id ON public.import_logs USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_DateUpdated_idx4"; -- --- Name: index_import_logs_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_import_logs_on_importer_log_id ON public.import_logs USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx"; -- --- Name: index_import_logs_on_loader_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_import_logs_on_loader_log_id ON public.import_logs USING btree (loader_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx1"; -- --- Name: index_import_logs_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_import_logs_on_updated_at ON public.import_logs USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx2"; -- --- Name: index_import_overrides_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_import_overrides_on_data_source_id ON public.import_overrides USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx3"; -- --- Name: index_inbound_api_configurations_on_hashed_api_key; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_inbound_api_configurations_on_hashed_api_key ON public.inbound_api_configurations USING btree (hashed_api_key); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx4"; -- --- Name: index_inbound_api_configurations_on_internal_system_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_inbound_api_configurations_on_internal_system_id ON public.inbound_api_configurations USING btree (internal_system_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_EnrollmentID_PersonalID_idx5"; -- --- Name: index_inbound_api_configurations_on_plain_text_reminder; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_inbound_api_configurations_on_plain_text_reminder ON public.inbound_api_configurations USING btree (plain_text_reminder); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_EnrollmentID_idx"; -- --- Name: index_income_benefits_report_clients_earlier; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_report_clients_earlier ON public.income_benefits_report_clients USING btree (earlier_income_record_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_EnrollmentID_idx1"; -- --- Name: index_income_benefits_report_clients_later; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_report_clients_later ON public.income_benefits_report_clients USING btree (later_income_record_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_EnrollmentID_idx2"; -- --- Name: index_income_benefits_report_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_report_clients_on_client_id ON public.income_benefits_report_clients USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_EnrollmentID_idx3"; -- --- Name: index_income_benefits_report_clients_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_report_clients_on_created_at ON public.income_benefits_report_clients USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_EnrollmentID_idx4"; -- --- Name: index_income_benefits_report_clients_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_report_clients_on_enrollment_id ON public.income_benefits_report_clients USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_ExportID_idx"; -- --- Name: index_income_benefits_report_clients_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_report_clients_on_project_id ON public.income_benefits_report_clients USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_ExportID_idx1"; -- --- Name: index_income_benefits_report_clients_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_report_clients_on_report_id ON public.income_benefits_report_clients USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_ExportID_idx2"; -- --- Name: index_income_benefits_report_clients_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_report_clients_on_updated_at ON public.income_benefits_report_clients USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_ExportID_idx3"; -- --- Name: index_income_benefits_report_incomes_on_Earned; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_income_benefits_report_incomes_on_Earned" ON public.income_benefits_report_incomes USING btree ("Earned"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_ExportID_idx4"; -- --- Name: index_income_benefits_report_incomes_on_IncomeFromAnySource; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX "index_income_benefits_report_incomes_on_IncomeFromAnySource" ON public.income_benefits_report_incomes USING btree ("IncomeFromAnySource"); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_PersonalID_idx"; -- --- Name: index_income_benefits_report_incomes_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_report_incomes_on_client_id ON public.income_benefits_report_incomes USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_PersonalID_idx1"; -- --- Name: index_income_benefits_report_incomes_on_income_benefits_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_report_incomes_on_income_benefits_id ON public.income_benefits_report_incomes USING btree (income_benefits_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_PersonalID_idx2"; -- --- Name: index_income_benefits_report_incomes_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_report_incomes_on_report_id ON public.income_benefits_report_incomes USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_PersonalID_idx3"; -- --- Name: index_income_benefits_reports_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_reports_on_created_at ON public.income_benefits_reports USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_PersonalID_idx4"; -- --- Name: index_income_benefits_reports_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_reports_on_deleted_at ON public.income_benefits_reports USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx"; -- --- Name: index_income_benefits_reports_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_reports_on_updated_at ON public.income_benefits_reports USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx1"; -- --- Name: index_income_benefits_reports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_income_benefits_reports_on_user_id ON public.income_benefits_reports USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx2"; -- --- Name: index_internal_systems_on_name; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_internal_systems_on_name ON public.internal_systems USING btree (name); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx3"; -- --- Name: index_involved_in_imports_on_importer_log_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_involved_in_imports_on_importer_log_id ON public.involved_in_imports USING btree (importer_log_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_DateDeleted_idx4"; -- --- Name: index_lftp_s3_syncs_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_lftp_s3_syncs_on_created_at ON public.lftp_s3_syncs USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_DateProvided_idx"; -- --- Name: index_lftp_s3_syncs_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_lftp_s3_syncs_on_data_source_id ON public.lftp_s3_syncs USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_DateProvided_idx1"; -- --- Name: index_lftp_s3_syncs_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_lftp_s3_syncs_on_updated_at ON public.lftp_s3_syncs USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_DateProvided_idx2"; -- --- Name: index_longitudinal_spm_results_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_longitudinal_spm_results_on_report_id ON public.longitudinal_spm_results USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_DateProvided_idx3"; -- --- Name: index_longitudinal_spm_results_on_spm_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_longitudinal_spm_results_on_spm_id ON public.longitudinal_spm_results USING btree (spm_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_DateProvided_idx4"; -- --- Name: index_longitudinal_spm_spms_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_longitudinal_spm_spms_on_report_id ON public.longitudinal_spm_spms USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_idx"; -- --- Name: index_longitudinal_spm_spms_on_spm_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_longitudinal_spm_spms_on_spm_id ON public.longitudinal_spm_spms USING btree (spm_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_idx1"; -- --- Name: index_longitudinal_spms_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_longitudinal_spms_on_user_id ON public.longitudinal_spms USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_idx2"; -- --- Name: index_lookups_ethnicities_on_value; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_lookups_ethnicities_on_value ON public.lookups_ethnicities USING btree (value); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_idx3"; -- --- Name: index_lookups_funding_sources_on_value; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_lookups_funding_sources_on_value ON public.lookups_funding_sources USING btree (value); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_RecordType_idx4"; -- --- Name: index_lookups_genders_on_value; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_lookups_genders_on_value ON public.lookups_genders USING btree (value); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_ServicesID_data_source_id_idx"; -- --- Name: index_lookups_living_situations_on_value; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_lookups_living_situations_on_value ON public.lookups_living_situations USING btree (value); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_ServicesID_idx"; -- --- Name: index_lookups_project_types_on_value; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_lookups_project_types_on_value ON public.lookups_project_types USING btree (value); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_ServicesID_idx1"; -- --- Name: index_lookups_relationships_on_value; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_lookups_relationships_on_value ON public.lookups_relationships USING btree (value); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_ServicesID_idx2"; -- --- Name: index_lookups_tracking_methods_on_value; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_lookups_tracking_methods_on_value ON public.lookups_tracking_methods USING btree (value); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_ServicesID_idx3"; -- --- Name: index_lookups_yes_no_etcs_on_value; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_lookups_yes_no_etcs_on_value ON public.lookups_yes_no_etcs USING btree (value); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_64_ServicesID_idx4"; -- --- Name: index_ma_monthly_performance_enrollments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ma_monthly_performance_enrollments_on_client_id ON public.ma_monthly_performance_enrollments USING btree (client_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_64_importer_log_id_idx; -- --- Name: index_ma_monthly_performance_enrollments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ma_monthly_performance_enrollments_on_enrollment_id ON public.ma_monthly_performance_enrollments USING btree (enrollment_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_64_pkey; -- --- Name: index_ma_monthly_performance_enrollments_on_project_coc_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_64_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ma_monthly_performance_enrollments_on_project_coc_id ON public.ma_monthly_performance_enrollments USING btree (project_coc_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_64_source_type_source_id_idx; -- --- Name: index_ma_monthly_performance_enrollments_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ma_monthly_performance_enrollments_on_project_id ON public.ma_monthly_performance_enrollments USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateCreated_idx"; -- --- Name: index_ma_monthly_performance_enrollments_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ma_monthly_performance_enrollments_on_report_id ON public.ma_monthly_performance_enrollments USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateCreated_idx1"; -- --- Name: index_ma_monthly_performance_projects_on_project_coc_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ma_monthly_performance_projects_on_project_coc_id ON public.ma_monthly_performance_projects USING btree (project_coc_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateCreated_idx2"; -- --- Name: index_ma_monthly_performance_projects_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ma_monthly_performance_projects_on_project_id ON public.ma_monthly_performance_projects USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateCreated_idx3"; -- --- Name: index_ma_monthly_performance_projects_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ma_monthly_performance_projects_on_report_id ON public.ma_monthly_performance_projects USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateCreated_idx4"; -- --- Name: index_ma_yya_report_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ma_yya_report_clients_on_client_id ON public.ma_yya_report_clients USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateDeleted_idx"; -- --- Name: index_ma_yya_report_clients_on_service_history_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_ma_yya_report_clients_on_service_history_enrollment_id ON public.ma_yya_report_clients USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateDeleted_idx1"; -- --- Name: index_new_service_history_on_first_date_in_program; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_new_service_history_on_first_date_in_program ON public.new_service_history USING brin (first_date_in_program); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateDeleted_idx2"; -- --- Name: index_nightly_census_by_projects_on_date; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_nightly_census_by_projects_on_date ON public.nightly_census_by_projects USING btree (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateDeleted_idx3"; -- --- Name: index_nightly_census_by_projects_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_nightly_census_by_projects_on_project_id ON public.nightly_census_by_projects USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateDeleted_idx4"; -- --- Name: index_non_hmis_uploads_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_non_hmis_uploads_on_deleted_at ON public.non_hmis_uploads USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateProvided_idx"; -- --- Name: index_performance_metrics_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_performance_metrics_clients_on_client_id ON public.performance_metrics_clients USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateProvided_idx1"; -- --- Name: index_performance_metrics_clients_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_performance_metrics_clients_on_created_at ON public.performance_metrics_clients USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateProvided_idx2"; -- --- Name: index_performance_metrics_clients_on_current_period_caper_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_performance_metrics_clients_on_current_period_caper_id ON public.performance_metrics_clients USING btree (current_period_caper_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateProvided_idx3"; -- --- Name: index_performance_metrics_clients_on_current_period_spm_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_performance_metrics_clients_on_current_period_spm_id ON public.performance_metrics_clients USING btree (current_period_spm_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateProvided_idx4"; -- --- Name: index_performance_metrics_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_performance_metrics_clients_on_deleted_at ON public.performance_metrics_clients USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateUpdated_idx"; -- --- Name: index_performance_metrics_clients_on_prior_period_caper_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_performance_metrics_clients_on_prior_period_caper_id ON public.performance_metrics_clients USING btree (prior_period_caper_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateUpdated_idx1"; -- --- Name: index_performance_metrics_clients_on_prior_period_spm_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_performance_metrics_clients_on_prior_period_spm_id ON public.performance_metrics_clients USING btree (prior_period_spm_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateUpdated_idx2"; -- --- Name: index_performance_metrics_clients_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_performance_metrics_clients_on_report_id ON public.performance_metrics_clients USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateUpdated_idx3"; -- --- Name: index_performance_metrics_clients_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_performance_metrics_clients_on_updated_at ON public.performance_metrics_clients USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_DateUpdated_idx4"; -- --- Name: index_places_on_lat_and_lon; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_places_on_lat_and_lon ON public.places USING btree (lat, lon); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx"; -- --- Name: index_places_on_location; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_places_on_location ON public.places USING btree (location); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx1"; -- --- Name: index_pm_client_projects_on_client_id_and_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_pm_client_projects_on_client_id_and_report_id ON public.pm_client_projects USING btree (client_id, report_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx2"; -- --- Name: index_pm_client_projects_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_pm_client_projects_on_deleted_at ON public.pm_client_projects USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx3"; -- --- Name: index_pm_client_projects_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_pm_client_projects_on_project_id ON public.pm_client_projects USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx4"; -- --- Name: index_pm_client_projects_on_project_id_and_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_pm_client_projects_on_project_id_and_report_id ON public.pm_client_projects USING btree (project_id, report_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_EnrollmentID_PersonalID_idx5"; -- --- Name: index_pm_clients_on_client_id_and_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_pm_clients_on_client_id_and_report_id ON public.pm_clients USING btree (client_id, report_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_EnrollmentID_idx"; -- --- Name: index_pm_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_pm_clients_on_deleted_at ON public.pm_clients USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_EnrollmentID_idx1"; -- --- Name: index_pm_coc_static_spms_on_goal_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_pm_coc_static_spms_on_goal_id ON public.pm_coc_static_spms USING btree (goal_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_EnrollmentID_idx2"; -- --- Name: index_pm_projects_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_pm_projects_on_deleted_at ON public.pm_projects USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_EnrollmentID_idx3"; -- --- Name: index_pm_projects_on_project_id_and_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_pm_projects_on_project_id_and_report_id ON public.pm_projects USING btree (project_id, report_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_EnrollmentID_idx4"; -- --- Name: index_pm_projects_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_pm_projects_on_report_id ON public.pm_projects USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_ExportID_idx"; -- --- Name: index_pm_results_on_field; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_pm_results_on_field ON public.pm_results USING btree (field); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_ExportID_idx1"; -- --- Name: index_pm_results_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_pm_results_on_report_id ON public.pm_results USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_ExportID_idx2"; -- --- Name: index_proj_proj_id_org_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_proj_proj_id_org_id_ds_id ON public."Project" USING btree ("ProjectID", data_source_id, "OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_ExportID_idx3"; -- --- Name: index_project_data_quality_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_data_quality_on_project_id ON public.project_data_quality USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_ExportID_idx4"; -- --- Name: index_project_pass_fails_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_clients_on_client_id ON public.project_pass_fails_clients USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_PersonalID_idx"; -- --- Name: index_project_pass_fails_clients_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_clients_on_created_at ON public.project_pass_fails_clients USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_PersonalID_idx1"; -- --- Name: index_project_pass_fails_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_clients_on_deleted_at ON public.project_pass_fails_clients USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_PersonalID_idx2"; -- --- Name: index_project_pass_fails_clients_on_project_pass_fail_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_clients_on_project_pass_fail_id ON public.project_pass_fails_clients USING btree (project_pass_fail_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_PersonalID_idx3"; -- --- Name: index_project_pass_fails_clients_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_clients_on_updated_at ON public.project_pass_fails_clients USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_PersonalID_idx4"; -- --- Name: index_project_pass_fails_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_on_created_at ON public.project_pass_fails USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx"; -- --- Name: index_project_pass_fails_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_on_deleted_at ON public.project_pass_fails USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx1"; -- --- Name: index_project_pass_fails_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_on_updated_at ON public.project_pass_fails USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx2"; -- --- Name: index_project_pass_fails_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_on_user_id ON public.project_pass_fails USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx3"; -- --- Name: index_project_pass_fails_projects_on_apr_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_projects_on_apr_id ON public.project_pass_fails_projects USING btree (apr_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_DateDeleted_idx4"; -- --- Name: index_project_pass_fails_projects_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_projects_on_created_at ON public.project_pass_fails_projects USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_DateProvided_idx"; -- --- Name: index_project_pass_fails_projects_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_projects_on_deleted_at ON public.project_pass_fails_projects USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_DateProvided_idx1"; -- --- Name: index_project_pass_fails_projects_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_projects_on_project_id ON public.project_pass_fails_projects USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_DateProvided_idx2"; -- --- Name: index_project_pass_fails_projects_on_project_pass_fail_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_projects_on_project_pass_fail_id ON public.project_pass_fails_projects USING btree (project_pass_fail_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_DateProvided_idx3"; -- --- Name: index_project_pass_fails_projects_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_pass_fails_projects_on_updated_at ON public.project_pass_fails_projects USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_DateProvided_idx4"; -- --- Name: index_project_scorecard_reports_on_apr_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_scorecard_reports_on_apr_id ON public.project_scorecard_reports USING btree (apr_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_idx"; -- --- Name: index_project_scorecard_reports_on_project_group_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_scorecard_reports_on_project_group_id ON public.project_scorecard_reports USING btree (project_group_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_idx1"; -- --- Name: index_project_scorecard_reports_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_scorecard_reports_on_project_id ON public.project_scorecard_reports USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_idx2"; -- --- Name: index_project_scorecard_reports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_project_scorecard_reports_on_user_id ON public.project_scorecard_reports USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_idx3"; -- --- Name: index_psc_feedback_surveys_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_psc_feedback_surveys_on_client_id ON public.psc_feedback_surveys USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_RecordType_idx4"; -- --- Name: index_psc_feedback_surveys_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_psc_feedback_surveys_on_user_id ON public.psc_feedback_surveys USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_ServicesID_data_source_id_idx"; -- --- Name: index_public_report_reports_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_public_report_reports_on_created_at ON public.public_report_reports USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_ServicesID_idx"; -- --- Name: index_public_report_reports_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_public_report_reports_on_updated_at ON public.public_report_reports USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_ServicesID_idx1"; -- --- Name: index_public_report_reports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_public_report_reports_on_user_id ON public.public_report_reports USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_ServicesID_idx2"; -- --- Name: index_published_reports_on_report; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_published_reports_on_report ON public.published_reports USING btree (report_type, report_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_ServicesID_idx3"; -- --- Name: index_published_reports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_published_reports_on_user_id ON public.published_reports USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_65_ServicesID_idx4"; -- --- Name: index_recent_items_on_item; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_recent_items_on_item ON public.recent_items USING btree (item_type, item_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_65_importer_log_id_idx; -- --- Name: index_recent_items_on_owner; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_recent_items_on_owner ON public.recent_items USING btree (owner_type, owner_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_65_pkey; -- --- Name: index_recurring_hmis_exports_on_encrypted_s3_access_key_id_iv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_65_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_recurring_hmis_exports_on_encrypted_s3_access_key_id_iv ON public.recurring_hmis_exports USING btree (encrypted_s3_access_key_id_iv); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_65_source_type_source_id_idx; -- --- Name: index_recurring_hmis_exports_on_encrypted_s3_secret_iv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_recurring_hmis_exports_on_encrypted_s3_secret_iv ON public.recurring_hmis_exports USING btree (encrypted_s3_secret_iv); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateCreated_idx"; -- --- Name: index_remote_configs_on_remote_credential_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_remote_configs_on_remote_credential_id ON public.remote_configs USING btree (remote_credential_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateCreated_idx1"; -- --- Name: index_remote_credentials_on_slug; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_remote_credentials_on_slug ON public.remote_credentials USING btree (slug); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateCreated_idx2"; -- --- Name: index_report_tokens_on_contact_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_report_tokens_on_contact_id ON public.report_tokens USING btree (contact_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateCreated_idx3"; -- --- Name: index_report_tokens_on_report_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_report_tokens_on_report_id ON public.report_tokens USING btree (report_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateCreated_idx4"; -- --- Name: index_serv_on_proj_entry_per_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_serv_on_proj_entry_per_id_ds_id ON public."Services" USING btree ("EnrollmentID", "PersonalID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateDeleted_idx"; -- --- Name: index_service_history_enrollments_on_age; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_history_enrollments_on_age ON public.service_history_enrollments USING btree (age); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateDeleted_idx1"; -- --- Name: index_service_history_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_history_on_client_id ON public.warehouse_client_service_history USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateDeleted_idx2"; -- --- Name: index_service_history_services_2000_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2000_on_id ON public.service_history_services_2000 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateDeleted_idx3"; -- --- Name: index_service_history_services_2001_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2001_on_id ON public.service_history_services_2001 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateDeleted_idx4"; -- --- Name: index_service_history_services_2002_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2002_on_id ON public.service_history_services_2002 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateProvided_idx"; -- --- Name: index_service_history_services_2003_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2003_on_id ON public.service_history_services_2003 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateProvided_idx1"; -- --- Name: index_service_history_services_2004_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2004_on_id ON public.service_history_services_2004 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateProvided_idx2"; -- --- Name: index_service_history_services_2005_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2005_on_id ON public.service_history_services_2005 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateProvided_idx3"; -- --- Name: index_service_history_services_2006_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2006_on_id ON public.service_history_services_2006 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateProvided_idx4"; -- --- Name: index_service_history_services_2007_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2007_on_id ON public.service_history_services_2007 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateUpdated_idx"; -- --- Name: index_service_history_services_2008_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2008_on_id ON public.service_history_services_2008 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateUpdated_idx1"; -- --- Name: index_service_history_services_2009_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2009_on_id ON public.service_history_services_2009 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateUpdated_idx2"; -- --- Name: index_service_history_services_2010_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2010_on_id ON public.service_history_services_2010 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateUpdated_idx3"; -- --- Name: index_service_history_services_2011_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2011_on_id ON public.service_history_services_2011 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_DateUpdated_idx4"; -- --- Name: index_service_history_services_2012_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2012_on_id ON public.service_history_services_2012 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx"; -- --- Name: index_service_history_services_2013_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2013_on_id ON public.service_history_services_2013 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx1"; -- --- Name: index_service_history_services_2014_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2014_on_id ON public.service_history_services_2014 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx2"; -- --- Name: index_service_history_services_2015_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2015_on_id ON public.service_history_services_2015 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx3"; -- --- Name: index_service_history_services_2016_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2016_on_id ON public.service_history_services_2016 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx4"; -- --- Name: index_service_history_services_2017_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2017_on_id ON public.service_history_services_2017 USING btree (id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_EnrollmentID_PersonalID_idx5"; -- --- Name: index_service_history_services_2018_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2018_on_id ON public.service_history_services_2018 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_EnrollmentID_idx"; -- --- Name: index_service_history_services_2019_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2019_on_id ON public.service_history_services_2019 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_EnrollmentID_idx1"; -- --- Name: index_service_history_services_2020_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2020_on_id ON public.service_history_services_2020 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_EnrollmentID_idx2"; -- --- Name: index_service_history_services_2021_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2021_on_id ON public.service_history_services_2021 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_EnrollmentID_idx3"; -- --- Name: index_service_history_services_2022_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2022_on_id ON public.service_history_services_2022 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_EnrollmentID_idx4"; -- --- Name: index_service_history_services_2023_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2023_on_id ON public.service_history_services_2023 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_ExportID_idx"; -- --- Name: index_service_history_services_2024_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2024_on_id ON public.service_history_services_2024 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_ExportID_idx1"; -- --- Name: index_service_history_services_2025_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2025_on_id ON public.service_history_services_2025 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_ExportID_idx2"; -- --- Name: index_service_history_services_2026_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2026_on_id ON public.service_history_services_2026 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_ExportID_idx3"; -- --- Name: index_service_history_services_2027_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2027_on_id ON public.service_history_services_2027 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_ExportID_idx4"; -- --- Name: index_service_history_services_2028_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2028_on_id ON public.service_history_services_2028 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_PersonalID_idx"; -- --- Name: index_service_history_services_2029_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2029_on_id ON public.service_history_services_2029 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_PersonalID_idx1"; -- --- Name: index_service_history_services_2030_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2030_on_id ON public.service_history_services_2030 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_PersonalID_idx2"; -- --- Name: index_service_history_services_2031_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2031_on_id ON public.service_history_services_2031 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_PersonalID_idx3"; -- --- Name: index_service_history_services_2032_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2032_on_id ON public.service_history_services_2032 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_PersonalID_idx4"; -- --- Name: index_service_history_services_2033_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2033_on_id ON public.service_history_services_2033 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx"; -- --- Name: index_service_history_services_2034_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2034_on_id ON public.service_history_services_2034 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx1"; -- --- Name: index_service_history_services_2035_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2035_on_id ON public.service_history_services_2035 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx2"; -- --- Name: index_service_history_services_2036_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2036_on_id ON public.service_history_services_2036 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx3"; -- --- Name: index_service_history_services_2037_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2037_on_id ON public.service_history_services_2037 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_DateDeleted_idx4"; -- --- Name: index_service_history_services_2038_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2038_on_id ON public.service_history_services_2038 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_DateProvided_idx"; -- --- Name: index_service_history_services_2039_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2039_on_id ON public.service_history_services_2039 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_DateProvided_idx1"; -- --- Name: index_service_history_services_2040_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2040_on_id ON public.service_history_services_2040 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_DateProvided_idx2"; -- --- Name: index_service_history_services_2041_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2041_on_id ON public.service_history_services_2041 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_DateProvided_idx3"; -- --- Name: index_service_history_services_2042_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2042_on_id ON public.service_history_services_2042 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_DateProvided_idx4"; -- --- Name: index_service_history_services_2043_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2043_on_id ON public.service_history_services_2043 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_idx"; -- --- Name: index_service_history_services_2044_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2044_on_id ON public.service_history_services_2044 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_idx1"; -- --- Name: index_service_history_services_2045_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2045_on_id ON public.service_history_services_2045 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_idx2"; -- --- Name: index_service_history_services_2046_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2046_on_id ON public.service_history_services_2046 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_idx3"; -- --- Name: index_service_history_services_2047_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2047_on_id ON public.service_history_services_2047 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_RecordType_idx4"; -- --- Name: index_service_history_services_2048_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2048_on_id ON public.service_history_services_2048 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_ServicesID_data_source_id_idx"; -- --- Name: index_service_history_services_2049_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2049_on_id ON public.service_history_services_2049 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_ServicesID_idx"; -- --- Name: index_service_history_services_2050_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_2050_on_id ON public.service_history_services_2050 USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_ServicesID_idx1"; -- --- Name: index_service_history_services_materialized_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_materialized_on_id ON public.service_history_services_materialized USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_ServicesID_idx2"; -- --- Name: index_service_history_services_remainder_on_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_service_history_services_remainder_on_id ON public.service_history_services_remainder USING btree (id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_ServicesID_idx3"; -- --- Name: index_service_scanning_scanner_ids_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_scanning_scanner_ids_on_client_id ON public.service_scanning_scanner_ids USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_66_ServicesID_idx4"; -- --- Name: index_service_scanning_scanner_ids_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_scanning_scanner_ids_on_created_at ON public.service_scanning_scanner_ids USING btree (created_at); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_66_importer_log_id_idx; -- --- Name: index_service_scanning_scanner_ids_on_scanned_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_scanning_scanner_ids_on_scanned_id ON public.service_scanning_scanner_ids USING btree (scanned_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_66_pkey; -- --- Name: index_service_scanning_scanner_ids_on_source_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_66_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_scanning_scanner_ids_on_source_type ON public.service_scanning_scanner_ids USING btree (source_type); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_66_source_type_source_id_idx; -- --- Name: index_service_scanning_scanner_ids_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_scanning_scanner_ids_on_updated_at ON public.service_scanning_scanner_ids USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateCreated_idx"; -- --- Name: index_service_scanning_services_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_scanning_services_on_client_id ON public.service_scanning_services USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateCreated_idx1"; -- --- Name: index_service_scanning_services_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_scanning_services_on_created_at ON public.service_scanning_services USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateCreated_idx2"; -- --- Name: index_service_scanning_services_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_scanning_services_on_project_id ON public.service_scanning_services USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateCreated_idx3"; -- --- Name: index_service_scanning_services_on_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_scanning_services_on_type ON public.service_scanning_services USING btree (type); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateCreated_idx4"; -- --- Name: index_service_scanning_services_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_scanning_services_on_updated_at ON public.service_scanning_services USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateDeleted_idx"; -- --- Name: index_service_scanning_services_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_service_scanning_services_on_user_id ON public.service_scanning_services USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateDeleted_idx1"; -- --- Name: index_services_ds_id_p_id_type_entry_id_date; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_services_ds_id_p_id_type_entry_id_date ON public."Services" USING btree (data_source_id, "PersonalID", "RecordType", "EnrollmentID", "DateProvided"); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateDeleted_idx2"; -- --- Name: index_sh__enrollment_id_track_meth; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_sh__enrollment_id_track_meth ON public.new_service_history USING btree (enrollment_group_id, project_tracking_method); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateDeleted_idx3"; -- --- Name: index_sh_date_ds_org_proj_proj_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_sh_date_ds_org_proj_proj_type ON public.new_service_history USING btree (record_type, date, data_source_id, organization_id, project_id, project_type, project_tracking_method); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateDeleted_idx4"; -- --- Name: index_sh_date_r_type_indiv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_sh_date_r_type_indiv ON public.warehouse_client_service_history USING btree (date, record_type, presented_as_individual); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateProvided_idx"; -- --- Name: index_sh_ds_id_org_id_proj_id_r_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_sh_ds_id_org_id_proj_id_r_type ON public.warehouse_client_service_history USING btree (data_source_id, organization_id, project_id, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateProvided_idx1"; -- --- Name: index_sh_ds_proj_org_r_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_sh_ds_proj_org_r_type ON public.new_service_history USING btree (data_source_id, project_id, organization_id, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateProvided_idx2"; -- --- Name: index_sh_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_sh_on_client_id ON public.new_service_history USING btree (client_id, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateProvided_idx3"; -- --- Name: index_sh_on_computed_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_sh_on_computed_project_type ON public.new_service_history USING btree (computed_project_type, record_type, client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateProvided_idx4"; -- --- Name: index_sh_on_household_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_sh_on_household_id ON public.new_service_history USING btree (date, household_id, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateUpdated_idx"; -- --- Name: index_sh_tracking_method; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_sh_tracking_method ON public.warehouse_client_service_history USING btree (project_tracking_method); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateUpdated_idx1"; -- --- Name: index_shape_block_groups_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_block_groups_on_full_geoid ON public.shape_block_groups USING btree (full_geoid); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateUpdated_idx2"; -- --- Name: index_shape_block_groups_on_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shape_block_groups_on_geoid ON public.shape_block_groups USING btree (geoid); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateUpdated_idx3"; -- --- Name: index_shape_block_groups_on_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_block_groups_on_geom ON public.shape_block_groups USING gist (geom); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_DateUpdated_idx4"; -- --- Name: index_shape_block_groups_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_block_groups_on_simplified_geom ON public.shape_block_groups USING gist (simplified_geom); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx"; -- --- Name: index_shape_cocs_on_cocname; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_cocs_on_cocname ON public.shape_cocs USING btree (cocname); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx1"; -- --- Name: index_shape_cocs_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shape_cocs_on_full_geoid ON public.shape_cocs USING btree (full_geoid); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx2"; -- --- Name: index_shape_cocs_on_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_cocs_on_geom ON public.shape_cocs USING gist (geom); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx3"; -- --- Name: index_shape_cocs_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_cocs_on_simplified_geom ON public.shape_cocs USING gist (simplified_geom); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx4"; -- --- Name: index_shape_cocs_on_st; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_cocs_on_st ON public.shape_cocs USING btree (st); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_EnrollmentID_PersonalID_idx5"; -- --- Name: index_shape_counties_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_counties_on_full_geoid ON public.shape_counties USING btree (full_geoid); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_EnrollmentID_idx"; -- --- Name: index_shape_counties_on_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shape_counties_on_geoid ON public.shape_counties USING btree (geoid); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_EnrollmentID_idx1"; -- --- Name: index_shape_counties_on_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_counties_on_geom ON public.shape_counties USING gist (geom); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_EnrollmentID_idx2"; -- --- Name: index_shape_counties_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_counties_on_simplified_geom ON public.shape_counties USING gist (simplified_geom); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_EnrollmentID_idx3"; -- --- Name: index_shape_counties_on_statefp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_counties_on_statefp ON public.shape_counties USING btree (statefp); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_EnrollmentID_idx4"; -- --- Name: index_shape_places_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_places_on_full_geoid ON public.shape_places USING btree (full_geoid); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_ExportID_idx"; -- --- Name: index_shape_places_on_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shape_places_on_geoid ON public.shape_places USING btree (geoid); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_ExportID_idx1"; -- --- Name: index_shape_places_on_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_places_on_geom ON public.shape_places USING gist (geom); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_ExportID_idx2"; -- --- Name: index_shape_places_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_places_on_simplified_geom ON public.shape_places USING gist (simplified_geom); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_ExportID_idx3"; -- --- Name: index_shape_states_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_states_on_full_geoid ON public.shape_states USING btree (full_geoid); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_ExportID_idx4"; -- --- Name: index_shape_states_on_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shape_states_on_geoid ON public.shape_states USING btree (geoid); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_PersonalID_idx"; -- --- Name: index_shape_states_on_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_states_on_geom ON public.shape_states USING gist (geom); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_PersonalID_idx1"; -- --- Name: index_shape_states_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_states_on_simplified_geom ON public.shape_states USING gist (simplified_geom); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_PersonalID_idx2"; -- --- Name: index_shape_states_on_statefp; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_states_on_statefp ON public.shape_states USING btree (statefp); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_PersonalID_idx3"; -- --- Name: index_shape_states_on_stusps; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_states_on_stusps ON public.shape_states USING btree (stusps); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_PersonalID_idx4"; -- --- Name: index_shape_towns_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_towns_on_full_geoid ON public.shape_towns USING btree (full_geoid); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx"; -- --- Name: index_shape_towns_on_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shape_towns_on_geoid ON public.shape_towns USING btree (geoid); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx1"; -- --- Name: index_shape_towns_on_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_towns_on_geom ON public.shape_towns USING gist (geom); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx2"; -- --- Name: index_shape_towns_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_towns_on_simplified_geom ON public.shape_towns USING gist (simplified_geom); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx3"; -- --- Name: index_shape_zip_codes_on_county_name_lower; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_zip_codes_on_county_name_lower ON public.shape_zip_codes USING btree (county_name_lower); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_DateDeleted_idx4"; -- --- Name: index_shape_zip_codes_on_full_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_zip_codes_on_full_geoid ON public.shape_zip_codes USING btree (full_geoid); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_DateProvided_idx"; -- --- Name: index_shape_zip_codes_on_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_zip_codes_on_geom ON public.shape_zip_codes USING gist (geom); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_DateProvided_idx1"; -- --- Name: index_shape_zip_codes_on_simplified_geom; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_zip_codes_on_simplified_geom ON public.shape_zip_codes USING gist (simplified_geom); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_DateProvided_idx2"; -- --- Name: index_shape_zip_codes_on_st_geoid; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shape_zip_codes_on_st_geoid ON public.shape_zip_codes USING btree (st_geoid); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_DateProvided_idx3"; -- --- Name: index_shape_zip_codes_on_zcta5ce10; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shape_zip_codes_on_zcta5ce10 ON public.shape_zip_codes USING btree (zcta5ce10); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_DateProvided_idx4"; -- --- Name: index_she__enrollment_id_track_meth; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_she__enrollment_id_track_meth ON public.service_history_enrollments USING btree (enrollment_group_id, project_tracking_method); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_idx"; -- --- Name: index_she_date_ds_org_proj_proj_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_she_date_ds_org_proj_proj_type ON public.service_history_enrollments USING btree (record_type, date, data_source_id, organization_id, project_id, project_type, project_tracking_method); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_idx1"; -- --- Name: index_she_date_r_type_indiv; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_she_date_r_type_indiv ON public.service_history_enrollments USING btree (date, record_type, presented_as_individual); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_idx2"; -- --- Name: index_she_ds_proj_org_r_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_she_ds_proj_org_r_type ON public.service_history_enrollments USING btree (data_source_id, project_id, organization_id, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_idx3"; -- --- Name: index_she_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_she_on_client_id ON public.service_history_enrollments USING btree (client_id, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_RecordType_idx4"; -- --- Name: index_she_on_computed_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_she_on_computed_project_type ON public.service_history_enrollments USING btree (computed_project_type, record_type, client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_ServicesID_data_source_id_idx"; -- --- Name: index_she_on_first_date_in_program; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_she_on_first_date_in_program ON public.service_history_enrollments USING brin (first_date_in_program); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_ServicesID_idx"; -- --- Name: index_she_on_household_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_she_on_household_id ON public.service_history_enrollments USING btree (date, household_id, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_ServicesID_idx1"; -- --- Name: index_she_on_last_date_in_program; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_she_on_last_date_in_program ON public.service_history_enrollments USING btree (first_date_in_program, last_date_in_program, record_type, date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_ServicesID_idx2"; -- --- Name: index_shs_1900_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_1900_date_brin ON public.service_history_services_remainder USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_ServicesID_idx3"; -- --- Name: index_shs_1900_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_1900_date_client_id ON public.service_history_services_remainder USING btree (date, client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_67_ServicesID_idx4"; -- --- Name: service_history_services_part_date_service_history_enrollme_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX service_history_services_part_date_service_history_enrollme_idx ON ONLY public.service_history_services USING btree (date, service_history_enrollment_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_67_importer_log_id_idx; -- --- Name: index_shs_1900_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_1900_date_en_id ON public.service_history_services_remainder USING btree (date, service_history_enrollment_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_67_pkey; -- --- Name: index_shs_1900_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_67_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_1900_date_project_type ON public.service_history_services_remainder USING btree (date, project_type); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_67_source_type_source_id_idx; -- --- Name: index_shs_2000_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2000_c_id_en_id ON public.service_history_services_2000 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateCreated_idx"; -- --- Name: index_shs_2000_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2000_client_id_only ON public.service_history_services_2000 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateCreated_idx1"; -- --- Name: index_shs_2000_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2000_date_brin ON public.service_history_services_2000 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateCreated_idx2"; -- --- Name: index_shs_2000_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2000_date_client_id ON public.service_history_services_2000 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateCreated_idx3"; -- --- Name: index_shs_2000_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2000_date_en_id ON public.service_history_services_2000 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateCreated_idx4"; -- --- Name: index_shs_2000_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2000_date_project_type ON public.service_history_services_2000 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateDeleted_idx"; -- --- Name: index_shs_2000_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2000_en_id_only ON public.service_history_services_2000 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateDeleted_idx1"; -- --- Name: index_shs_2001_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2001_c_id_en_id ON public.service_history_services_2001 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateDeleted_idx2"; -- --- Name: index_shs_2001_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2001_client_id_only ON public.service_history_services_2001 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateDeleted_idx3"; -- --- Name: index_shs_2001_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2001_date_brin ON public.service_history_services_2001 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateDeleted_idx4"; -- --- Name: index_shs_2001_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2001_date_client_id ON public.service_history_services_2001 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateProvided_idx"; -- --- Name: index_shs_2001_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2001_date_en_id ON public.service_history_services_2001 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateProvided_idx1"; -- --- Name: index_shs_2001_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2001_date_project_type ON public.service_history_services_2001 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateProvided_idx2"; -- --- Name: index_shs_2001_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2001_en_id_only ON public.service_history_services_2001 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateProvided_idx3"; -- --- Name: index_shs_2002_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2002_c_id_en_id ON public.service_history_services_2002 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateProvided_idx4"; -- --- Name: index_shs_2002_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2002_client_id_only ON public.service_history_services_2002 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateUpdated_idx"; -- --- Name: index_shs_2002_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2002_date_brin ON public.service_history_services_2002 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateUpdated_idx1"; -- --- Name: index_shs_2002_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2002_date_client_id ON public.service_history_services_2002 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateUpdated_idx2"; -- --- Name: index_shs_2002_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2002_date_en_id ON public.service_history_services_2002 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateUpdated_idx3"; -- --- Name: index_shs_2002_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2002_date_project_type ON public.service_history_services_2002 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_DateUpdated_idx4"; -- --- Name: index_shs_2002_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2002_en_id_only ON public.service_history_services_2002 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx"; -- --- Name: index_shs_2003_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2003_c_id_en_id ON public.service_history_services_2003 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx1"; -- --- Name: index_shs_2003_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2003_client_id_only ON public.service_history_services_2003 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx2"; -- --- Name: index_shs_2003_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2003_date_brin ON public.service_history_services_2003 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx3"; -- --- Name: index_shs_2003_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2003_date_client_id ON public.service_history_services_2003 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx4"; -- --- Name: index_shs_2003_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2003_date_en_id ON public.service_history_services_2003 USING btree (date, service_history_enrollment_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_EnrollmentID_PersonalID_idx5"; -- --- Name: index_shs_2003_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2003_date_project_type ON public.service_history_services_2003 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_EnrollmentID_idx"; -- --- Name: index_shs_2003_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2003_en_id_only ON public.service_history_services_2003 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_EnrollmentID_idx1"; -- --- Name: index_shs_2004_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2004_c_id_en_id ON public.service_history_services_2004 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_EnrollmentID_idx2"; -- --- Name: index_shs_2004_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2004_client_id_only ON public.service_history_services_2004 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_EnrollmentID_idx3"; -- --- Name: index_shs_2004_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2004_date_brin ON public.service_history_services_2004 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_EnrollmentID_idx4"; -- --- Name: index_shs_2004_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2004_date_client_id ON public.service_history_services_2004 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_ExportID_idx"; -- --- Name: index_shs_2004_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2004_date_en_id ON public.service_history_services_2004 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_ExportID_idx1"; -- --- Name: index_shs_2004_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2004_date_project_type ON public.service_history_services_2004 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_ExportID_idx2"; -- --- Name: index_shs_2004_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2004_en_id_only ON public.service_history_services_2004 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_ExportID_idx3"; -- --- Name: index_shs_2005_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2005_c_id_en_id ON public.service_history_services_2005 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_ExportID_idx4"; -- --- Name: index_shs_2005_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2005_client_id_only ON public.service_history_services_2005 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_PersonalID_idx"; -- --- Name: index_shs_2005_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2005_date_brin ON public.service_history_services_2005 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_PersonalID_idx1"; -- --- Name: index_shs_2005_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2005_date_client_id ON public.service_history_services_2005 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_PersonalID_idx2"; -- --- Name: index_shs_2005_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2005_date_en_id ON public.service_history_services_2005 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_PersonalID_idx3"; -- --- Name: index_shs_2005_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2005_date_project_type ON public.service_history_services_2005 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_PersonalID_idx4"; -- --- Name: index_shs_2005_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2005_en_id_only ON public.service_history_services_2005 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx"; -- --- Name: index_shs_2006_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2006_c_id_en_id ON public.service_history_services_2006 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx1"; -- --- Name: index_shs_2006_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2006_client_id_only ON public.service_history_services_2006 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx2"; -- --- Name: index_shs_2006_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2006_date_brin ON public.service_history_services_2006 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx3"; -- --- Name: index_shs_2006_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2006_date_client_id ON public.service_history_services_2006 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_DateDeleted_idx4"; -- --- Name: index_shs_2006_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2006_date_en_id ON public.service_history_services_2006 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_DateProvided_idx"; -- --- Name: index_shs_2006_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2006_date_project_type ON public.service_history_services_2006 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_DateProvided_idx1"; -- --- Name: index_shs_2006_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2006_en_id_only ON public.service_history_services_2006 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_DateProvided_idx2"; -- --- Name: index_shs_2007_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2007_c_id_en_id ON public.service_history_services_2007 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_DateProvided_idx3"; -- --- Name: index_shs_2007_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2007_client_id_only ON public.service_history_services_2007 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_DateProvided_idx4"; -- --- Name: index_shs_2007_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2007_date_brin ON public.service_history_services_2007 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_idx"; -- --- Name: index_shs_2007_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2007_date_client_id ON public.service_history_services_2007 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_idx1"; -- --- Name: index_shs_2007_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2007_date_en_id ON public.service_history_services_2007 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_idx2"; -- --- Name: index_shs_2007_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2007_date_project_type ON public.service_history_services_2007 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_idx3"; -- --- Name: index_shs_2007_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2007_en_id_only ON public.service_history_services_2007 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_RecordType_idx4"; -- --- Name: index_shs_2008_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2008_c_id_en_id ON public.service_history_services_2008 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_ServicesID_data_source_id_idx"; -- --- Name: index_shs_2008_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2008_client_id_only ON public.service_history_services_2008 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_ServicesID_idx"; -- --- Name: index_shs_2008_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2008_date_brin ON public.service_history_services_2008 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_ServicesID_idx1"; -- --- Name: index_shs_2008_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2008_date_client_id ON public.service_history_services_2008 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_ServicesID_idx2"; -- --- Name: index_shs_2008_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2008_date_en_id ON public.service_history_services_2008 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_ServicesID_idx3"; -- --- Name: index_shs_2008_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2008_date_project_type ON public.service_history_services_2008 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_68_ServicesID_idx4"; -- --- Name: index_shs_2008_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2008_en_id_only ON public.service_history_services_2008 USING btree (service_history_enrollment_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_68_importer_log_id_idx; -- --- Name: index_shs_2009_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2009_c_id_en_id ON public.service_history_services_2009 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_68_pkey; -- --- Name: index_shs_2009_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_68_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2009_client_id_only ON public.service_history_services_2009 USING btree (client_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_68_source_type_source_id_idx; -- --- Name: index_shs_2009_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2009_date_brin ON public.service_history_services_2009 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateCreated_idx"; -- --- Name: index_shs_2009_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2009_date_client_id ON public.service_history_services_2009 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateCreated_idx1"; -- --- Name: index_shs_2009_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2009_date_en_id ON public.service_history_services_2009 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateCreated_idx2"; -- --- Name: index_shs_2009_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2009_date_project_type ON public.service_history_services_2009 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateCreated_idx3"; -- --- Name: index_shs_2009_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2009_en_id_only ON public.service_history_services_2009 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateCreated_idx4"; -- --- Name: index_shs_2010_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2010_c_id_en_id ON public.service_history_services_2010 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateDeleted_idx"; -- --- Name: index_shs_2010_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2010_client_id_only ON public.service_history_services_2010 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateDeleted_idx1"; -- --- Name: index_shs_2010_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2010_date_brin ON public.service_history_services_2010 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateDeleted_idx2"; -- --- Name: index_shs_2010_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2010_date_client_id ON public.service_history_services_2010 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateDeleted_idx3"; -- --- Name: index_shs_2010_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2010_date_en_id ON public.service_history_services_2010 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateDeleted_idx4"; -- --- Name: index_shs_2010_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2010_date_project_type ON public.service_history_services_2010 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateProvided_idx"; -- --- Name: index_shs_2010_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2010_en_id_only ON public.service_history_services_2010 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateProvided_idx1"; -- --- Name: index_shs_2011_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2011_c_id_en_id ON public.service_history_services_2011 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateProvided_idx2"; -- --- Name: index_shs_2011_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2011_client_id_only ON public.service_history_services_2011 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateProvided_idx3"; -- --- Name: index_shs_2011_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2011_date_brin ON public.service_history_services_2011 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateProvided_idx4"; -- --- Name: index_shs_2011_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2011_date_client_id ON public.service_history_services_2011 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateUpdated_idx"; -- --- Name: index_shs_2011_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2011_date_en_id ON public.service_history_services_2011 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateUpdated_idx1"; -- --- Name: index_shs_2011_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2011_date_project_type ON public.service_history_services_2011 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateUpdated_idx2"; -- --- Name: index_shs_2011_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2011_en_id_only ON public.service_history_services_2011 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateUpdated_idx3"; -- --- Name: index_shs_2012_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2012_c_id_en_id ON public.service_history_services_2012 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_DateUpdated_idx4"; -- --- Name: index_shs_2012_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2012_client_id_only ON public.service_history_services_2012 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx"; -- --- Name: index_shs_2012_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2012_date_brin ON public.service_history_services_2012 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx1"; -- --- Name: index_shs_2012_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2012_date_client_id ON public.service_history_services_2012 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx2"; -- --- Name: index_shs_2012_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2012_date_en_id ON public.service_history_services_2012 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx3"; -- --- Name: index_shs_2012_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2012_date_project_type ON public.service_history_services_2012 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx4"; -- --- Name: index_shs_2012_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2012_en_id_only ON public.service_history_services_2012 USING btree (service_history_enrollment_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_EnrollmentID_PersonalID_idx5"; -- --- Name: index_shs_2013_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2013_c_id_en_id ON public.service_history_services_2013 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_EnrollmentID_idx"; -- --- Name: index_shs_2013_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2013_client_id_only ON public.service_history_services_2013 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_EnrollmentID_idx1"; -- --- Name: index_shs_2013_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2013_date_brin ON public.service_history_services_2013 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_EnrollmentID_idx2"; -- --- Name: index_shs_2013_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2013_date_client_id ON public.service_history_services_2013 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_EnrollmentID_idx3"; -- --- Name: index_shs_2013_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2013_date_en_id ON public.service_history_services_2013 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_EnrollmentID_idx4"; -- --- Name: index_shs_2013_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2013_date_project_type ON public.service_history_services_2013 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_ExportID_idx"; -- --- Name: index_shs_2013_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2013_en_id_only ON public.service_history_services_2013 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_ExportID_idx1"; -- --- Name: index_shs_2014_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2014_c_id_en_id ON public.service_history_services_2014 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_ExportID_idx2"; -- --- Name: index_shs_2014_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2014_client_id_only ON public.service_history_services_2014 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_ExportID_idx3"; -- --- Name: index_shs_2014_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2014_date_brin ON public.service_history_services_2014 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_ExportID_idx4"; -- --- Name: index_shs_2014_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2014_date_client_id ON public.service_history_services_2014 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_PersonalID_idx"; -- --- Name: index_shs_2014_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2014_date_en_id ON public.service_history_services_2014 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_PersonalID_idx1"; -- --- Name: index_shs_2014_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2014_date_project_type ON public.service_history_services_2014 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_PersonalID_idx2"; -- --- Name: index_shs_2014_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2014_en_id_only ON public.service_history_services_2014 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_PersonalID_idx3"; -- --- Name: index_shs_2015_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2015_c_id_en_id ON public.service_history_services_2015 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_PersonalID_idx4"; -- --- Name: index_shs_2015_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2015_client_id_only ON public.service_history_services_2015 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx"; -- --- Name: index_shs_2015_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2015_date_brin ON public.service_history_services_2015 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx1"; -- --- Name: index_shs_2015_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2015_date_client_id ON public.service_history_services_2015 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx2"; -- --- Name: index_shs_2015_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2015_date_en_id ON public.service_history_services_2015 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx3"; -- --- Name: index_shs_2015_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2015_date_project_type ON public.service_history_services_2015 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_DateDeleted_idx4"; -- --- Name: index_shs_2015_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2015_en_id_only ON public.service_history_services_2015 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_DateProvided_idx"; -- --- Name: index_shs_2016_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2016_c_id_en_id ON public.service_history_services_2016 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_DateProvided_idx1"; -- --- Name: index_shs_2016_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2016_client_id_only ON public.service_history_services_2016 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_DateProvided_idx2"; -- --- Name: index_shs_2016_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2016_date_brin ON public.service_history_services_2016 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_DateProvided_idx3"; -- --- Name: index_shs_2016_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2016_date_client_id ON public.service_history_services_2016 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_DateProvided_idx4"; -- --- Name: index_shs_2016_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2016_date_en_id ON public.service_history_services_2016 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_idx"; -- --- Name: index_shs_2016_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2016_date_project_type ON public.service_history_services_2016 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_idx1"; -- --- Name: index_shs_2016_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2016_en_id_only ON public.service_history_services_2016 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_idx2"; -- --- Name: index_shs_2017_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2017_c_id_en_id ON public.service_history_services_2017 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_idx3"; -- --- Name: index_shs_2017_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2017_client_id_only ON public.service_history_services_2017 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_RecordType_idx4"; -- --- Name: index_shs_2017_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2017_date_brin ON public.service_history_services_2017 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_ServicesID_data_source_id_idx"; -- --- Name: index_shs_2017_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2017_date_client_id ON public.service_history_services_2017 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_ServicesID_idx"; -- --- Name: index_shs_2017_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2017_date_en_id ON public.service_history_services_2017 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_ServicesID_idx1"; -- --- Name: index_shs_2017_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2017_date_project_type ON public.service_history_services_2017 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_ServicesID_idx2"; -- --- Name: index_shs_2017_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2017_en_id_only ON public.service_history_services_2017 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_ServicesID_idx3"; -- --- Name: index_shs_2018_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2018_c_id_en_id ON public.service_history_services_2018 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_69_ServicesID_idx4"; -- --- Name: index_shs_2018_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2018_client_id_only ON public.service_history_services_2018 USING btree (client_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_69_importer_log_id_idx; -- --- Name: index_shs_2018_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2018_date_brin ON public.service_history_services_2018 USING brin (date); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_69_pkey; -- --- Name: index_shs_2018_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_69_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2018_date_client_id ON public.service_history_services_2018 USING btree (client_id, date, record_type); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_69_source_type_source_id_idx; -- --- Name: index_shs_2018_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2018_date_en_id ON public.service_history_services_2018 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateCreated_idx"; -- --- Name: index_shs_2018_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2018_date_project_type ON public.service_history_services_2018 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateCreated_idx1"; -- --- Name: index_shs_2018_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2018_en_id_only ON public.service_history_services_2018 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateCreated_idx2"; -- --- Name: index_shs_2019_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2019_c_id_en_id ON public.service_history_services_2019 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateCreated_idx3"; -- --- Name: index_shs_2019_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2019_client_id_only ON public.service_history_services_2019 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateCreated_idx4"; -- --- Name: index_shs_2019_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2019_date_brin ON public.service_history_services_2019 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateDeleted_idx"; -- --- Name: index_shs_2019_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2019_date_client_id ON public.service_history_services_2019 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateDeleted_idx1"; -- --- Name: index_shs_2019_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2019_date_en_id ON public.service_history_services_2019 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateDeleted_idx2"; -- --- Name: index_shs_2019_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2019_date_project_type ON public.service_history_services_2019 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateDeleted_idx3"; -- --- Name: index_shs_2019_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2019_en_id_only ON public.service_history_services_2019 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateDeleted_idx4"; -- --- Name: index_shs_2020_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2020_c_id_en_id ON public.service_history_services_2020 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateProvided_idx"; -- --- Name: index_shs_2020_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2020_client_id_only ON public.service_history_services_2020 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateProvided_idx1"; -- --- Name: index_shs_2020_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2020_date_brin ON public.service_history_services_2020 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateProvided_idx2"; -- --- Name: index_shs_2020_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2020_date_client_id ON public.service_history_services_2020 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateProvided_idx3"; -- --- Name: index_shs_2020_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2020_date_en_id ON public.service_history_services_2020 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateProvided_idx4"; -- --- Name: index_shs_2020_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2020_date_project_type ON public.service_history_services_2020 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateUpdated_idx"; -- --- Name: index_shs_2020_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2020_en_id_only ON public.service_history_services_2020 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateUpdated_idx1"; -- --- Name: index_shs_2021_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2021_c_id_en_id ON public.service_history_services_2021 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateUpdated_idx2"; -- --- Name: index_shs_2021_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2021_client_id_only ON public.service_history_services_2021 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateUpdated_idx3"; -- --- Name: index_shs_2021_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2021_date_brin ON public.service_history_services_2021 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_DateUpdated_idx4"; -- --- Name: index_shs_2021_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2021_date_client_id ON public.service_history_services_2021 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx"; -- --- Name: index_shs_2021_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2021_date_en_id ON public.service_history_services_2021 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx1"; -- --- Name: index_shs_2021_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2021_date_project_type ON public.service_history_services_2021 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx2"; -- --- Name: index_shs_2021_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2021_en_id_only ON public.service_history_services_2021 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx3"; -- --- Name: index_shs_2022_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2022_c_id_en_id ON public.service_history_services_2022 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx4"; -- --- Name: index_shs_2022_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2022_client_id_only ON public.service_history_services_2022 USING btree (client_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_EnrollmentID_PersonalID_idx5"; -- --- Name: index_shs_2022_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2022_date_brin ON public.service_history_services_2022 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_EnrollmentID_idx"; -- --- Name: index_shs_2022_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2022_date_client_id ON public.service_history_services_2022 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_EnrollmentID_idx1"; -- --- Name: index_shs_2022_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2022_date_en_id ON public.service_history_services_2022 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_EnrollmentID_idx2"; -- --- Name: index_shs_2022_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2022_date_project_type ON public.service_history_services_2022 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_EnrollmentID_idx3"; -- --- Name: index_shs_2022_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2022_en_id_only ON public.service_history_services_2022 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_EnrollmentID_idx4"; -- --- Name: index_shs_2023_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2023_c_id_en_id ON public.service_history_services_2023 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_ExportID_idx"; -- --- Name: index_shs_2023_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2023_client_id_only ON public.service_history_services_2023 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_ExportID_idx1"; -- --- Name: index_shs_2023_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2023_date_brin ON public.service_history_services_2023 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_ExportID_idx2"; -- --- Name: index_shs_2023_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2023_date_client_id ON public.service_history_services_2023 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_ExportID_idx3"; -- --- Name: index_shs_2023_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2023_date_en_id ON public.service_history_services_2023 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_ExportID_idx4"; -- --- Name: index_shs_2023_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2023_date_project_type ON public.service_history_services_2023 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_PersonalID_idx"; -- --- Name: index_shs_2023_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2023_en_id_only ON public.service_history_services_2023 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_PersonalID_idx1"; -- --- Name: index_shs_2024_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2024_c_id_en_id ON public.service_history_services_2024 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_PersonalID_idx2"; -- --- Name: index_shs_2024_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2024_client_id_only ON public.service_history_services_2024 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_PersonalID_idx3"; -- --- Name: index_shs_2024_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2024_date_brin ON public.service_history_services_2024 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_PersonalID_idx4"; -- --- Name: index_shs_2024_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2024_date_client_id ON public.service_history_services_2024 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx"; -- --- Name: index_shs_2024_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2024_date_en_id ON public.service_history_services_2024 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx1"; -- --- Name: index_shs_2024_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2024_date_project_type ON public.service_history_services_2024 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx2"; -- --- Name: index_shs_2024_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2024_en_id_only ON public.service_history_services_2024 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx3"; -- --- Name: index_shs_2025_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2025_c_id_en_id ON public.service_history_services_2025 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_DateDeleted_idx4"; -- --- Name: index_shs_2025_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2025_client_id_only ON public.service_history_services_2025 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_DateProvided_idx"; -- --- Name: index_shs_2025_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2025_date_brin ON public.service_history_services_2025 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_DateProvided_idx1"; -- --- Name: index_shs_2025_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2025_date_client_id ON public.service_history_services_2025 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_DateProvided_idx2"; -- --- Name: index_shs_2025_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2025_date_en_id ON public.service_history_services_2025 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_DateProvided_idx3"; -- --- Name: index_shs_2025_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2025_date_project_type ON public.service_history_services_2025 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_DateProvided_idx4"; -- --- Name: index_shs_2025_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2025_en_id_only ON public.service_history_services_2025 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_idx"; -- --- Name: index_shs_2026_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2026_c_id_en_id ON public.service_history_services_2026 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_idx1"; -- --- Name: index_shs_2026_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2026_client_id_only ON public.service_history_services_2026 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_idx2"; -- --- Name: index_shs_2026_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2026_date_brin ON public.service_history_services_2026 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_idx3"; -- --- Name: index_shs_2026_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2026_date_client_id ON public.service_history_services_2026 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_RecordType_idx4"; -- --- Name: index_shs_2026_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2026_date_en_id ON public.service_history_services_2026 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_ServicesID_data_source_id_idx"; -- --- Name: index_shs_2026_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2026_date_project_type ON public.service_history_services_2026 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_ServicesID_idx"; -- --- Name: index_shs_2026_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2026_en_id_only ON public.service_history_services_2026 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_ServicesID_idx1"; -- --- Name: index_shs_2027_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2027_c_id_en_id ON public.service_history_services_2027 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_ServicesID_idx2"; -- --- Name: index_shs_2027_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2027_client_id_only ON public.service_history_services_2027 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_ServicesID_idx3"; -- --- Name: index_shs_2027_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2027_date_brin ON public.service_history_services_2027 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_ServicesID_idx4"; -- --- Name: index_shs_2027_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_ServicesID_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2027_date_client_id ON public.service_history_services_2027 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_6_ServicesID_importer_log_id_idx"; -- --- Name: index_shs_2027_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2027_date_en_id ON public.service_history_services_2027 USING btree (date, service_history_enrollment_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_6_importer_log_id_idx; -- --- Name: index_shs_2027_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2027_date_project_type ON public.service_history_services_2027 USING btree (project_type, date, record_type); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_6_pkey; -- --- Name: index_shs_2027_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_6_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2027_en_id_only ON public.service_history_services_2027 USING btree (service_history_enrollment_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_6_source_type_source_id_idx; -- --- Name: index_shs_2028_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2028_c_id_en_id ON public.service_history_services_2028 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateCreated_idx"; -- --- Name: index_shs_2028_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2028_client_id_only ON public.service_history_services_2028 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateCreated_idx1"; -- --- Name: index_shs_2028_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2028_date_brin ON public.service_history_services_2028 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateCreated_idx2"; -- --- Name: index_shs_2028_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2028_date_client_id ON public.service_history_services_2028 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateCreated_idx3"; -- --- Name: index_shs_2028_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2028_date_en_id ON public.service_history_services_2028 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateCreated_idx4"; -- --- Name: index_shs_2028_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2028_date_project_type ON public.service_history_services_2028 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateDeleted_idx"; -- --- Name: index_shs_2028_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2028_en_id_only ON public.service_history_services_2028 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateDeleted_idx1"; -- --- Name: index_shs_2029_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2029_c_id_en_id ON public.service_history_services_2029 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateDeleted_idx2"; -- --- Name: index_shs_2029_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2029_client_id_only ON public.service_history_services_2029 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateDeleted_idx3"; -- --- Name: index_shs_2029_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2029_date_brin ON public.service_history_services_2029 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateDeleted_idx4"; -- --- Name: index_shs_2029_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2029_date_client_id ON public.service_history_services_2029 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateProvided_idx"; -- --- Name: index_shs_2029_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2029_date_en_id ON public.service_history_services_2029 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateProvided_idx1"; -- --- Name: index_shs_2029_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2029_date_project_type ON public.service_history_services_2029 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateProvided_idx2"; -- --- Name: index_shs_2029_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2029_en_id_only ON public.service_history_services_2029 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateProvided_idx3"; -- --- Name: index_shs_2030_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2030_c_id_en_id ON public.service_history_services_2030 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateProvided_idx4"; -- --- Name: index_shs_2030_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2030_client_id_only ON public.service_history_services_2030 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateUpdated_idx"; -- --- Name: index_shs_2030_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2030_date_brin ON public.service_history_services_2030 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateUpdated_idx1"; -- --- Name: index_shs_2030_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2030_date_client_id ON public.service_history_services_2030 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateUpdated_idx2"; -- --- Name: index_shs_2030_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2030_date_en_id ON public.service_history_services_2030 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateUpdated_idx3"; -- --- Name: index_shs_2030_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2030_date_project_type ON public.service_history_services_2030 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_DateUpdated_idx4"; -- --- Name: index_shs_2030_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2030_en_id_only ON public.service_history_services_2030 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx"; -- --- Name: index_shs_2031_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2031_c_id_en_id ON public.service_history_services_2031 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx1"; -- --- Name: index_shs_2031_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2031_client_id_only ON public.service_history_services_2031 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx2"; -- --- Name: index_shs_2031_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2031_date_brin ON public.service_history_services_2031 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx3"; -- --- Name: index_shs_2031_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2031_date_client_id ON public.service_history_services_2031 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx4"; -- --- Name: index_shs_2031_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2031_date_en_id ON public.service_history_services_2031 USING btree (date, service_history_enrollment_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_EnrollmentID_PersonalID_idx5"; -- --- Name: index_shs_2031_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2031_date_project_type ON public.service_history_services_2031 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_EnrollmentID_idx"; -- --- Name: index_shs_2031_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2031_en_id_only ON public.service_history_services_2031 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_EnrollmentID_idx1"; -- --- Name: index_shs_2032_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2032_c_id_en_id ON public.service_history_services_2032 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_EnrollmentID_idx2"; -- --- Name: index_shs_2032_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2032_client_id_only ON public.service_history_services_2032 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_EnrollmentID_idx3"; -- --- Name: index_shs_2032_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2032_date_brin ON public.service_history_services_2032 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_EnrollmentID_idx4"; -- --- Name: index_shs_2032_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2032_date_client_id ON public.service_history_services_2032 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_ExportID_idx"; -- --- Name: index_shs_2032_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2032_date_en_id ON public.service_history_services_2032 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_ExportID_idx1"; -- --- Name: index_shs_2032_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2032_date_project_type ON public.service_history_services_2032 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_ExportID_idx2"; -- --- Name: index_shs_2032_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2032_en_id_only ON public.service_history_services_2032 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_ExportID_idx3"; -- --- Name: index_shs_2033_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2033_c_id_en_id ON public.service_history_services_2033 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_ExportID_idx4"; -- --- Name: index_shs_2033_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2033_client_id_only ON public.service_history_services_2033 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_PersonalID_idx"; -- --- Name: index_shs_2033_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2033_date_brin ON public.service_history_services_2033 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_PersonalID_idx1"; -- --- Name: index_shs_2033_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2033_date_client_id ON public.service_history_services_2033 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_PersonalID_idx2"; -- --- Name: index_shs_2033_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2033_date_en_id ON public.service_history_services_2033 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_PersonalID_idx3"; -- --- Name: index_shs_2033_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2033_date_project_type ON public.service_history_services_2033 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_PersonalID_idx4"; -- --- Name: index_shs_2033_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2033_en_id_only ON public.service_history_services_2033 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx"; -- --- Name: index_shs_2034_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2034_c_id_en_id ON public.service_history_services_2034 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx1"; -- --- Name: index_shs_2034_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2034_client_id_only ON public.service_history_services_2034 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx2"; -- --- Name: index_shs_2034_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2034_date_brin ON public.service_history_services_2034 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx3"; -- --- Name: index_shs_2034_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2034_date_client_id ON public.service_history_services_2034 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_DateDeleted_idx4"; -- --- Name: index_shs_2034_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2034_date_en_id ON public.service_history_services_2034 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_DateProvided_idx"; -- --- Name: index_shs_2034_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2034_date_project_type ON public.service_history_services_2034 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_DateProvided_idx1"; -- --- Name: index_shs_2034_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2034_en_id_only ON public.service_history_services_2034 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_DateProvided_idx2"; -- --- Name: index_shs_2035_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2035_c_id_en_id ON public.service_history_services_2035 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_DateProvided_idx3"; -- --- Name: index_shs_2035_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2035_client_id_only ON public.service_history_services_2035 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_DateProvided_idx4"; -- --- Name: index_shs_2035_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2035_date_brin ON public.service_history_services_2035 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_idx"; -- --- Name: index_shs_2035_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2035_date_client_id ON public.service_history_services_2035 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_idx1"; -- --- Name: index_shs_2035_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2035_date_en_id ON public.service_history_services_2035 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_idx2"; -- --- Name: index_shs_2035_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2035_date_project_type ON public.service_history_services_2035 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_idx3"; -- --- Name: index_shs_2035_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2035_en_id_only ON public.service_history_services_2035 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_RecordType_idx4"; -- --- Name: index_shs_2036_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2036_c_id_en_id ON public.service_history_services_2036 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_ServicesID_data_source_id_idx"; -- --- Name: index_shs_2036_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2036_client_id_only ON public.service_history_services_2036 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_ServicesID_idx"; -- --- Name: index_shs_2036_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2036_date_brin ON public.service_history_services_2036 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_ServicesID_idx1"; -- --- Name: index_shs_2036_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2036_date_client_id ON public.service_history_services_2036 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_ServicesID_idx2"; -- --- Name: index_shs_2036_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2036_date_en_id ON public.service_history_services_2036 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_ServicesID_idx3"; -- --- Name: index_shs_2036_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2036_date_project_type ON public.service_history_services_2036 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_70_ServicesID_idx4"; -- --- Name: index_shs_2036_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2036_en_id_only ON public.service_history_services_2036 USING btree (service_history_enrollment_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_70_importer_log_id_idx; -- --- Name: index_shs_2037_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2037_c_id_en_id ON public.service_history_services_2037 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_70_pkey; -- --- Name: index_shs_2037_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_70_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2037_client_id_only ON public.service_history_services_2037 USING btree (client_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_70_source_type_source_id_idx; -- --- Name: index_shs_2037_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2037_date_brin ON public.service_history_services_2037 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateCreated_idx"; -- --- Name: index_shs_2037_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2037_date_client_id ON public.service_history_services_2037 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateCreated_idx1"; -- --- Name: index_shs_2037_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2037_date_en_id ON public.service_history_services_2037 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateCreated_idx2"; -- --- Name: index_shs_2037_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2037_date_project_type ON public.service_history_services_2037 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateCreated_idx3"; -- --- Name: index_shs_2037_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2037_en_id_only ON public.service_history_services_2037 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateCreated_idx4"; -- --- Name: index_shs_2038_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2038_c_id_en_id ON public.service_history_services_2038 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateDeleted_idx"; -- --- Name: index_shs_2038_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2038_client_id_only ON public.service_history_services_2038 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateDeleted_idx1"; -- --- Name: index_shs_2038_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2038_date_brin ON public.service_history_services_2038 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateDeleted_idx2"; -- --- Name: index_shs_2038_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2038_date_client_id ON public.service_history_services_2038 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateDeleted_idx3"; -- --- Name: index_shs_2038_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2038_date_en_id ON public.service_history_services_2038 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateDeleted_idx4"; -- --- Name: index_shs_2038_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2038_date_project_type ON public.service_history_services_2038 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateProvided_idx"; -- --- Name: index_shs_2038_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2038_en_id_only ON public.service_history_services_2038 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateProvided_idx1"; -- --- Name: index_shs_2039_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2039_c_id_en_id ON public.service_history_services_2039 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateProvided_idx2"; -- --- Name: index_shs_2039_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2039_client_id_only ON public.service_history_services_2039 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateProvided_idx3"; -- --- Name: index_shs_2039_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2039_date_brin ON public.service_history_services_2039 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateProvided_idx4"; -- --- Name: index_shs_2039_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2039_date_client_id ON public.service_history_services_2039 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateUpdated_idx"; -- --- Name: index_shs_2039_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2039_date_en_id ON public.service_history_services_2039 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateUpdated_idx1"; -- --- Name: index_shs_2039_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2039_date_project_type ON public.service_history_services_2039 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateUpdated_idx2"; -- --- Name: index_shs_2039_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2039_en_id_only ON public.service_history_services_2039 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateUpdated_idx3"; -- --- Name: index_shs_2040_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2040_c_id_en_id ON public.service_history_services_2040 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_DateUpdated_idx4"; -- --- Name: index_shs_2040_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2040_client_id_only ON public.service_history_services_2040 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx"; -- --- Name: index_shs_2040_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2040_date_brin ON public.service_history_services_2040 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx1"; -- --- Name: index_shs_2040_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2040_date_client_id ON public.service_history_services_2040 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx2"; -- --- Name: index_shs_2040_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2040_date_en_id ON public.service_history_services_2040 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx3"; -- --- Name: index_shs_2040_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2040_date_project_type ON public.service_history_services_2040 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx4"; -- --- Name: index_shs_2040_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2040_en_id_only ON public.service_history_services_2040 USING btree (service_history_enrollment_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_EnrollmentID_PersonalID_idx5"; -- --- Name: index_shs_2041_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2041_c_id_en_id ON public.service_history_services_2041 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_EnrollmentID_idx"; -- --- Name: index_shs_2041_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2041_client_id_only ON public.service_history_services_2041 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_EnrollmentID_idx1"; -- --- Name: index_shs_2041_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2041_date_brin ON public.service_history_services_2041 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_EnrollmentID_idx2"; -- --- Name: index_shs_2041_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2041_date_client_id ON public.service_history_services_2041 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_EnrollmentID_idx3"; -- --- Name: index_shs_2041_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2041_date_en_id ON public.service_history_services_2041 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_EnrollmentID_idx4"; -- --- Name: index_shs_2041_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2041_date_project_type ON public.service_history_services_2041 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_ExportID_idx"; -- --- Name: index_shs_2041_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2041_en_id_only ON public.service_history_services_2041 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_ExportID_idx1"; -- --- Name: index_shs_2042_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2042_c_id_en_id ON public.service_history_services_2042 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_ExportID_idx2"; -- --- Name: index_shs_2042_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2042_client_id_only ON public.service_history_services_2042 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_ExportID_idx3"; -- --- Name: index_shs_2042_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2042_date_brin ON public.service_history_services_2042 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_ExportID_idx4"; -- --- Name: index_shs_2042_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2042_date_client_id ON public.service_history_services_2042 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_PersonalID_idx"; -- --- Name: index_shs_2042_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2042_date_en_id ON public.service_history_services_2042 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_PersonalID_idx1"; -- --- Name: index_shs_2042_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2042_date_project_type ON public.service_history_services_2042 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_PersonalID_idx2"; -- --- Name: index_shs_2042_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2042_en_id_only ON public.service_history_services_2042 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_PersonalID_idx3"; -- --- Name: index_shs_2043_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2043_c_id_en_id ON public.service_history_services_2043 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_PersonalID_idx4"; -- --- Name: index_shs_2043_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2043_client_id_only ON public.service_history_services_2043 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx"; -- --- Name: index_shs_2043_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2043_date_brin ON public.service_history_services_2043 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx1"; -- --- Name: index_shs_2043_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2043_date_client_id ON public.service_history_services_2043 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx2"; -- --- Name: index_shs_2043_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2043_date_en_id ON public.service_history_services_2043 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx3"; -- --- Name: index_shs_2043_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2043_date_project_type ON public.service_history_services_2043 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_DateDeleted_idx4"; -- --- Name: index_shs_2043_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2043_en_id_only ON public.service_history_services_2043 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_DateProvided_idx"; -- --- Name: index_shs_2044_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2044_c_id_en_id ON public.service_history_services_2044 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_DateProvided_idx1"; -- --- Name: index_shs_2044_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2044_client_id_only ON public.service_history_services_2044 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_DateProvided_idx2"; -- --- Name: index_shs_2044_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2044_date_brin ON public.service_history_services_2044 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_DateProvided_idx3"; -- --- Name: index_shs_2044_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2044_date_client_id ON public.service_history_services_2044 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_DateProvided_idx4"; -- --- Name: index_shs_2044_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2044_date_en_id ON public.service_history_services_2044 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_idx"; -- --- Name: index_shs_2044_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2044_date_project_type ON public.service_history_services_2044 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_idx1"; -- --- Name: index_shs_2044_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2044_en_id_only ON public.service_history_services_2044 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_idx2"; -- --- Name: index_shs_2045_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2045_c_id_en_id ON public.service_history_services_2045 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_idx3"; -- --- Name: index_shs_2045_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2045_client_id_only ON public.service_history_services_2045 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_RecordType_idx4"; -- --- Name: index_shs_2045_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2045_date_brin ON public.service_history_services_2045 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_ServicesID_data_source_id_idx"; -- --- Name: index_shs_2045_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2045_date_client_id ON public.service_history_services_2045 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_ServicesID_idx"; -- --- Name: index_shs_2045_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2045_date_en_id ON public.service_history_services_2045 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_ServicesID_idx1"; -- --- Name: index_shs_2045_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2045_date_project_type ON public.service_history_services_2045 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_ServicesID_idx2"; -- --- Name: index_shs_2045_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2045_en_id_only ON public.service_history_services_2045 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_ServicesID_idx3"; -- --- Name: index_shs_2046_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2046_c_id_en_id ON public.service_history_services_2046 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_ServicesID_idx4"; -- --- Name: index_shs_2046_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_ServicesID_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2046_client_id_only ON public.service_history_services_2046 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_7_ServicesID_importer_log_id_idx"; -- --- Name: index_shs_2046_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2046_date_brin ON public.service_history_services_2046 USING brin (date); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_7_importer_log_id_idx; -- --- Name: index_shs_2046_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2046_date_client_id ON public.service_history_services_2046 USING btree (client_id, date, record_type); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_7_pkey; -- --- Name: index_shs_2046_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_7_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2046_date_en_id ON public.service_history_services_2046 USING btree (date, service_history_enrollment_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_7_source_type_source_id_idx; -- --- Name: index_shs_2046_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2046_date_project_type ON public.service_history_services_2046 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateCreated_idx"; -- --- Name: index_shs_2046_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2046_en_id_only ON public.service_history_services_2046 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateCreated_idx1"; -- --- Name: index_shs_2047_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2047_c_id_en_id ON public.service_history_services_2047 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateCreated_idx2"; -- --- Name: index_shs_2047_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2047_client_id_only ON public.service_history_services_2047 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateCreated_idx3"; -- --- Name: index_shs_2047_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2047_date_brin ON public.service_history_services_2047 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateCreated_idx4"; -- --- Name: index_shs_2047_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2047_date_client_id ON public.service_history_services_2047 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateDeleted_idx"; -- --- Name: index_shs_2047_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2047_date_en_id ON public.service_history_services_2047 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateDeleted_idx1"; -- --- Name: index_shs_2047_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2047_date_project_type ON public.service_history_services_2047 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateDeleted_idx2"; -- --- Name: index_shs_2047_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2047_en_id_only ON public.service_history_services_2047 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateDeleted_idx3"; -- --- Name: index_shs_2048_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2048_c_id_en_id ON public.service_history_services_2048 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateDeleted_idx4"; -- --- Name: index_shs_2048_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2048_client_id_only ON public.service_history_services_2048 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateProvided_idx"; -- --- Name: index_shs_2048_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2048_date_brin ON public.service_history_services_2048 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateProvided_idx1"; -- --- Name: index_shs_2048_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2048_date_client_id ON public.service_history_services_2048 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateProvided_idx2"; -- --- Name: index_shs_2048_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2048_date_en_id ON public.service_history_services_2048 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateProvided_idx3"; -- --- Name: index_shs_2048_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2048_date_project_type ON public.service_history_services_2048 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateProvided_idx4"; -- --- Name: index_shs_2048_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2048_en_id_only ON public.service_history_services_2048 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateUpdated_idx"; -- --- Name: index_shs_2049_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2049_c_id_en_id ON public.service_history_services_2049 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateUpdated_idx1"; -- --- Name: index_shs_2049_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2049_client_id_only ON public.service_history_services_2049 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateUpdated_idx2"; -- --- Name: index_shs_2049_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2049_date_brin ON public.service_history_services_2049 USING brin (date); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateUpdated_idx3"; -- --- Name: index_shs_2049_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2049_date_client_id ON public.service_history_services_2049 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_DateUpdated_idx4"; -- --- Name: index_shs_2049_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2049_date_en_id ON public.service_history_services_2049 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx"; -- --- Name: index_shs_2049_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2049_date_project_type ON public.service_history_services_2049 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx1"; -- --- Name: index_shs_2049_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2049_en_id_only ON public.service_history_services_2049 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx2"; -- --- Name: index_shs_2050_c_id_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2050_c_id_en_id ON public.service_history_services_2050 USING btree (client_id, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx3"; -- --- Name: index_shs_2050_client_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2050_client_id_only ON public.service_history_services_2050 USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx4"; -- --- Name: index_shs_2050_date_brin; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2050_date_brin ON public.service_history_services_2050 USING brin (date); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_EnrollmentID_PersonalID_idx5"; -- --- Name: index_shs_2050_date_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2050_date_client_id ON public.service_history_services_2050 USING btree (client_id, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_EnrollmentID_idx"; -- --- Name: index_shs_2050_date_en_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_shs_2050_date_en_id ON public.service_history_services_2050 USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_EnrollmentID_idx1"; -- --- Name: index_shs_2050_date_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2050_date_project_type ON public.service_history_services_2050 USING btree (project_type, date, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_EnrollmentID_idx2"; -- --- Name: index_shs_2050_en_id_only; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shs_2050_en_id_only ON public.service_history_services_2050 USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_EnrollmentID_idx3"; -- --- Name: index_shsm_c_id_date; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shsm_c_id_date ON public.service_history_services_materialized USING btree (client_id, date); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_EnrollmentID_idx4"; -- --- Name: index_shsm_c_id_p_type_r_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shsm_c_id_p_type_r_type ON public.service_history_services_materialized USING btree (client_id, project_type, record_type); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_ExportID_idx"; -- --- Name: index_shsm_homeless_p_type_c_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shsm_homeless_p_type_c_id ON public.service_history_services_materialized USING btree (homeless, project_type, client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_ExportID_idx1"; -- --- Name: index_shsm_literally_homeless_p_type_c_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shsm_literally_homeless_p_type_c_id ON public.service_history_services_materialized USING btree (literally_homeless, project_type, client_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_ExportID_idx2"; -- --- Name: index_shsm_shse_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_shsm_shse_id ON public.service_history_services_materialized USING btree (service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_ExportID_idx3"; -- --- Name: index_simple_report_cells_on_report_instance_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_simple_report_cells_on_report_instance_id ON public.simple_report_cells USING btree (report_instance_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_ExportID_idx4"; -- --- Name: index_simple_report_instances_on_goal_configuration_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_simple_report_instances_on_goal_configuration_id ON public.simple_report_instances USING btree (goal_configuration_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_PersonalID_idx"; -- --- Name: index_simple_report_instances_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_simple_report_instances_on_user_id ON public.simple_report_instances USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_PersonalID_idx1"; -- --- Name: index_simple_report_universe_members_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_simple_report_universe_members_on_client_id ON public.simple_report_universe_members USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_PersonalID_idx2"; -- --- Name: index_simple_report_universe_members_on_report_cell_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_simple_report_universe_members_on_report_cell_id ON public.simple_report_universe_members USING btree (report_cell_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_PersonalID_idx3"; -- --- Name: index_staff_x_client_s_id_c_id_r_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_staff_x_client_s_id_c_id_r_id ON public.hmis_staff_x_clients USING btree (staff_id, client_id, relationship_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_PersonalID_idx4"; -- --- Name: index_synthetic_assessments_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_synthetic_assessments_on_client_id ON public.synthetic_assessments USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx"; -- --- Name: index_synthetic_assessments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_synthetic_assessments_on_enrollment_id ON public.synthetic_assessments USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx1"; -- --- Name: index_synthetic_assessments_on_source_type_and_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_synthetic_assessments_on_source_type_and_source_id ON public.synthetic_assessments USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx2"; -- --- Name: index_synthetic_ce_assessment_project_configs_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_synthetic_ce_assessment_project_configs_on_project_id ON public.synthetic_ce_assessment_project_configs USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx3"; -- --- Name: index_synthetic_events_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_synthetic_events_on_client_id ON public.synthetic_events USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_DateDeleted_idx4"; -- --- Name: index_synthetic_events_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_synthetic_events_on_enrollment_id ON public.synthetic_events USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_DateProvided_idx"; -- --- Name: index_synthetic_events_on_source_id_and_source_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_synthetic_events_on_source_id_and_source_type ON public.synthetic_events USING btree (source_id, source_type); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_DateProvided_idx1"; -- --- Name: index_synthetic_events_on_source_type_and_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_synthetic_events_on_source_type_and_source_id ON public.synthetic_events USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_DateProvided_idx2"; -- --- Name: index_synthetic_youth_education_statuses_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_synthetic_youth_education_statuses_on_client_id ON public.synthetic_youth_education_statuses USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_DateProvided_idx3"; -- --- Name: index_synthetic_youth_education_statuses_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_synthetic_youth_education_statuses_on_enrollment_id ON public.synthetic_youth_education_statuses USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_DateProvided_idx4"; -- --- Name: index_synthetic_youth_education_statuses_on_source; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_synthetic_youth_education_statuses_on_source ON public.synthetic_youth_education_statuses USING btree (source_type, source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_idx"; -- --- Name: index_system_pathways_enrollments_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_system_pathways_enrollments_on_enrollment_id ON public.system_pathways_enrollments USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_idx1"; -- --- Name: index_system_pathways_enrollments_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_system_pathways_enrollments_on_project_id ON public.system_pathways_enrollments USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_idx2"; -- --- Name: index_taggings_on_context; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_taggings_on_context ON public.taggings USING btree (context); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_idx3"; -- --- Name: index_taggings_on_tag_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_taggings_on_tag_id ON public.taggings USING btree (tag_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_RecordType_idx4"; -- --- Name: index_taggings_on_taggable_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_taggings_on_taggable_id ON public.taggings USING btree (taggable_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_ServicesID_data_source_id_idx"; -- --- Name: index_taggings_on_taggable_id_and_taggable_type_and_context; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_taggings_on_taggable_id_and_taggable_type_and_context ON public.taggings USING btree (taggable_id, taggable_type, context); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_ServicesID_idx"; -- --- Name: index_taggings_on_taggable_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_taggings_on_taggable_type ON public.taggings USING btree (taggable_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_ServicesID_idx1"; -- --- Name: index_taggings_on_tagger_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_taggings_on_tagger_id ON public.taggings USING btree (tagger_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_ServicesID_idx2"; -- --- Name: index_taggings_on_tagger_id_and_tagger_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_taggings_on_tagger_id_and_tagger_type ON public.taggings USING btree (tagger_id, tagger_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_ServicesID_idx3"; -- --- Name: index_tags_on_name; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_tags_on_name ON public.tags USING btree (name); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_ServicesID_idx4"; -- --- Name: index_talentlms_completed_trainings_on_config_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_ServicesID_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_talentlms_completed_trainings_on_config_id ON public.talentlms_completed_trainings USING btree (config_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_8_ServicesID_importer_log_id_idx"; -- --- Name: index_talentlms_completed_trainings_on_course_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_talentlms_completed_trainings_on_course_id ON public.talentlms_completed_trainings USING btree (course_id); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_8_importer_log_id_idx; -- --- Name: index_talentlms_completed_trainings_on_login_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_talentlms_completed_trainings_on_login_id ON public.talentlms_completed_trainings USING btree (login_id); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_8_pkey; -- --- Name: index_talentlms_courses_on_config_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_8_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_talentlms_courses_on_config_id ON public.talentlms_courses USING btree (config_id); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_8_source_type_source_id_idx; -- --- Name: index_talentlms_logins_on_config_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateCreated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_talentlms_logins_on_config_id ON public.talentlms_logins USING btree (config_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateCreated_idx"; -- --- Name: index_talentlms_logins_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateCreated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_talentlms_logins_on_user_id ON public.talentlms_logins USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateCreated_idx1"; -- --- Name: index_text_message_messages_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateCreated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_text_message_messages_on_created_at ON public.text_message_messages USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateCreated_idx2"; -- --- Name: index_text_message_messages_on_subscriber_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateCreated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_text_message_messages_on_subscriber_id ON public.text_message_messages USING btree (subscriber_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateCreated_idx3"; -- --- Name: index_text_message_messages_on_topic_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateCreated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_text_message_messages_on_topic_id ON public.text_message_messages USING btree (topic_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateCreated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateCreated_idx4"; -- --- Name: index_text_message_messages_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_text_message_messages_on_updated_at ON public.text_message_messages USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateDeleted_idx"; -- --- Name: index_text_message_topic_subscribers_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_text_message_topic_subscribers_on_created_at ON public.text_message_topic_subscribers USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateDeleted_idx1"; -- --- Name: index_text_message_topic_subscribers_on_topic_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_text_message_topic_subscribers_on_topic_id ON public.text_message_topic_subscribers USING btree (topic_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateDeleted_idx2"; -- --- Name: index_text_message_topic_subscribers_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_text_message_topic_subscribers_on_updated_at ON public.text_message_topic_subscribers USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateDeleted_idx3"; -- --- Name: index_text_message_topics_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_text_message_topics_on_created_at ON public.text_message_topics USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateDeleted_idx4"; -- --- Name: index_text_message_topics_on_title; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_text_message_topics_on_title ON public.text_message_topics USING btree (title); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateProvided_idx"; -- --- Name: index_text_message_topics_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_text_message_topics_on_updated_at ON public.text_message_topics USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateProvided_idx1"; -- --- Name: index_themes_on_remote_credential_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_themes_on_remote_credential_id ON public.themes USING btree (remote_credential_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateProvided_idx2"; -- --- Name: index_tx_research_exports_on_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_tx_research_exports_on_export_id ON public.tx_research_exports USING btree (export_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateProvided_idx3"; -- --- Name: index_tx_research_exports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_tx_research_exports_on_user_id ON public.tx_research_exports USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateProvided_idx4"; -- --- Name: index_universe_type_and_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateUpdated_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_universe_type_and_id ON public.hud_report_universe_members USING btree (universe_membership_type, universe_membership_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateUpdated_idx"; -- --- Name: index_uploads_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateUpdated_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_uploads_on_deleted_at ON public.uploads USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateUpdated_idx1"; -- --- Name: index_user_client_permissions_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateUpdated_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_user_client_permissions_on_client_id ON public.user_client_permissions USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateUpdated_idx2"; -- --- Name: index_user_client_permissions_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateUpdated_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_user_client_permissions_on_user_id ON public.user_client_permissions USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateUpdated_idx3"; -- --- Name: index_user_clients_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_DateUpdated_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_user_clients_on_client_id ON public.user_clients USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_DateUpdated_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_DateUpdated_idx4"; -- --- Name: index_user_clients_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_user_clients_on_user_id ON public.user_clients USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx"; -- --- Name: index_va_check_histories_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_va_check_histories_on_client_id ON public.va_check_histories USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx1"; -- --- Name: index_va_check_histories_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_va_check_histories_on_user_id ON public.va_check_histories USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx2"; -- --- Name: index_versions_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_versions_on_client_id ON public.versions USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx3"; -- --- Name: index_versions_on_enrollment_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_versions_on_enrollment_id ON public.versions USING btree (enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx4"; -- --- Name: index_versions_on_item_type_and_item_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_versions_on_item_type_and_item_id ON public.versions USING btree (item_type, item_id); +ALTER INDEX public.hmis2022services_c548 ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_EnrollmentID_PersonalID_idx5"; -- --- Name: index_versions_on_project_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_versions_on_project_id ON public.versions USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_EnrollmentID_idx"; -- --- Name: index_vispdats_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_vispdats_on_client_id ON public.vispdats USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_EnrollmentID_idx1"; -- --- Name: index_vispdats_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_vispdats_on_user_id ON public.vispdats USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_EnrollmentID_idx2"; -- --- Name: index_warehouse_client_service_history_on_computed_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_client_service_history_on_computed_project_type ON public.warehouse_client_service_history USING btree (computed_project_type); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_EnrollmentID_idx3"; -- --- Name: index_warehouse_client_service_history_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_EnrollmentID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_client_service_history_on_data_source_id ON public.warehouse_client_service_history USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_EnrollmentID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_EnrollmentID_idx4"; -- --- Name: index_warehouse_client_service_history_on_enrollment_group_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_ExportID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_client_service_history_on_enrollment_group_id ON public.warehouse_client_service_history USING btree (enrollment_group_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_ExportID_idx"; -- --- Name: index_warehouse_client_service_history_on_first_date_in_program; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_ExportID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_client_service_history_on_first_date_in_program ON public.warehouse_client_service_history USING btree (first_date_in_program); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_ExportID_idx1"; -- --- Name: index_warehouse_client_service_history_on_household_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_ExportID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_client_service_history_on_household_id ON public.warehouse_client_service_history USING btree (household_id); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_ExportID_idx2"; -- --- Name: index_warehouse_client_service_history_on_last_date_in_program; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_ExportID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_client_service_history_on_last_date_in_program ON public.warehouse_client_service_history USING btree (last_date_in_program); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_ExportID_idx3"; -- --- Name: index_warehouse_client_service_history_on_project_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_ExportID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_client_service_history_on_project_type ON public.warehouse_client_service_history USING btree (project_type); +ALTER INDEX public."hmis_2022_services_partitioned_ExportID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_ExportID_idx4"; -- --- Name: index_warehouse_client_service_history_on_record_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_PersonalID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_client_service_history_on_record_type ON public.warehouse_client_service_history USING btree (record_type); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_PersonalID_idx"; -- --- Name: index_warehouse_clients_on_data_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_PersonalID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_clients_on_data_source_id ON public.warehouse_clients USING btree (data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_PersonalID_idx1"; -- --- Name: index_warehouse_clients_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_PersonalID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_clients_on_deleted_at ON public.warehouse_clients USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_PersonalID_idx2"; -- --- Name: index_warehouse_clients_on_destination_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_PersonalID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_clients_on_destination_id ON public.warehouse_clients USING btree (destination_id); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_PersonalID_idx3"; -- --- Name: index_warehouse_clients_on_id_in_source; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_PersonalID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_clients_on_id_in_source ON public.warehouse_clients USING btree (id_in_source); +ALTER INDEX public."hmis_2022_services_partitioned_PersonalID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_PersonalID_idx4"; -- --- Name: index_warehouse_clients_on_source_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX index_warehouse_clients_on_source_id ON public.warehouse_clients USING btree (source_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx"; -- --- Name: index_warehouse_clients_processed_on_chronic_days; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_clients_processed_on_chronic_days ON public.warehouse_clients_processed USING btree (chronic_days); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx1"; -- --- Name: index_warehouse_clients_processed_on_client_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_clients_processed_on_client_id ON public.warehouse_clients_processed USING btree (client_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx2"; -- --- Name: index_warehouse_clients_processed_on_days_served; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_clients_processed_on_days_served ON public.warehouse_clients_processed USING btree (days_served); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx3"; -- --- Name: index_warehouse_clients_processed_on_homeless_days; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_clients_processed_on_homeless_days ON public.warehouse_clients_processed USING btree (homeless_days); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateDeleted_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_DateDeleted_idx4"; -- --- Name: index_warehouse_clients_processed_on_routine; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_DateProvided_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_warehouse_clients_processed_on_routine ON public.warehouse_clients_processed USING btree (routine); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_DateProvided_idx"; -- --- Name: index_weather_on_url; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_DateProvided_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_weather_on_url ON public.weather USING btree (url); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_DateProvided_idx1"; -- --- Name: index_wsh_on_last_date_in_program; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_DateProvided_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_wsh_on_last_date_in_program ON public.new_service_history USING btree (first_date_in_program, last_date_in_program, record_type, date); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_DateProvided_idx2"; -- --- Name: index_youth_case_managements_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_DateProvided_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_youth_case_managements_on_deleted_at ON public.youth_case_managements USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_DateProvided_idx3"; -- --- Name: index_youth_exports_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_DateProvided_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_youth_exports_on_created_at ON public.youth_exports USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_DateProvided_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_DateProvided_idx4"; -- --- Name: index_youth_exports_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_youth_exports_on_updated_at ON public.youth_exports USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_idx"; -- --- Name: index_youth_exports_on_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_youth_exports_on_user_id ON public.youth_exports USING btree (user_id); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_idx1"; -- --- Name: index_youth_follow_ups_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_youth_follow_ups_on_deleted_at ON public.youth_follow_ups USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_idx2"; -- --- Name: index_youth_intakes_on_created_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_youth_intakes_on_created_at ON public.youth_intakes USING btree (created_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_idx3"; -- --- Name: index_youth_intakes_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_RecordType_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_youth_intakes_on_deleted_at ON public.youth_intakes USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_RecordType_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_RecordType_idx4"; -- --- Name: index_youth_intakes_on_updated_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_ServicesID_data_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_youth_intakes_on_updated_at ON public.youth_intakes USING btree (updated_at); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_data_source_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_ServicesID_data_source_id_idx"; -- --- Name: index_youth_referrals_on_deleted_at; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_ServicesID_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX index_youth_referrals_on_deleted_at ON public.youth_referrals USING btree (deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_ServicesID_idx"; -- --- Name: inventory_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_ServicesID_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX inventory_date_created ON public."Inventory" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx1" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_ServicesID_idx1"; -- --- Name: inventory_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_ServicesID_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX inventory_date_updated ON public."Inventory" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx2" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_ServicesID_idx2"; -- --- Name: inventory_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_ServicesID_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX inventory_export_id ON public."Inventory" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx3" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_ServicesID_idx3"; -- --- Name: involved_in_imports_by_hud_key; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_ServicesID_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX involved_in_imports_by_hud_key ON public.involved_in_imports USING btree (hud_key, importer_log_id, record_type, record_action); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_idx4" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_ServicesID_idx4"; -- --- Name: involved_in_imports_by_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_ServicesID_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX involved_in_imports_by_id ON public.involved_in_imports USING btree (record_id, importer_log_id, record_type, record_action); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_9_ServicesID_importer_log_id_idx"; -- --- Name: involved_in_imports_by_importer_log; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_importer_log_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX involved_in_imports_by_importer_log ON public.involved_in_imports USING btree (importer_log_id, record_type, record_action); +ALTER INDEX public.hmis_2022_services_partitioned_importer_log_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_9_importer_log_id_idx; -- --- Name: one_entity_per_type_per_collection; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_pkey; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX one_entity_per_type_per_collection ON public.group_viewable_entities USING btree (collection_id, entity_id, entity_type) WHERE (collection_id IS NOT NULL); +ALTER INDEX public.hmis_2022_services_partitioned_pkey ATTACH PARTITION hmis.hmis_2022_services_partitioned_9_pkey; -- --- Name: one_entity_per_type_per_group; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_9_source_type_source_id_idx; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX one_entity_per_type_per_group ON public.group_viewable_entities USING btree (access_group_id, entity_id, entity_type) WHERE (access_group_id <> 0); +ALTER INDEX public.hmis_2022_services_partitioned_source_type_source_id_idx ATTACH PARTITION hmis.hmis_2022_services_partitioned_9_source_type_source_id_idx; -- --- Name: one_entity_per_type_per_id_per_user; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx10; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX one_entity_per_type_per_id_per_user ON public.favorites USING btree (user_id, entity_id, entity_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx10"; -- --- Name: one_entity_per_type_per_user_allows_delete; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx11; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX one_entity_per_type_per_user_allows_delete ON public.user_viewable_entities USING btree (user_id, entity_id, entity_type, deleted_at); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx11"; -- --- Name: one_form_processor_per_owner; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx12; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX one_form_processor_per_owner ON public.hmis_form_processors USING btree (owner_id, owner_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx12"; -- --- Name: organization_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx13; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX organization_export_id ON public."Organization" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx13"; -- --- Name: p_id_ds_id_fp_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx14; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX p_id_ds_id_fp_idx ON public.financial_providers USING btree (provider_id, data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx14"; -- --- Name: pm_clients_c_id_fq_r_id_p; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx15; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX pm_clients_c_id_fq_r_id_p ON public.pm_client_projects USING btree (client_id, for_question, report_id, period); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx15"; -- --- Name: pm_clients_c_id_p_id_r_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx16; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX pm_clients_c_id_p_id_r_id ON public.pm_client_projects USING btree (client_id, project_id, report_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx16"; -- --- Name: ppfc_ppfp_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx17; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX ppfc_ppfp_idx ON public.project_pass_fails_clients USING btree (project_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx17"; -- --- Name: project_coc_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx18; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX project_coc_date_created ON public."ProjectCoC" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx18"; -- --- Name: project_coc_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx19; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX project_coc_date_updated ON public."ProjectCoC" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx19"; -- --- Name: project_coc_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx20; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX project_coc_export_id ON public."ProjectCoC" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx20"; -- --- Name: project_cocs_city_lower; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx21; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX project_cocs_city_lower ON public."ProjectCoC" USING btree (lower(("City")::text)); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx21"; -- --- Name: project_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx22; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX project_date_created ON public."Project" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx22"; -- --- Name: project_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx23; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX project_date_updated ON public."Project" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx23"; -- --- Name: project_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx24; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX project_export_id ON public."Project" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx24"; -- --- Name: project_tracking_method_rsh_index; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx25; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX project_tracking_method_rsh_index ON public.recent_service_history USING btree (project_tracking_method); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx25"; -- --- Name: project_type_rsh_index; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx26; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX project_type_rsh_index ON public.recent_service_history USING btree (project_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx26"; -- --- Name: services_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx27; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX services_date_created ON public."Services" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx27"; -- --- Name: services_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx28; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX services_date_updated ON public."Services" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx28"; -- --- Name: services_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx29; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX services_export_id ON public."Services" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx29"; -- --- Name: sh_date_ds_id_org_id_proj_id_proj_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx30; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX sh_date_ds_id_org_id_proj_id_proj_type ON public.warehouse_client_service_history USING btree (date, data_source_id, organization_id, project_id, project_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx30"; -- --- Name: shape_counties_namelsad_lower; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx31; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX shape_counties_namelsad_lower ON public.shape_counties USING btree (lower((namelsad)::text)); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx31"; -- --- Name: shs_unique_date_she_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx32; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX shs_unique_date_she_id ON public.service_history_services_was_for_inheritance USING btree (date, service_history_enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx32"; -- --- Name: simple_report_univ_type_and_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx33; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX simple_report_univ_type_and_id ON public.simple_report_universe_members USING btree (universe_membership_type, universe_membership_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx33"; -- --- Name: site_date_created; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx34; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX site_date_created ON public."Geography" USING btree ("DateCreated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx34"; -- --- Name: site_date_updated; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx35; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX site_date_updated ON public."Geography" USING btree ("DateUpdated"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx35"; -- --- Name: site_export_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx36; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX site_export_id ON public."Geography" USING btree ("ExportID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx36"; -- --- Name: spm_client_conflict_columns; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx37; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX spm_client_conflict_columns ON public.hud_report_spm_clients USING btree (report_instance_id, client_id, data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx37"; -- --- Name: spm_p_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx38; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX spm_p_id_ds_id ON public.hud_report_spm_enrollments USING btree (personal_id, data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx38"; -- --- Name: taggings_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx39; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX taggings_idx ON public.taggings USING btree (tag_id, taggable_id, taggable_type, context, tagger_id, tagger_type); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx39"; -- --- Name: taggings_idy; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx40; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX taggings_idy ON public.taggings USING btree (taggable_id, taggable_type, tagger_id, context); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx40"; -- --- Name: test_shs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx41; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX test_shs ON public.service_history_services_2000 USING btree (service_history_enrollment_id, date); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx41"; -- --- Name: tt; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx42; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX tt ON public.hmis_2022_exits USING btree ("EnrollmentID", "PersonalID", importer_log_id, data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx42"; -- --- Name: tx_id_ds_id_ft_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx43; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX tx_id_ds_id_ft_idx ON public.financial_transactions USING btree (transaction_id, data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx43"; -- --- Name: uidx_external_id_ns_value; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx44; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_external_id_ns_value ON public.external_ids USING btree (source_type, namespace, value) WHERE ((namespace)::text <> ALL (ARRAY[('ac_hmis_mci'::character varying)::text, ('ac_hmis_mci_unique_id'::character varying)::text])); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx44"; -- --- Name: uidx_external_ids_source_value; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx45; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_external_ids_source_value ON public.external_ids USING btree (source_id, source_type, remote_credential_id) WHERE (((namespace)::text <> 'ac_hmis_mci'::text) OR (namespace IS NULL)); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx45"; -- --- Name: uidx_hmis_external_referral_hms_1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx46; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hmis_external_referral_hms_1 ON public.hmis_external_referral_household_members USING btree (client_id, referral_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx46"; -- --- Name: uidx_hmis_external_referral_posting_identifier; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx47; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hmis_external_referral_posting_identifier ON public.hmis_external_referral_postings USING btree (identifier); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx47"; -- --- Name: uidx_hmis_external_referral_postings_1; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx48; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hmis_external_referral_postings_1 ON public.hmis_external_referral_postings USING btree (referral_id, referral_request_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx48"; -- --- Name: uidx_hmis_external_referral_requests_identifier; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx49; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hmis_external_referral_requests_identifier ON public.hmis_external_referral_requests USING btree (identifier); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx49"; -- --- Name: uidx_hmis_external_referrals_identifier; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx50; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hmis_external_referrals_identifier ON public.hmis_external_referrals USING btree (identifier); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx50"; -- --- Name: uidx_hmis_external_unit_availability_syncs; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx51; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hmis_external_unit_availability_syncs ON public.hmis_external_unit_availability_syncs USING btree (project_id, unit_type_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx51"; -- --- Name: uidx_hmis_form_definitions_identifier; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx52; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hmis_form_definitions_identifier ON public.hmis_form_definitions USING btree (identifier, version) WHERE (deleted_at IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx52"; -- --- Name: uidx_hmis_form_definitions_one_draft_per_identifier; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx53; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hmis_form_definitions_one_draft_per_identifier ON public.hmis_form_definitions USING btree (identifier) WHERE (((status)::text = 'draft'::text) AND (deleted_at IS NULL)); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx53"; -- --- Name: uidx_hmis_form_definitions_one_published_per_identifier; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx54; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hmis_form_definitions_one_published_per_identifier ON public.hmis_form_definitions USING btree (identifier) WHERE (((status)::text = 'published'::text) AND (deleted_at IS NULL)); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx54"; -- --- Name: uidx_hmis_project_unit_type_mappings; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx55; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hmis_project_unit_type_mappings ON public.hmis_project_unit_type_mappings USING btree (project_id, unit_type_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx55"; -- --- Name: uidx_hmis_staff_assignments; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx56; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hmis_staff_assignments ON public.hmis_staff_assignments USING btree (data_source_id, household_id, user_id, hmis_staff_assignment_relationship_id) WHERE (deleted_at IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx56"; -- --- Name: uidx_hmis_supplemental_field_values_on_key; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx57; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hmis_supplemental_field_values_on_key ON public.hmis_supplemental_field_values USING btree (data_set_id, owner_key, field_key); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx57"; -- --- Name: uidx_hopwa_caper_enrollments; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx58; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hopwa_caper_enrollments ON public.hopwa_caper_enrollments USING btree (report_instance_id, enrollment_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx58"; -- --- Name: uidx_hopwa_caper_services; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx59; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_hopwa_caper_services ON public.hopwa_caper_services USING btree (report_instance_id, service_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx59"; -- --- Name: uidx_import_overrides_rules; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx60; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uidx_import_overrides_rules ON public.import_overrides USING btree (data_source_id, file_name, replaces_column, COALESCE(matched_hud_key, 'ALL'::character varying), COALESCE(replaces_value, 'ALL'::character varying)) WHERE (deleted_at IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx60"; -- --- Name: uniq_hud_report_universe_members; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned_ServicesID_importer_log_id_idx61; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uniq_hud_report_universe_members ON public.hud_report_universe_members USING btree (report_cell_id, universe_membership_id, universe_membership_type) WHERE (deleted_at IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx61"; -- --- Name: uniq_simple_report_universe_members; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx1; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX uniq_simple_report_universe_members ON public.simple_report_universe_members USING btree (report_cell_id, universe_membership_id, universe_membership_type) WHERE (deleted_at IS NULL); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned__ServicesID_importer_log_id_idx1"; -- --- Name: unique_index_ensuring_one_key_per_record_type; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx2; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX unique_index_ensuring_one_key_per_record_type ON public."CustomDataElementDefinitions" USING btree (owner_type, key); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned__ServicesID_importer_log_id_idx2"; -- --- Name: unk_Geography; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx3; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "unk_Geography" ON public."Geography" USING btree (data_source_id, "GeographyID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned__ServicesID_importer_log_id_idx3"; -- --- Name: unk_Organization; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx4; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "unk_Organization" ON public."Organization" USING btree (data_source_id, "OrganizationID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned__ServicesID_importer_log_id_idx4"; -- --- Name: unk_Project; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx5; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "unk_Project" ON public."Project" USING btree (data_source_id, "ProjectID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned__ServicesID_importer_log_id_idx5"; -- --- Name: unk_Site; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx6; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX "unk_Site" ON public."Geography" USING btree (data_source_id, "GeographyID"); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned__ServicesID_importer_log_id_idx6"; -- --- Name: users_ds_email_idx; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx7; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX users_ds_email_idx ON public."User" USING btree ("UserEmail", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned__ServicesID_importer_log_id_idx7"; -- --- Name: youth_ed_ev_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx8; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE UNIQUE INDEX youth_ed_ev_id_ds_id ON public."YouthEducationStatus" USING btree ("YouthEducationStatusID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned__ServicesID_importer_log_id_idx8"; -- --- Name: youth_eds_id_e_id_p_id_ds_id; Type: INDEX; Schema: public; Owner: - +-- Name: hmis_2022_services_partitioned__ServicesID_importer_log_id_idx9; Type: INDEX ATTACH; Schema: hmis; Owner: - -- -CREATE INDEX youth_eds_id_e_id_p_id_ds_id ON public."YouthEducationStatus" USING btree ("YouthEducationStatusID", "EnrollmentID", "PersonalID", data_source_id); +ALTER INDEX public."hmis_2022_services_partitioned_ServicesID_importer_log_id_idx" ATTACH PARTITION hmis."hmis_2022_services_partitioned__ServicesID_importer_log_id_idx9"; -- @@ -62939,6 +342253,14 @@ ALTER TABLE ONLY public.service_history_services_2028 ADD CONSTRAINT fk_rails_7d15674636 FOREIGN KEY (service_history_enrollment_id) REFERENCES public.service_history_enrollments(id) ON DELETE CASCADE; +-- +-- Name: CustomDataElements fk_rails_7daa69c69f; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public."CustomDataElements" + ADD CONSTRAINT fk_rails_7daa69c69f FOREIGN KEY (value_file_id) REFERENCES public.files(id); + + -- -- Name: service_history_services_2038 fk_rails_7eb4e58ed1; Type: FK CONSTRAINT; Schema: public; Owner: - -- @@ -63330,13 +342652,1006 @@ ALTER TABLE ONLY public.import_logs SET search_path TO "$user", public; INSERT INTO "schema_migrations" (version) VALUES +('20160727190957'), +('20160729135359'), +('20160729183141'), +('20160816131814'), +('20160816173101'), +('20160818180405'), +('20160823130251'), +('20160823144637'), +('20160824150416'), +('20160826140306'), +('20160902162623'), +('20160902185045'), +('20160910000538'), +('20160913132444'), +('20160913152926'), +('20160913155401'), +('20160913160306'), +('20160913161311'), +('20160914185810'), +('20160919210259'), +('20160919212545'), +('20160922142402'), +('20160922162359'), +('20160922185930'), +('20160923113802'), +('20160926002900'), +('20160926145351'), +('20160926170204'), +('20160927134516'), +('20160927183151'), +('20160927184003'), +('20160927202506'), +('20160927202843'), +('20160927203650'), +('20160927205852'), +('20160928125517'), +('20160928140906'), +('20160928202720'), +('20160929010237'), +('20160929153319'), +('20160930142027'), +('20161004181613'), +('20161006180229'), +('20161007160124'), +('20161007182409'), +('20161011135522'), +('20161017193504'), +('20161019122336'), +('20161019181914'), +('20161020175933'), +('20161021142349'), +('20161021185201'), +('20161024205300'), +('20161025142716'), +('20161027160241'), +('20161027173838'), +('20161029184725'), +('20161030141156'), +('20161102131838'), +('20161102194513'), +('20161103173010'), +('20161104131304'), +('20161108150033'), +('20161109173403'), +('20161111194734'), +('20161111200331'), +('20161111205557'), +('20161111210852'), +('20161111214343'), +('20161115160857'), +('20161115163024'), +('20161115173437'), +('20161115181519'), +('20161115194005'), +('20161117042632'), +('20161117211439'), +('20161121134639'), +('20161122193356'), +('20161122205922'), +('20161122212446'), +('20161123145006'), +('20161128164214'), +('20161212154456'), +('20161213184140'), +('20161222172617'), +('20161223181314'), +('20161228184803'), +('20161229150159'), +('20170110183158'), +('20170210211420'), +('20170314123357'), +('20170420193254'), +('20170505131647'), +('20170505135248'), +('20170508001011'), +('20170508003906'), +('20170509183056'), +('20170510131916'), +('20170518194049'), +('20170526142051'), +('20170526162435'), +('20170530203255'), +('20170531152936'), +('20170602183611'), +('20170602235909'), +('20170604225122'), +('20170605004541'), +('20170605011844'), +('20170607195038'), +('20170609162811'), +('20170619211924'), +('20170620000812'), +('20170620013208'), +('20170622125121'), +('20170626133126'), +('20170705125336'), +('20170706145106'), +('20170712174621'), +('20170712182033'), +('20170714172533'), +('20170714195436'), +('20170716180758'), +('20170716202346'), +('20170718132138'), +('20170719172444'), +('20170726140915'), +('20170727231741'), +('20170728151813'), +('20170728201723'), +('20170801120635'), +('20170809173044'), +('20170815174824'), +('20170816175326'), +('20170816205625'), +('20170817150519'), +('20170818140329'), +('20170829131400'), +('20170830171507'), +('20170904132001'), +('20170904140427'), +('20170904202838'), +('20170905122913'), +('20170905122914'), +('20170905122915'), +('20170905122916'), +('20170905122917'), +('20170905122918'), +('20170905183117'), +('20170905202251'), +('20170905202611'), +('20170906161906'), +('20170911124040'), +('20170911194951'), +('20170912134710'), +('20170913192945'), +('20170918135821'), +('20170921201252'), +('20170922193229'), +('20170922200507'), +('20170924001510'), +('20170924005724'), +('20170924193906'), +('20170925000145'), +('20170926124009'), +('20170926200356'), +('20170927194653'), +('20170928185422'), +('20170928191904'), +('20170929193327'), +('20170930184143'), +('20171003122627'), +('20171005191828'), +('20171016191359'), +('20171019085351'), +('20171019143151'), +('20171020131243'), +('20171021194831'), +('20171023175038'), +('20171023194703'), +('20171024123740'), +('20171024180819'), +('20171025165617'), +('20171026122017'), +('20171026152842'), +('20171027031033'), +('20171102134710'), +('20171103003947'), +('20171103134010'), +('20171103154925'), +('20171106005358'), +('20171106211934'), +('20171108195513'), +('20171110180121'), +('20171111032952'), +('20171111190457'), +('20171113134728'), +('20171113142927'), +('20171113182656'), +('20171114132110'), +('20171115182249'), +('20171115193025'), +('20171116155352'), +('20171116184557'), +('20171127191122'), +('20171127203632'), +('20171127234210'), +('20171128161058'), +('20171129131811'), +('20171129172903'), +('20171201180334'), +('20171201180412'), +('20171204161239'), +('20171204180630'), +('20171205135225'), +('20171206131931'), +('20171208151137'), +('20171211131328'), +('20171211142747'), +('20171211194546'), +('20171212182935'), +('20171213002710'), +('20171213002924'), +('20171215203448'), +('20171218211735'), +('20171219160943'), +('20171222140958'), +('20171222142957'), +('20171222143540'), +('20171222151018'), +('20180114165737'), +('20180114181159'), +('20180115165003'), +('20180115195008'), +('20180117210259'), +('20180120142315'), +('20180120145651'), +('20180120184755'), +('20180122135635'), +('20180122190528'), +('20180123145547'), +('20180123151137'), +('20180125214133'), +('20180126184544'), +('20180126212658'), +('20180126230757'), +('20180127151221'), +('20180129211310'), +('20180129222234'), +('20180130173319'), +('20180203202523'), +('20180205134947'), +('20180205160021'), +('20180206132151'), +('20180206132418'), +('20180206132549'), +('20180206211300'), +('20180209140514'), +('20180209145558'), +('20180211182226'), +('20180211191923'), +('20180212154518'), +('20180213132145'), +('20180213133619'), +('20180215212401'), +('20180216221704'), +('20180218004200'), +('20180218194158'), +('20180218195838'), +('20180219003427'), +('20180219011911'), +('20180219213751'), +('20180221172154'), +('20180221200920'), +('20180222132714'), +('20180223131630'), +('20180226181023'), +('20180227184226'), +('20180228134319'), +('20180228202408'), +('20180302005549'), +('20180303012057'), +('20180304020707'), +('20180307184913'), +('20180309152824'), +('20180309161833'), +('20180309194413'), +('20180309200416'), +('20180313170616'), +('20180314121340'), +('20180319204410'), +('20180326140546'), +('20180330145925'), +('20180408102020'), +('20180410081403'), +('20180424182721'), +('20180424185646'), +('20180424190544'), +('20180425140146'), +('20180510001923'), +('20180510002556'), +('20180510130324'), +('20180516130234'), +('20180516133454'), +('20180521173754'), +('20180528152133'), +('20180528155555'), +('20180528174021'), +('20180529122603'), +('20180605164543'), +('20180613193551'), +('20180614004301'), +('20180615232905'), +('20180616123004'), +('20180617111542'), +('20180617130414'), +('20180626134714'), +('20180626140358'), +('20180628035131'), +('20180707180119'), +('20180707183425'), +('20180709173131'), +('20180710174412'), +('20180710195222'), +('20180713143703'), +('20180716142944'), +('20180716175514'), +('20180716181552'), +('20180718152629'), +('20180723180257'), +('20180731125029'), +('20180801185645'), +('20180810142730'), +('20180810175903'), +('20180813144056'), +('20180814144715'), +('20180815162429'), +('20180831171525'), +('20180909174113'), +('20180910121905'), +('20180910130909'), +('20180912121943'), +('20180912154937'), +('20180914235727'), +('20180917204430'), +('20180919135034'), +('20181001174159'), +('20181001180812'), +('20181001193048'), +('20181005171232'), +('20181005172849'), +('20181010193431'), +('20181012130754'), +('20181015132913'), +('20181015132958'), +('20181019160628'), +('20181019182438'), +('20181019185052'), +('20181022144551'), +('20181026125946'), +('20181030142001'), +('20181031151924'), +('20181107183718'), +('20181107184057'), +('20181107184157'), +('20181107184258'), +('20181119165528'), +('20181206135841'), +('20181206195139'), +('20181207011350'), +('20181210141734'), +('20181218184800'), +('20181219184841'), +('20181227145018'), +('20190107135250'), +('20190108133610'), +('20190110145430'), +('20190110205705'), +('20190111154442'), +('20190111162407'), +('20190114175107'), +('20190129175440'), +('20190129193710'), +('20190129193718'), +('20190129193734'), +('20190130141818'), +('20190201172226'), +('20190204194825'), +('20190208173854'), +('20190209204636'), +('20190211182446'), +('20190211212757'), +('20190215151428'), +('20190215174811'), +('20190216193115'), +('20190221211525'), +('20190225173734'), +('20190228151509'), +('20190306011413'), +('20190307205203'), +('20190313191758'), +('20190314233300'), +('20190315202420'), +('20190319174002'), +('20190320132816'), +('20190320135300'), +('20190321154235'), +('20190322182648'), +('20190324204257'), +('20190325205709'), +('20190327174322'), +('20190328135601'), +('20190328183719'), +('20190328201651'), +('20190329122650'), +('20190408180044'), +('20190423144729'), +('20190424185158'), +('20190424194714'), +('20190501154934'), +('20190502150143'), +('20190507184540'), +('20190508181020'), +('20190509161703'), +('20190510123307'), +('20190512175652'), +('20190531005415'), +('20190603155216'), +('20190603192544'), +('20190603204753'), +('20190604164934'), +('20190605121550'), +('20190605153143'), +('20190605155107'), +('20190606000839'), +('20190606111838'), +('20190611020510'), +('20190612194424'), +('20190614132143'), +('20190617141627'), +('20190617154412'), +('20190701175345'), +('20190701203722'), +('20190701203738'), +('20190705192539'), +('20190709170452'), +('20190710202403'), +('20190712190215'), +('20190715191354'), +('20190715195832'), +('20190715203906'), +('20190715371835'), +('20190717171417'), +('20190719141740'), +('20190725172606'), +('20190725183917'), +('20190725205710'), +('20190726191455'), +('20190726201314'), +('20190730141425'), +('20190801130133'), +('20190801131014'), +('20190802121551'), +('20190805172310'), +('20190808155531'), +('20190814011156'), +('20190814174740'), +('20190814194736'), +('20190814195700'), +('20190814202518'), +('20190816160117'), +('20190819235806'), +('20190820145158'), +('20190821163752'), +('20190821200216'), +('20190823150100'), +('20190823175037'), +('20190902140838'), +('20190909171338'), +('20190913131118'), +('20190916192050'), +('20190917000129'), +('20190917001135'), +('20190917172920'), +('20190918132924'), +('20190918191348'), +('20190918204616'), +('20190919153540'), +('20190919164531'), +('20190919211227'), +('20190923153128'), +('20190924134442'), +('20190927193254'), +('20191007155052'), +('20191011124048'), +('20191014144407'), +('20191017122329'), +('20191017141927'), +('20191021192058'), +('20191025130319'), +('20191029172244'), +('20191101143044'), +('20191101171753'), +('20191102185935'), +('20191104145557'), +('20191106135508'), +('20191107212914'), +('20191111144437'), +('20191112142922'), +('20191114212804'), +('20191115192256'), +('20191120171159'), +('20191205155752'), +('20191216210204'), +('20191219154817'), +('20191223133641'), +('20191223141858'), +('20191223161021'), +('20191223203007'), +('20191227161033'), +('20200106005041'), +('20200106010648'), +('20200106161751'), +('20200106175129'), +('20200108174617'), +('20200108184052'), +('20200110150204'), +('20200114154449'), +('20200120191326'), +('20200205010344'), +('20200207165957'), +('20200211150300'), +('20200211154527'), +('20200212140919'), +('20200214200455'), +('20200217152806'), +('20200217194551'), +('20200219175547'), +('20200221194355'), +('20200225181344'), +('20200225181450'), +('20200225190151'), +('20200302164716'), +('20200303174258'), +('20200303183252'), +('20200304153159'), +('20200306172853'), +('20200307210926'), +('20200310141315'), +('20200312175312'), +('20200319123357'), +('20200324151503'), +('20200325181533'), +('20200325200620'), +('20200326183628'), +('20200326203618'), +('20200327143205'), +('20200327203519'), +('20200328122019'), +('20200328124124'), +('20200402121258'), +('20200408133149'), +('20200414121843'), +('20200415124657'), +('20200417164547'), +('20200420123748'), +('20200420144827'), +('20200421121604'), +('20200424152842'), +('20200424202136'), +('20200429142723'), +('20200430124823'), +('20200430173113'), +('20200504140400'), +('20200506181929'), +('20200506195939'), +('20200514185800'), +('20200518125929'), +('20200519175104'), +('20200530134853'), +('20200608183800'), +('20200617123752'), +('20200625130802'), +('20200627165150'), +('20200628001355'), +('20200628002641'), +('20200628153252'), +('20200629153416'), +('20200629180206'), +('20200630152328'), +('20200701150708'), +('20200701171520'), +('20200701192839'), +('20200702125231'), +('20200703025438'), +('20200703154239'), +('20200703154409'), +('20200703223937'), +('20200703234840'), +('20200706171817'), +('20200706180800'), +('20200706193249'), +('20200713203505'), +('20200716132417'), +('20200718194102'), +('20200719235413'), +('20200721190101'), +('20200722194242'), +('20200722200713'), +('20200723143000'), +('20200723144121'), +('20200723172609'), +('20200723204046'), +('20200724153536'), +('20200724173742'), +('20200724180227'), +('20200729203440'), +('20200731143840'), +('20200731181511'), +('20200806183758'), +('20200812144640'), +('20200812153339'), +('20200814173200'), +('20200821185026'), +('20200824174347'), +('20200826165713'), +('20200827130841'), +('20200827224602'), +('20200831151807'), +('20200831193024'), +('20200901201024'), +('20200903133437'), +('20200904191736'), +('20200910142617'), +('20200914190210'), +('20200915230624'), +('20200916144557'), +('20200916195351'), +('20200917185233'), +('20200917193037'), +('20200921194630'), +('20200922192121'), +('20200923184619'), +('20200925172414'), +('20200925201420'), +('20200927201419'), +('20200928194005'), +('20200929203230'), +('20201001171704'), +('20201006134420'), +('20201006194015'), +('20201008204557'), +('20201009165424'), +('20201019193328'), +('20201020181913'), +('20201023130124'), +('20201027200503'), +('20201030145808'), +('20201104133922'), +('20201104182139'), +('20201104183517'), +('20201109142122'), +('20201110201513'), +('20201111165550'), +('20201116211113'), +('20201125130708'), +('20201201162902'), +('20201202135347'), +('20201203140706'), +('20201208140125'), +('20201208210326'), +('20201209163906'), +('20201211142334'), +('20201211213255'), +('20201216164355'), +('20201218132535'), +('20201218134107'), +('20201218180004'), +('20201223180342'), +('20210106173839'), +('20210106195019'), +('20210111123325'), +('20210113151049'), +('20210116192833'), +('20210118133014'), +('20210118160904'), +('20210125151501'), +('20210201195631'), +('20210204141807'), +('20210209182423'), +('20210216125622'), +('20210217173551'), +('20210217202610'), +('20210223011452'), +('20210225144651'), +('20210303180023'), +('20210303181117'), +('20210303200052'), +('20210305204708'), +('20210312200044'), +('20210325202706'), +('20210330124825'), +('20210413143040'), +('20210422191627'), +('20210426165914'), +('20210427184522'), +('20210428193540'), +('20210503165055'), +('20210505010944'), +('20210507180711'), +('20210507180738'), +('20210507180809'), +('20210510182341'), +('20210513185514'), +('20210514154843'), +('20210515142741'), +('20210517144348'), +('20210520184416'), +('20210526182148'), +('20210527140359'), +('20210601135719'), +('20210601173704'), +('20210603121547'), +('20210603143037'), +('20210604155334'), +('20210615131534'), +('20210616181054'), +('20210616193735'), +('20210622171720'), +('20210623184626'), +('20210623184729'), +('20210623195645'), +('20210625231326'), +('20210630201802'), +('20210702143811'), +('20210702144442'), +('20210707122337'), +('20210707172124'), +('20210707190613'), +('20210707193633'), +('20210708183958'), +('20210708192452'), +('20210714131449'), +('20210716144139'), +('20210717154701'), +('20210722155210'), +('20210723161722'), +('20210726155740'), +('20210727134415'), +('20210729175328'), +('20210729201521'), +('20210806202832'), +('20210809124146'), +('20210809130851'), +('20210809154208'), +('20210809184745'), +('20210810182752'), +('20210813121134'), +('20210819132406'), +('20210819133035'), +('20210823203031'), +('20210825182548'), +('20210830150500'), +('20210901200255'), +('20210902113909'), +('20210902134959'), +('20210903113401'), +('20210904021301'), +('20210906163956'), +('20210909160929'), +('20210910113307'), +('20210910133606'), +('20210916194101'), +('20210917140612'), +('20210920132236'), +('20210920200621'), +('20210923202947'), +('20210926190212'), +('20210927130613'), +('20210927133554'), +('20210929182410'), +('20210930135501'), +('20211001135131'), +('20211001160706'), +('20211004174014'), +('20211009183833'), +('20211011191547'), +('20211013135958'), +('20211015172536'), +('20211018183403'), +('20211019154744'), +('20211019164536'), +('20211020130447'), +('20211023193009'), +('20211027185505'), +('20211101203339'), +('20211102203208'), +('20211103235413'), +('20211108203857'), +('20211109161950'), +('20211110005810'), +('20211115191349'), +('20211117145404'), +('20211117181217'), +('20211118175318'), +('20211119184203'), +('20211129122357'), +('20211202160059'), +('20211208153720'), +('20211208155347'), +('20211218202811'), +('20211220163817'), +('20211220204231'), +('20211221151552'), +('20211223134654'), +('20211229164804'), +('20211230201245'), +('20220101180956'), +('20220102193048'), +('20220114140723'), +('20220126164546'), +('20220126182806'), +('20220127153246'), +('20220127200317'), +('20220128203412'), +('20220201213104'), +('20220204163115'), +('20220208180300'), +('20220210132610'), +('20220211001613'), +('20220214202202'), +('20220216204506'), +('20220302145218'), +('20220302154833'), +('20220308185943'), +('20220308193503'), +('20220311161639'), +('20220312204503'), +('20220316160839'), +('20220317185834'), +('20220322185532'), +('20220328122746'), +('20220331180748'), +('20220411150736'), +('20220413144557'), +('20220415192223'), +('20220427144200'), +('20220511171233'), +('20220512174700'), +('20220516171135'), +('20220523123830'), +('20220525125953'), +('20220526203313'), +('20220527144703'), +('20220527144717'), +('20220527191834'), +('20220601122623'), +('20220604181405'), +('20220607155407'), +('20220610173543'), +('20220612161111'), +('20220617180748'), +('20220621180929'), +('20220628162723'), +('20220630151129'), +('20220712164926'), +('20220713150217'), +('20220714190911'), +('20220715194241'), +('20220718185442'), +('20220801135734'), +('20220804160252'), +('20220811205630'), +('20220812193159'), +('20220815134022'), +('20220815140216'), +('20220816194756'), +('20220816204223'), +('20220816205217'), +('20220817193604'), +('20220818155829'), +('20220818173333'), +('20220819184832'), +('20220822182146'), +('20220824150945'), +('20220824155726'), +('20220824194239'), +('20220824202625'), +('20220825131554'), +('20220826123607'), +('20220830131900'), +('20220830142632'), +('20220831183303'), +('20220901142553'), +('20220901202643'), +('20220906182407'), +('20220915132815'), +('20220915133927'), +('20220915141020'), +('20220916152205'), +('20220916182057'), +('20220916234039'), +('20220919161059'), +('20220919185042'), +('20220920192149'), +('20220921141010'), +('20220921182035'), +('20220925175719'), +('20220928132603'), +('20220928150112'), +('20220928164029'), +('20220930194814'), +('20221006193112'), +('20221007152924'), +('20221013195245'), +('20221014144316'), +('20221017180229'), +('20221018164204'), +('20221019122456'), +('20221019182810'), +('20221020113634'), +('20221021205724'), +('20221028172017'), +('20221102194234'), +('20221103144659'), +('20221103201310'), +('20221104134752'), +('20221107144111'), +('20221108134143'), +('20221109155552'), +('20221110133236'), +('20221115123832'), +('20221115211004'), +('20221116185411'), +('20221124002729'), +('20221126145518'), +('20221207171030'), +('20221209131957'), +('20221220180133'), +('20221220184746'), +('20221223202329'), +('20230105155630'), +('20230105155655'), +('20230107220752'), +('20230108133748'), +('20230109173226'), +('20230110174657'), +('20230112142317'), +('20230119123843'), +('20230123010327'), +('20230124195245'), ('20230127151606'), +('20230127200801'), +('20230206142754'), +('20230207151644'), +('20230214194841'), +('20230227195221'), +('20230301172341'), +('20230303154815'), +('20230303181248'), +('20230307143837'), +('20230309205059'), +('20230313122300'), +('20230313152950'), +('20230319133739'), +('20230320131930'), +('20230322183901'), +('20230322220754'), +('20230327202808'), +('20230328171436'), +('20230403144801'), +('20230406154235'), +('20230406183420'), +('20230407164611'), ('20230410202101'), +('20230411193836'), +('20230412163545'), +('20230412191455'), +('20230414130229'), +('20230414152958'), +('20230417122614'), +('20230418163934'), +('20230419162140'), +('20230419165219'), +('20230419190654'), +('20230420164514'), +('20230424194313'), +('20230426175101'), +('20230428141601'), +('20230428145659'), +('20230428155418'), ('20230428203604'), ('20230428203806'), ('20230428210859'), +('20230429185311'), ('20230429212740'), +('20230429224702'), ('20230501183045'), +('20230502175218'), +('20230503155642'), +('20230503161258'), ('20230504131726'), ('20230504152750'), ('20230505150822'), @@ -63430,6 +343745,7 @@ INSERT INTO "schema_migrations" (version) VALUES ('20230914004821'), ('20230922124446'), ('20230925131206'), +('20230926140851'), ('20230926205059'), ('20230927205059'), ('20230929205059'), @@ -63477,6 +343793,7 @@ INSERT INTO "schema_migrations" (version) VALUES ('20231220194404'), ('20231220203530'), ('20231226194235'), +('20240102142015'), ('20240102155413'), ('20240102205532'), ('20240104155138'), @@ -63586,6 +343903,7 @@ INSERT INTO "schema_migrations" (version) VALUES ('20241031145454'), ('20241101134230'), ('20241101160422'), +('20241106163541'), ('20241110005806'), ('20241110005807'), ('20241111143412'), @@ -63654,6 +343972,9 @@ INSERT INTO "schema_migrations" (version) VALUES ('20241127144123'), ('20241127162253'), ('20241203154140'), -('20241203154146'); +('20241203154146'), +('20241213204702'), +('20241213204837'), +('20241216184819'); diff --git a/docker/app/Dockerfile b/docker/app/Dockerfile index 615d74f0f1..ef79c765d1 100644 --- a/docker/app/Dockerfile +++ b/docker/app/Dockerfile @@ -12,8 +12,8 @@ RUN apk add --no-cache \ WORKDIR / RUN openssl req -new -newkey rsa:4096 -days 3650 -nodes -x509 \ - -subj "/C=US/ST=Vermont/L=Brattleboro/O=greenriver/CN=www.example.com" \ - -keyout key.pem -out cert.pem + -subj "/C=US/ST=Vermont/L=Brattleboro/O=greenriver/CN=www.example.com" \ + -keyout key.pem -out cert.pem ######################### @@ -24,7 +24,7 @@ ARG BUILD_TAG FROM ruby:${BUILD_TAG} AS base ARG USER_ID=10000 ARG GROUP_ID=10000 -ARG BUNDLER_VERSION=2.5.17 +ARG BUNDLER_VERSION=2.5.23 LABEL "app"=open-path-warehouse LABEL "ruby-version"=3.1.6 @@ -57,30 +57,30 @@ COPY docker/app/us-east-1-bundle.pem /etc/ssl/certs/us-east-1-bundle.pem COPY docker/app/rds-combined-ca-bundle.pem /etc/ssl/certs/rds-combined-ca-bundle.pem RUN addgroup -g ${GROUP_ID} app-user \ - && adduser -u ${USER_ID} -G app-user -h /home/app-user -D app-user \ - && mkdir /app /bundle \ - && chown app-user:app-user /bundle /app + && adduser -u ${USER_ID} -G app-user -h /home/app-user -D app-user \ + && mkdir /app /bundle \ + && chown app-user:app-user /bundle /app RUN apk update \ && apk upgrade --no-cache \ && apk add --no-cache \ - nodejs yarn \ - aws-cli \ - tzdata \ - git \ - bash \ - freetds-dev \ - icu icu-dev \ - curl libcurl curl-dev \ - imagemagick \ - libmagic libheif file-dev file \ - build-base libxml2-dev libxslt-dev postgresql-dev \ - libgcc libstdc++ libx11 glib libxrender libxext libintl \ - ttf-dejavu ttf-droid ttf-freefont ttf-liberation \ - chromium nss freetype freetype-dev harfbuzz ca-certificates ttf-freefont \ - lftp postgresql tmux postgis geos geos-dev proj proj-dev proj-util zip expect \ - shared-mime-info \ - tar p7zip vim gpg gpg-agent \ + nodejs yarn \ + aws-cli \ + tzdata \ + git \ + bash \ + freetds-dev \ + icu icu-dev \ + curl libcurl curl-dev \ + imagemagick \ + libmagic libheif file-dev file \ + build-base libxml2-dev libxslt-dev postgresql-dev \ + libgcc libstdc++ libx11 glib libxrender libxext libintl \ + ttf-dejavu ttf-droid ttf-freefont ttf-liberation \ + chromium nss freetype freetype-dev harfbuzz ca-certificates ttf-freefont \ + lftp postgresql tmux postgis geos geos-dev proj proj-dev proj-util zip expect \ + shared-mime-info \ + tar p7zip vim gpg gpg-agent poppler-utils \ && rm -rf /var/cache/apk/* \ && ln -s libproj.so.21.1.2 /usr/lib/libproj.so.20 @@ -113,7 +113,7 @@ ENTRYPOINT ["/usr/bin/entrypoint.dev.sh"] RUN git config --global --add safe.directory /app \ && apk update \ && apk add --no-cache \ - neovim less docker python3 zsh openssh \ + neovim less docker python3 zsh openssh \ && rm -rf /var/cache/apk/* USER ${USER_ID} diff --git a/docker/app/docker-compose.yaml b/docker/app/docker-compose.yaml index 00ca494759..825f97af30 100644 --- a/docker/app/docker-compose.yaml +++ b/docker/app/docker-compose.yaml @@ -12,7 +12,7 @@ x-app: &app USER_ID: ${USER_ID:-1001} GROUP_ID: ${GROUP_ID:-1001} #RUBY_VERSION: 3.1.6 - BUNDLER_VERSION: '2.5.17' + BUNDLER_VERSION: '2.5.23' GITHASH: 12345 services: diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 795f4628c0..f40cb92ea3 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -6,7 +6,7 @@ x-app: &app target: dev-build args: RUBY_VERSION: 3.1.6 - BUNDLER_VERSION: '2.5.17' + BUNDLER_VERSION: '2.5.23' USER_ID: ${USER_ID:-1001} GROUP_ID: ${GROUP_ID:-1001} BUILD_TAG: 3.1.6-alpine3.20 diff --git a/docs/code_patterns_and_conventions.md b/docs/code_patterns_and_conventions.md index 368fde42f4..755cf3a466 100644 --- a/docs/code_patterns_and_conventions.md +++ b/docs/code_patterns_and_conventions.md @@ -14,6 +14,7 @@ Note that this document may include code that is only in use in a handful of loc - [Database Queries](#database-queries) - [Background Async Jobs](#background-async-jobs) - [Testing](#testing) +- [Background Reports](#background-reports) ## Server-side views @@ -125,3 +126,8 @@ Avoid using errors for control-flow. When jumping out of deeply nested methods, ## Testing Use factories if possible to create test objects rather than the active record classes themselves. This reduces boilerplate code in our tests. + +## Background Reports + +Where possible, reports that run in the background should use some shared infrastructure. For official HUD reports, they should use `HudReports::ReportInstance` and follow patterns used in other HUD reports, like including `render 'hud_reports/index'` and `= render 'hud_reports/show'` in their index and show pages to provide a consistent user experience. For warehouse reports, `SimpleReports::ReportInstance` should be used where possible, and `= render 'common/background_report/history_filter'` +and `= render 'common/background_report/history_table'` should be included to present a consistent filtering and history experience. diff --git a/drivers/client_location_history/app/models/client_location_history/location.rb b/drivers/client_location_history/app/models/client_location_history/location.rb index bd18c149d3..1d69e727a2 100644 --- a/drivers/client_location_history/app/models/client_location_history/location.rb +++ b/drivers/client_location_history/app/models/client_location_history/location.rb @@ -12,16 +12,14 @@ class Location < GrdaWarehouseBase belongs_to :place, class_name: 'GrdaWarehouse::Place', primary_key: [:lat, :lon], foreign_key: [:lat, :lon], optional: true # this relation isn't used; use polymorphic `source` above belongs_to :enrollment, class_name: 'GrdaWarehouse::Hud::Enrollment', optional: true - before_create :ensure_grda_warehouse_source MARKER_COLOR = '#72A0C1'.freeze - private def ensure_grda_warehouse_source - # This somewhat hacky solution gets around the fact that during HMIS Form Processing, we haven't yet saved the - # Enrollment being generated, so we don't yet have an ID with which to get the Warehouse enrollment. - return unless source_type&.starts_with? 'Hmis::Hud::' + # Locations where both `lat` and `lon` are present + scope :valid, -> { where.not(lat: nil).and(where.not(lon: nil)) } - self.source_type = source_type.sub('Hmis::Hud::', 'GrdaWarehouse::Hud::') + def lat_lon_present? + lat.present? && lon.present? end def as_point @@ -78,5 +76,7 @@ def self.highlight(markers) most_recent[:label] << 'Most-recent contact'.html_safe markers end + + include RailsDrivers::Extensions end end diff --git a/drivers/client_location_history/spec/factories/locations.rb b/drivers/client_location_history/spec/factories/locations.rb new file mode 100644 index 0000000000..16990f1501 --- /dev/null +++ b/drivers/client_location_history/spec/factories/locations.rb @@ -0,0 +1,17 @@ +### +# Copyright 2016 - 2024 Green River Data Analysis, LLC +# +# License detail: https://github.com/greenriver/hmis-warehouse/blob/production/LICENSE.md +### + +FactoryBot.define do + factory :clh_location, class: 'ClientLocationHistory::Location' do + # source + # client_id + # enrollment_id + lat { Faker::Address.latitude } + lon { Faker::Address.longitude } + collected_by { 'Fake Project Name' } + located_on { Date.current } + end +end diff --git a/drivers/custom_imports_boston_community_of_origin/extensions/grda_warehouse/hud/enrollment_extension.rb b/drivers/custom_imports_boston_community_of_origin/extensions/grda_warehouse/hud/enrollment_extension.rb index db7aae541f..cdfdd547ac 100644 --- a/drivers/custom_imports_boston_community_of_origin/extensions/grda_warehouse/hud/enrollment_extension.rb +++ b/drivers/custom_imports_boston_community_of_origin/extensions/grda_warehouse/hud/enrollment_extension.rb @@ -11,8 +11,11 @@ module EnrollmentExtension included do has_one :client_location, class_name: 'ClientLocationHistory::Location', as: :source + # Where LastPermanentZIP is present, OR the data source is HMIS. + # HMIS Enrollments are included so that they don't get deleted in the below "orphaned locations" cleanup. + # This scope should probably only be used for maintain_location_histories. scope :with_location_data, -> do - where.not(LastPermanentZIP: nil) + where.not(LastPermanentZIP: nil).or(where(data_source_id: GrdaWarehouse::DataSource.hmis.select(:id))) end def self.maintain_location_histories diff --git a/drivers/health_comprehensive_assessment/app/models/health_comprehensive_assessment/document_exports/health_ca_pdf_export.rb b/drivers/health_comprehensive_assessment/app/models/health_comprehensive_assessment/document_exports/health_ca_pdf_export.rb index 051bc6ccb9..1933e69480 100644 --- a/drivers/health_comprehensive_assessment/app/models/health_comprehensive_assessment/document_exports/health_ca_pdf_export.rb +++ b/drivers/health_comprehensive_assessment/app/models/health_comprehensive_assessment/document_exports/health_ca_pdf_export.rb @@ -98,15 +98,15 @@ def perform }, ) - pdf = CombinePDF.new - pdf << CombinePDF.parse(PdfGenerator.new.render_pdf(first_page_html, options: first_page_options), allow_optional_content: true) - pdf << CombinePDF.parse(PdfGenerator.new.render_pdf(html, options: body_options), allow_optional_content: true) + pdf = [] + pdf << PdfGenerator.merge_inline_pdfs(PdfGenerator.render_pdf(first_page_html, options: first_page_options)) + pdf << PdfGenerator.merge_inline_pdfs(PdfGenerator.render_pdf(html, options: body_options)) file_name = "#{Translation.translate('Comprehensive Assessment')} #{DateTime.current.to_fs(:db)}" PdfGenerator.new.perform( html: '', file_name: file_name, - pdf_data: pdf.to_pdf, + pdf_data: PdfGenerator.merge_inline_pdfs(pdf), ) do |io| self.pdf_file = io end diff --git a/drivers/health_pctp/app/models/health_pctp/document_exports/health_pctp_pdf_export.rb b/drivers/health_pctp/app/models/health_pctp/document_exports/health_pctp_pdf_export.rb index df10e16a06..1136970c68 100644 --- a/drivers/health_pctp/app/models/health_pctp/document_exports/health_pctp_pdf_export.rb +++ b/drivers/health_pctp/app/models/health_pctp/document_exports/health_pctp_pdf_export.rb @@ -80,16 +80,16 @@ def perform footer_template: footer_html, ) - pdf = CombinePDF.new - pdf << CombinePDF.parse(PdfGenerator.new.render_pdf(coverpage_html, options: options_no_header), allow_optional_content: true) - pdf << CombinePDF.parse(PdfGenerator.new.render_pdf(html, options: options), allow_optional_content: true) - pdf << CombinePDF.parse(careplan.health_file.content, allow_optional_content: true) if careplan.health_file.present? + pdf = [] + pdf << PdfGenerator.render_pdf(coverpage_html, options: options_no_header) + pdf << PdfGenerator.render_pdf(html, options: options) + pdf << careplan.health_file.content if careplan.health_file.present? file_name = "#{Translation.translate('Care Plan / Patient-Centered Treatment Plan')} #{DateTime.current.to_fs(:db)}" PdfGenerator.new.perform( html: '', file_name: file_name, - pdf_data: pdf.to_pdf, + pdf_data: PdfGenerator.merge_inline_pdfs(pdf), ) do |io| self.pdf_file = io end diff --git a/drivers/hmis/app/graphql/mutations/create_direct_upload.rb b/drivers/hmis/app/graphql/mutations/create_direct_upload.rb index 9e72311365..3455eb959f 100644 --- a/drivers/hmis/app/graphql/mutations/create_direct_upload.rb +++ b/drivers/hmis/app/graphql/mutations/create_direct_upload.rb @@ -18,7 +18,6 @@ def resolve(input:) url: blob.service_url_for_direct_upload, # NOTE: we pass headers as JSON since they have no schema headers: blob.service_headers_for_direct_upload.to_json, - blob_id: blob.id, # TODO(#6208) remove signed_blob_id: blob.signed_id(expires_in: 8.hours), filename: input.filename, } diff --git a/drivers/hmis/app/graphql/mutations/delete_current_living_situation.rb b/drivers/hmis/app/graphql/mutations/delete_current_living_situation.rb index a468672500..72585facfe 100644 --- a/drivers/hmis/app/graphql/mutations/delete_current_living_situation.rb +++ b/drivers/hmis/app/graphql/mutations/delete_current_living_situation.rb @@ -11,8 +11,20 @@ class DeleteCurrentLivingSituation < BaseMutation field :current_living_situation, Types::HmisSchema::CurrentLivingSituation, null: true def resolve(id:) - record = Hmis::Hud::CurrentLivingSituation.viewable_by(current_user).find_by(id: id) - default_delete_record(record: record, field_name: :current_living_situation, permissions: [:can_edit_enrollments]) + current_living_situation = Hmis::Hud::CurrentLivingSituation.viewable_by(current_user).find_by(id: id) + access_denied! unless current_living_situation + access_denied! unless current_permission?(permission: :can_edit_enrollments, entity: current_living_situation) + + current_living_situation.with_lock do + # If this CLS is the owner of a FormProcessor, destroy related records (for example clh_location) + current_living_situation.form_processor&.destroy_related_records! + current_living_situation.destroy! + end + + { + current_living_situation: current_living_situation, + errors: [], + } end end end diff --git a/drivers/hmis/app/graphql/mutations/save_assessment.rb b/drivers/hmis/app/graphql/mutations/save_assessment.rb index 72223b5b2c..22f86445c4 100644 --- a/drivers/hmis/app/graphql/mutations/save_assessment.rb +++ b/drivers/hmis/app/graphql/mutations/save_assessment.rb @@ -17,6 +17,9 @@ def resolve(input:, assessment_lock_version: nil) assessment, errors = input.find_or_create_assessment return { errors: errors } if errors.any? + # frontend hides the button if it's not supported, so this is a second layer of security + raise "Save and finish later is not supported for this assessment. Definition #{assessment.definition.id}" unless assessment.definition.supports_save_in_progress? + # Update values assessment.lock_version = assessment_lock_version if assessment_lock_version assessment.form_processor.assign_attributes( diff --git a/drivers/hmis/app/graphql/schema.graphql b/drivers/hmis/app/graphql/schema.graphql index 47399a9e4c..74cd01eb2b 100644 --- a/drivers/hmis/app/graphql/schema.graphql +++ b/drivers/hmis/app/graphql/schema.graphql @@ -277,6 +277,11 @@ type Assessment { enrollment: Enrollment! event: Event exit: Exit + + """ + Client Location where the assessment was performed + """ + geolocation: Geolocation healthAndDv: HealthAndDv id: ID! inProgress: Boolean! @@ -1760,6 +1765,11 @@ type CurrentLivingSituation { dateDeleted: ISO8601DateTime dateUpdated: ISO8601DateTime enrollment: Enrollment! + + """ + Client Location where the Current Living Situation was recorded + """ + geolocation: Geolocation id: ID! informationDate: ISO8601Date leaseOwn60Day: NoYesReasonsForMissingData @@ -2022,6 +2032,7 @@ Allowed values for CustomDataElementDefinition.type enum CustomDataElementType { boolean date + file float integer json @@ -2038,6 +2049,7 @@ type CustomDataElementValue { user: ApplicationUser valueBoolean: Boolean valueDate: ISO8601Date + valueFile: File valueFloat: Float valueInteger: Int valueJson: JsonObject @@ -2852,10 +2864,6 @@ enum Destination { Represents direct upload credentials """ type DirectUpload { - """ - Created blob record ID - """ - blobId: ID! @deprecated(reason: "Deprecated in favor of signed_blob_id") filename: String! """ @@ -3326,6 +3334,11 @@ type Enrollment { files(limit: Int, offset: Int, sortOrder: FileSortOption): FilesPaginated! formerWardChildWelfare: NoYesReasonsForMissingData formerWardJuvenileJustice: NoYesReasonsForMissingData + + """ + Client Locations that have been collected during this Enrollment + """ + geolocations: [Geolocation!]! healthAndDvs(limit: Int, offset: Int): HealthAndDvsPaginated! hh5Plus: NoYesMissing hohLeaseholder: NoYesMissing @@ -3408,6 +3421,7 @@ type EnrollmentAccess { canEditEnrollments: Boolean! canSplitHouseholds: Boolean! canViewEnrollmentDetails: Boolean! + canViewEnrollmentLocationMap: Boolean! id: ID! } @@ -3900,6 +3914,11 @@ type ExternalFormSubmission { Enrollment that was generated from this submission, if any """ enrollmentId: ID + + """ + Client Location where the submission was recorded + """ + geolocation: Geolocation id: ID! notes: String spam: Boolean @@ -4015,7 +4034,6 @@ type File { enrollment: Enrollment enrollmentId: ID expirationDate: ISO8601Date - fileBlobId: ID @deprecated(reason: "Removing unused blob ID") id: ID! name: String! ownFile: Boolean! @@ -4060,6 +4078,7 @@ type FormDefinition { rawDefinition: JsonObject! role: FormRole! status: FormStatus! + supportsSaveInProgress: Boolean! system: Boolean! title: String! updatedBy: ApplicationUser @@ -4951,6 +4970,36 @@ enum GeographyType { URBAN } +type Geolocation { + """ + User who collected the location + """ + collectedBy: ApplicationUser + coordinates: GeolocationCoordinates! + id: ID! + + """ + Timestamp when the location was collected + """ + locatedAt: ISO8601DateTime! + + """ + Name of the Project that collected the location + """ + projectName: String + + """ + Name of the form that collected this location + """ + sourceFormName: String +} + +type GeolocationCoordinates { + id: ID! + latitude: String! + longitude: String! +} + """ HUD HMISParticipationType (2.08.1) """ @@ -9084,6 +9133,7 @@ type QueryAccess { canViewClients: Boolean! canViewDob: Boolean! canViewEnrollmentDetails: Boolean! + canViewEnrollmentLocationMap: Boolean! canViewFullSsn: Boolean! canViewHudChronicStatus: Boolean! canViewLimitedEnrollmentDetails: Boolean! diff --git a/drivers/hmis/app/graphql/types/forms/form_definition.rb b/drivers/hmis/app/graphql/types/forms/form_definition.rb index 653f9ddb2a..8b05b8999a 100644 --- a/drivers/hmis/app/graphql/types/forms/form_definition.rb +++ b/drivers/hmis/app/graphql/types/forms/form_definition.rb @@ -29,6 +29,7 @@ class Forms::FormDefinition < Types::BaseObject field :role, Types::Forms::Enums::FormRole, null: false field :title, String, null: false field :version, ID, null: false + field :supports_save_in_progress, Boolean, null: false field :definition, Forms::FormDefinitionJson, null: false field :raw_definition, JsonObject, null: false field :system, Boolean, null: false @@ -118,6 +119,10 @@ def updated_by load_last_user_from_versions(object) end + def supports_save_in_progress + object.supports_save_in_progress? + end + protected def project diff --git a/drivers/hmis/app/graphql/types/hmis_schema/assessment.rb b/drivers/hmis/app/graphql/types/hmis_schema/assessment.rb index 713f8d7c85..d38078dae3 100644 --- a/drivers/hmis/app/graphql/types/hmis_schema/assessment.rb +++ b/drivers/hmis/app/graphql/types/hmis_schema/assessment.rb @@ -46,6 +46,7 @@ class HmisSchema::Assessment < Types::BaseObject field :definition, Types::Forms::FormDefinition, null: false, description: 'Definition to use for viewing the assessment. If upgradedDefinitionForEditing is nil, then it should also be used for editing.' field :upgraded_definition_for_editing, Types::Forms::FormDefinition, null: true, description: 'Most recent published Definition to use for editing the assessment. Only present if the original form definition was retired.' field :wip_values, JsonObject, null: true + field :geolocation, Types::HmisSchema::Geolocation, null: true, description: 'Client Location where the assessment was performed' def wip_values return unless object.in_progress? @@ -136,6 +137,13 @@ def enrollment load_ar_association(object, :enrollment) end + def geolocation + location = load_ar_association(form_processor, :clh_location) + return unless location&.lat_lon_present? # ignore location missing lat/lon (not expected, but allowed by DB) + + location + end + protected def form_processor diff --git a/drivers/hmis/app/graphql/types/hmis_schema/client.rb b/drivers/hmis/app/graphql/types/hmis_schema/client.rb index befd84cf9e..44a0dde6f5 100644 --- a/drivers/hmis/app/graphql/types/hmis_schema/client.rb +++ b/drivers/hmis/app/graphql/types/hmis_schema/client.rb @@ -229,7 +229,8 @@ def custom_case_notes(...) end def files(**args) - resolve_files(**args) + # Exclude files that have been uploaded by custom assessments + resolve_files(object.files.where.missing(:custom_data_element), **args) end def pronouns diff --git a/drivers/hmis/app/graphql/types/hmis_schema/current_living_situation.rb b/drivers/hmis/app/graphql/types/hmis_schema/current_living_situation.rb index a1aa316160..bfaa3339e8 100644 --- a/drivers/hmis/app/graphql/types/hmis_schema/current_living_situation.rb +++ b/drivers/hmis/app/graphql/types/hmis_schema/current_living_situation.rb @@ -31,7 +31,7 @@ def self.configuration hud_field :lease_own60_day, HmisSchema::Enums::Hud::NoYesReasonsForMissingData hud_field :moved_two_or_more, HmisSchema::Enums::Hud::NoYesReasonsForMissingData hud_field :location_details - + field :geolocation, Types::HmisSchema::Geolocation, null: true, description: 'Client Location where the Current Living Situation was recorded' custom_data_elements_field def enrollment @@ -53,5 +53,12 @@ def verified_by_project_id # See the CurrentLivingSituationProcessor for more detailed comments about the reason to collect both fields. object.verified_by_project_id || object.verified_by end + + def geolocation + location = load_ar_association(object, :clh_location) + return unless location&.lat_lon_present? # ignore location missing lat/lon (not expected, but allowed by DB) + + location + end end end diff --git a/drivers/hmis/app/graphql/types/hmis_schema/custom_data_element_value.rb b/drivers/hmis/app/graphql/types/hmis_schema/custom_data_element_value.rb index d8969c1da3..e49a546ccb 100644 --- a/drivers/hmis/app/graphql/types/hmis_schema/custom_data_element_value.rb +++ b/drivers/hmis/app/graphql/types/hmis_schema/custom_data_element_value.rb @@ -18,5 +18,6 @@ class HmisSchema::CustomDataElementValue < Types::BaseObject field :value_text, String, null: true field :value_date, GraphQL::Types::ISO8601Date, null: true field :value_json, Types::JsonObject, null: true + field :value_file, HmisSchema::File, null: true end end diff --git a/drivers/hmis/app/graphql/types/hmis_schema/enrollment.rb b/drivers/hmis/app/graphql/types/hmis_schema/enrollment.rb index ad0770736f..8cd8704137 100644 --- a/drivers/hmis/app/graphql/types/hmis_schema/enrollment.rb +++ b/drivers/hmis/app/graphql/types/hmis_schema/enrollment.rb @@ -109,6 +109,7 @@ def self.summary_field(name, type = nil, **kwargs) can :delete_enrollments can :split_households can :audit_enrollments + can :view_enrollment_location_map end # FULL ACCESS FIELDS. All fields below this line require `can_view_enrollment_details` perm, because they use the overridden 'field' class method. @@ -225,6 +226,8 @@ def self.summary_field(name, type = nil, **kwargs) # should not be queried in batch field :occurrence_point_forms, [Types::HmisSchema::OccurrencePointForm], null: false, description: 'Forms for individual data elements that are collected at occurrence for this Enrollment (e.g. Move-In Date)' + field :geolocations, [Types::HmisSchema::Geolocation], null: false, description: 'Client Locations that have been collected during this Enrollment' + audit_history_field( :audit_history, # Fields should match our DB casing, consult schema to determine appropriate casing @@ -258,6 +261,14 @@ def source_referral_posting load_ar_association(object, :source_postings).min_by(&:id) end + # N+1, not performant for queries on collections + def geolocations + return [] unless current_permission?(permission: :can_view_enrollment_location_map, entity: project) + + # Must map to warehouse record because locations use polymorphic source with GrdaWarehouse::Hud::Enrollment type + object.as_warehouse.enrollment_location_histories.valid + end + def audit_history(filters: nil) scope = GrdaWarehouse.paper_trail_versions. where(enrollment_id: object.id). diff --git a/drivers/hmis/app/graphql/types/hmis_schema/external_form_submission.rb b/drivers/hmis/app/graphql/types/hmis_schema/external_form_submission.rb index 3d6ab0d0a4..ff74e3c28b 100644 --- a/drivers/hmis/app/graphql/types/hmis_schema/external_form_submission.rb +++ b/drivers/hmis/app/graphql/types/hmis_schema/external_form_submission.rb @@ -25,6 +25,7 @@ class HmisSchema::ExternalFormSubmission < Types::BaseObject field :enrollment_id, ID, null: true, description: 'Enrollment that was generated from this submission, if any' field :client_id, ID, null: true, description: 'Client that was generated from this submission, if any' field :summary_fields, [HmisSchema::KeyValue], null: false, description: 'Key/value responses for certain summary-level form questions' + field :geolocation, Types::HmisSchema::Geolocation, null: true, description: 'Client Location where the submission was recorded' def definition load_ar_association(object, :definition) @@ -38,6 +39,13 @@ def values object.form_values end + def geolocation + location = load_ar_association(object, :clh_location) + return unless location&.lat_lon_present? # ignore location missing lat/lon (not expected, but allowed by DB) + + location + end + # "Summary" fields are a subset of the form's fields that are displayed on the external forms review table. # Includes Client first/last name plus any CDEDs where show_in_summary is true. Field = Struct.new(:id, :key, :value, keyword_init: true) diff --git a/drivers/hmis/app/graphql/types/hmis_schema/file.rb b/drivers/hmis/app/graphql/types/hmis_schema/file.rb index 22b800fbf8..1031053eda 100644 --- a/drivers/hmis/app/graphql/types/hmis_schema/file.rb +++ b/drivers/hmis/app/graphql/types/hmis_schema/file.rb @@ -21,7 +21,6 @@ class HmisSchema::File < Types::BaseObject field :url, String, null: true field :name, String, null: false field :tags, [String], null: false - field :file_blob_id, ID, null: true, deprecation_reason: 'Removing unused blob ID' # TODO(#6208) remove field :own_file, Boolean, null: false field :redacted, Boolean, null: false diff --git a/drivers/hmis/app/graphql/types/hmis_schema/geolocation.rb b/drivers/hmis/app/graphql/types/hmis_schema/geolocation.rb new file mode 100644 index 0000000000..86ced51691 --- /dev/null +++ b/drivers/hmis/app/graphql/types/hmis_schema/geolocation.rb @@ -0,0 +1,60 @@ +### +# Copyright 2016 - 2024 Green River Data Analysis, LLC +# +# License detail: https://github.com/greenriver/hmis-warehouse/blob/production/LICENSE.md +### + +# frozen_string_literal: true + +module Types + class HmisSchema::Geolocation < Types::BaseObject + field :id, ID, null: false + field :coordinates, HmisSchema::GeolocationCoordinates, null: false + field :project_name, String, null: true, method: :collected_by, description: 'Name of the Project that collected the location' + field :collected_by, Application::User, null: true, description: 'User who collected the location' + field :located_at, GraphQL::Types::ISO8601DateTime, null: false, description: 'Timestamp when the location was collected' + field :source_form_name, String, null: true, description: 'Name of the form that collected this location' + + # backed by ClientLocationHistory::Location + + def located_at + # We should have `located_at` if this location was processed from an HMIS form or HMIS External form, + # but use created_at as a backup since it's required. + object.located_at || object.created_at + end + + # coordinates need to be nested under another object because form processing uses 'Geolocation.coordinates', + # so we need to resolve it that way for populating forms + def coordinates + object + end + + def source_form_name + return unless form_processor + + case form_processor.owner_type + when Hmis::Hud::CurrentLivingSituation.sti_name + 'Current Living Situation' + when Hmis::Hud::CustomAssessment.sti_name + load_ar_association(form_processor, :definition)&.title || 'Assessment' + when HmisExternalApis::ExternalForms::FormSubmission.sti_name + load_ar_association(form_processor, :definition)&.title || 'External Form' + end + end + + # User who collected the location. We don't actually have this, so we just look at who created + # the form that collected the location. This could be wrong if the location was added later by someone else. + # It would be better to add a column to clh_locations to store the user who collected the location. + def collected_by + return unless form_processor + + load_created_by_user_from_versions(form_processor) + end + + private + + def form_processor + load_ar_association(object, :form_processor) + end + end +end diff --git a/drivers/hmis/app/graphql/types/hmis_schema/geolocation_coordinates.rb b/drivers/hmis/app/graphql/types/hmis_schema/geolocation_coordinates.rb new file mode 100644 index 0000000000..16bb5d2037 --- /dev/null +++ b/drivers/hmis/app/graphql/types/hmis_schema/geolocation_coordinates.rb @@ -0,0 +1,17 @@ +### +# Copyright 2016 - 2024 Green River Data Analysis, LLC +# +# License detail: https://github.com/greenriver/hmis-warehouse/blob/production/LICENSE.md +### + +# frozen_string_literal: true + +module Types + class HmisSchema::GeolocationCoordinates < Types::BaseObject + field :id, ID, null: false + # non-nullable because clh_locations with null lat/lon should be filtered out before resolving + field :latitude, String, null: false, method: :lat + field :longitude, String, null: false, method: :lon + end + # backed by ClientLocationHistory::Location +end diff --git a/drivers/hmis/app/graphql/types/uploads/direct_upload_type.rb b/drivers/hmis/app/graphql/types/uploads/direct_upload_type.rb index 31f4f02585..e6eb1f3ceb 100644 --- a/drivers/hmis/app/graphql/types/uploads/direct_upload_type.rb +++ b/drivers/hmis/app/graphql/types/uploads/direct_upload_type.rb @@ -13,8 +13,6 @@ class Uploads::DirectUploadType < BaseObject field :headers, String, 'HTTP request headers (JSON-encoded)', null: false - # TODO(#6208) remove - field :blob_id, ID, 'Created blob record ID', null: false, deprecation_reason: 'Deprecated in favor of signed_blob_id' field :signed_blob_id, ID, 'Created blob record signed ID', null: false diff --git a/drivers/hmis/app/models/hmis/file.rb b/drivers/hmis/app/models/hmis/file.rb index 143e5e2de3..7a53e07238 100644 --- a/drivers/hmis/app/models/hmis/file.rb +++ b/drivers/hmis/app/models/hmis/file.rb @@ -34,6 +34,7 @@ def data_source belongs_to :client, class_name: '::Hmis::Hud::Client' belongs_to :user, class_name: 'Hmis::User', optional: true belongs_to :updated_by, class_name: 'Hmis::User', optional: true + has_one :custom_data_element, class_name: 'Hmis::Hud::CustomDataElement', foreign_key: 'value_file_id', inverse_of: :value_file scope :with_owner, ->(user) do where(user_id: user.id) @@ -46,7 +47,7 @@ def data_source # NOTE: it's okay that confidential files are included in this scope even if the user # doesn't have permission to read the file. Users can see the existence of confidential # files but they can't read them. Reference: - # https://www.pivotaltracker.com/n/projects/2591838/stories/185293913 + # https://github.com/open-path/Green-River/issues/5184 client_scope = Hmis::Hud::Client. viewable_by(user). with_access(user, :can_view_any_nonconfidential_client_files, :can_view_any_confidential_client_files) diff --git a/drivers/hmis/app/models/hmis/form/definition.rb b/drivers/hmis/app/models/hmis/form/definition.rb index f4bb543403..224084418b 100644 --- a/drivers/hmis/app/models/hmis/form/definition.rb +++ b/drivers/hmis/app/models/hmis/form/definition.rb @@ -413,6 +413,16 @@ def valid_status_for_submit? published? || retired? end + def supports_save_in_progress? + # Only Assessments can be saved as WIP + return false unless ASSESSMENT_FORM_ROLES.include?(role.to_sym) + + # If the assessment contains a File collection item, it cannot be saved as WIP (#6208) + return false if link_id_item_hash.values.find { |item| ['FILE', 'IMAGE'].include?(item.type) } + + true + end + def self.owner_class_for_role(role) return Hmis::Hud::CustomAssessment if ASSESSMENT_FORM_ROLES.include?(role.to_sym) @@ -645,6 +655,8 @@ def self.infer_cded_field_type(item_type) 'integer' when 'CURRENCY' 'float' + when 'FILE', 'IMAGE' + 'file' else raise "unable to determine cded type for #{item_type}" end diff --git a/drivers/hmis/app/models/hmis/form/definition_validator.rb b/drivers/hmis/app/models/hmis/form/definition_validator.rb index 696a545c64..469d6938a4 100644 --- a/drivers/hmis/app/models/hmis/form/definition_validator.rb +++ b/drivers/hmis/app/models/hmis/form/definition_validator.rb @@ -271,13 +271,15 @@ def check_cdeds(document, role) cded_type = cded.field_type case item_type - when 'GROUP', 'OBJECT', 'FILE', 'IMAGE' + when 'GROUP', 'OBJECT' # We don't expect these types to have custom field mappings. If they do, raise an error raise "Item #{link_id} has type #{item_type}, so it should not have a custom_field_key" when 'DISPLAY' # DISPLAY types should really be in the above category too, # but we have existing cases that store an autofill value next + when 'FILE', 'IMAGE' + raise_bad_type_match(link_id, item_type, cded_key, cded_type) unless cded_type == 'file' when 'STRING', 'TEXT', 'TIME_OF_DAY', 'CHOICE', 'OPEN_CHOICE' raise_bad_type_match(link_id, item_type, cded_key, cded_type) unless ['string', 'text'].include?(cded_type) when 'BOOLEAN' diff --git a/drivers/hmis/app/models/hmis/form/form_processor.rb b/drivers/hmis/app/models/hmis/form/form_processor.rb index b6776eea82..922a9bc325 100644 --- a/drivers/hmis/app/models/hmis/form/form_processor.rb +++ b/drivers/hmis/app/models/hmis/form/form_processor.rb @@ -22,7 +22,7 @@ class Hmis::Form::FormProcessor < ::GrdaWarehouseBase # Related records that were created/updated from this form # Note: these do not have dependent:destroy because we need to be able to clean up forms without - # deleting records during migration. Deletion of related records happens with `destroy_dependent_records!` + # deleting records during migration. Deletion of related records happens with `destroy_related_records!` belongs_to :health_and_dv, class_name: 'Hmis::Hud::HealthAndDv', optional: true, autosave: true belongs_to :income_benefit, class_name: 'Hmis::Hud::IncomeBenefit', optional: true, autosave: true belongs_to :physical_disability, class_name: 'Hmis::Hud::Disability', optional: true, autosave: true @@ -224,7 +224,7 @@ def client_factory(create: true) # rubocop:disable Lint/UnusedMethodArgument # (rather than in ensure_id validation hook) so that it gets set # correctly as the Enrollment.personal_id too. owner.client || owner.build_client(personal_id: Hmis::Hud::Base.generate_uuid) - when Hmis::Hud::CustomAssessment + when Hmis::Hud::CustomAssessment, Hmis::Hud::CurrentLivingSituation # An assessment can modify the client that it's associated with owner.client when HmisExternalApis::ExternalForms::FormSubmission @@ -387,6 +387,7 @@ def clh_location_factory(create: true) HealthAndDv: Hmis::Hud::Processors::HealthAndDvProcessor, IncomeBenefit: Hmis::Hud::Processors::IncomeBenefitProcessor, Exit: Hmis::Hud::Processors::ExitProcessor, + Geolocation: Hmis::Hud::Processors::GeolocationProcessor, # Form Records Client: Hmis::Hud::Processors::ClientProcessor, Service: Hmis::Hud::Processors::ServiceProcessor, @@ -410,7 +411,6 @@ def clh_location_factory(create: true) CustomCaseNote: Hmis::Hud::Processors::CustomCaseNoteProcessor, # External forms FormSubmission: Hmis::Hud::Processors::ExternalFormSubmissionProcessor, - Geolocation: Hmis::Hud::Processors::GeolocationProcessor, }.freeze end @@ -474,6 +474,7 @@ def destroy_related_records! :current_living_situation, :ce_assessment, :ce_event, + :clh_location, ].each { |assoc| send(assoc)&.destroy! }.compact end diff --git a/drivers/hmis/app/models/hmis/hud/client.rb b/drivers/hmis/app/models/hmis/hud/client.rb index 11a7da891c..911673a6f5 100644 --- a/drivers/hmis/app/models/hmis/hud/client.rb +++ b/drivers/hmis/app/models/hmis/hud/client.rb @@ -350,12 +350,7 @@ def full_name end def build_client_headshot_file(image_blob_id, current_user) - # TODO(#6208) - accept either unsigned or signed blob ID for now, for backwards compatibility - current_image_blob = if image_blob_id.to_i.to_s == image_blob_id.to_s - ActiveStorage::Blob.find_by(id: image_blob_id) - else - ActiveStorage::Blob.find_signed(image_blob_id) - end + current_image_blob = ActiveStorage::Blob.find_signed(image_blob_id) return unless current_image_blob diff --git a/drivers/hmis/app/models/hmis/hud/current_living_situation.rb b/drivers/hmis/app/models/hmis/hud/current_living_situation.rb index d4f9b71fe4..5df8095229 100644 --- a/drivers/hmis/app/models/hmis/hud/current_living_situation.rb +++ b/drivers/hmis/app/models/hmis/hud/current_living_situation.rb @@ -17,6 +17,7 @@ class Hmis::Hud::CurrentLivingSituation < Hmis::Hud::Base belongs_to :client, **hmis_relation(:PersonalID, 'Client') belongs_to :user, **hmis_relation(:UserID, 'User'), optional: true belongs_to :data_source, class_name: 'GrdaWarehouse::DataSource' + has_one :clh_location, through: :form_processor # Trigger warehouse processing after create/update if certain fields changed. # This is called even if the transaction that created/updated the record is rolled back, so it could queue some unnecessary processing. diff --git a/drivers/hmis/app/models/hmis/hud/custom_assessment.rb b/drivers/hmis/app/models/hmis/hud/custom_assessment.rb index e6c0015420..8cee99e3ce 100644 --- a/drivers/hmis/app/models/hmis/hud/custom_assessment.rb +++ b/drivers/hmis/app/models/hmis/hud/custom_assessment.rb @@ -53,6 +53,7 @@ class Hmis::Hud::CustomAssessment < Hmis::Hud::Base has_one :current_living_situation, through: :form_processor has_one :ce_assessment, through: :form_processor has_one :ce_event, through: :form_processor + has_one :clh_location, through: :form_processor # Alias fields that are not part of the Assessment schema alias_to_underscore [:DataCollectionStage] diff --git a/drivers/hmis/app/models/hmis/hud/custom_data_element.rb b/drivers/hmis/app/models/hmis/hud/custom_data_element.rb index 6dd12f7a88..aa9d4dc8d7 100644 --- a/drivers/hmis/app/models/hmis/hud/custom_data_element.rb +++ b/drivers/hmis/app/models/hmis/hud/custom_data_element.rb @@ -30,12 +30,18 @@ class Hmis::Hud::CustomDataElement < Hmis::Hud::Base :value_json, :value_string, :value_text, + :value_file_id, ].freeze belongs_to :owner, polymorphic: true, optional: false belongs_to :data_source, class_name: 'GrdaWarehouse::DataSource' belongs_to :user, **hmis_relation(:UserID, 'User'), optional: true, inverse_of: :custom_data_elements belongs_to :data_element_definition, class_name: 'Hmis::Hud::CustomDataElementDefinition', optional: false + # SPECIAL CASE: with the addition of value_file, we are breaking the previous assumption that + # > the CustomDataElement has an attribute value_[x] where "x" matches the CustomDataElementDefinition.field_type. + # this is no longer true because the field name is value_file_id whereas the field_type is file. + belongs_to :value_file, class_name: 'Hmis::File', optional: true, autosave: true, foreign_key: 'value_file_id', dependent: :destroy + delegate :key, :label, :repeats, to: :data_element_definition # Enforce that owner_type is correct for the Data Element Definition @@ -65,7 +71,8 @@ def validate_exactly_one_value # Error if value_string is set but the definition says its a boolean type (for example) field_type = values.keys.first.gsub('value_', '') - errors.add(:base, :invalid, message: "has a value for '#{values.keys.first}' but definition is for type '#{data_element_definition.field_type}") unless data_element_definition.field_type.to_s == field_type.to_s + field_types_match = data_element_definition.field_type.to_s == field_type.to_s || data_element_definition.field_type == 'file' && field_type.to_s == 'file_id' + errors.add(:base, :invalid, message: "has a value for '#{values.keys.first}' but definition is for type '#{data_element_definition.field_type}") unless field_types_match end def equal_for_merge?(other) @@ -81,6 +88,12 @@ def equal_for_merge?(other) end def value - VALUE_COLUMNS.map { |f| send(f) }.compact.first + VALUE_COLUMNS.map do |f| + if f == :value_file_id + value_file + else + send(f) + end + end.compact.first end end diff --git a/drivers/hmis/app/models/hmis/hud/custom_data_element_definition.rb b/drivers/hmis/app/models/hmis/hud/custom_data_element_definition.rb index 113e523702..44cf5d4ef3 100644 --- a/drivers/hmis/app/models/hmis/hud/custom_data_element_definition.rb +++ b/drivers/hmis/app/models/hmis/hud/custom_data_element_definition.rb @@ -19,6 +19,7 @@ class Hmis::Hud::CustomDataElementDefinition < Hmis::Hud::Base :text, :date, :json, + :file, ].freeze belongs_to :data_source, class_name: 'GrdaWarehouse::DataSource' @@ -26,6 +27,7 @@ class Hmis::Hud::CustomDataElementDefinition < Hmis::Hud::Base has_many :values, class_name: 'Hmis::Hud::CustomDataElement', inverse_of: :data_element_definition, foreign_key: :data_element_definition_id belongs_to :form_definition, primary_key: 'identifier', foreign_key: 'form_definition_identifier', class_name: 'Hmis::Form::Definition', optional: true + validates :field_type, inclusion: { in: FIELD_TYPES.map(&:to_s) }, allow_blank: false validates_format_of :key, with: /\A[a-zA-Z0-9_-]*\z/ scope :for_type, ->(owner_type) do diff --git a/drivers/hmis/app/models/hmis/hud/processors/base.rb b/drivers/hmis/app/models/hmis/hud/processors/base.rb index 60ff2abe9e..7e3b46f870 100644 --- a/drivers/hmis/app/models/hmis/hud/processors/base.rb +++ b/drivers/hmis/app/models/hmis/hud/processors/base.rb @@ -151,32 +151,43 @@ def process_custom_field(field, value) } # Normalize the input value value = normalize_custom_field_value(cded, value) - # Infer the field name on the CustomDataElement - value_field_name = "value_#{cded.field_type}" # Existing CustomDataElement records for this record with this definition - existing_values = existing_custom_data_elements[cded.id] || [] + existing_cdes = existing_custom_data_elements[cded.id] || [] + + # `file` is the only field type that saves an additional record, so do some special-case processing + value = process_files(cded, value, existing_cdes) if cded.field_type == 'file' + + # Infer the field name on the CustomDataElement + value_field_name = "value_#{cded.field_type}" # If this custom field only allows 1 value and there already is one, update it. - if !cded.repeats && existing_values.any? - cde_attributes = { id: existing_values.first.id } + if !cded.repeats && existing_cdes.any? + cde_attributes = { id: existing_cdes.first.id } if value.nil? cde_attributes[:_destroy] = 1 else cde_attributes[value_field_name] = value cde_attributes.merge!(attrs) end - # If value(s) haven't changed, just update the User and timestamps - elsif existing_values.map(&:value) == Array.wrap(value) - cde_attributes = existing_values.map { |cde| { id: cde.id, user: @processor.hud_user } } - # Else create new custom field value(s), and delete any existing ones. else + submitted = Array.wrap(value) + + # Helper lambda to check if an existing value was also in the submitted values + is_in_submitted = ->(cde) { submitted.include?(cde.value) } + + new_values = submitted - existing_cdes.map(&:value) + unchanged = existing_cdes.filter(&is_in_submitted) + to_remove = existing_cdes.reject(&is_in_submitted) + cde_attributes = [ + # For value(s) that haven't changed, just update the User and timestamps + unchanged.map { |cde| { id: cde.id, user: @processor.hud_user } }, # Add new value(s) - *Array.wrap(value).map { |new_value| { value_field_name => new_value, **attrs } }, - # Destroy any existing values for this custom field - *existing_values.map { |old_cde| { id: old_cde.id, _destroy: 1 } }, - ] + new_values.map { |new_value| { value_field_name => new_value, **attrs } }, + # Destroy removed value(s) for this custom field + to_remove.map { |old_cde| { id: old_cde.id, _destroy: 1 } }, + ].flatten.compact end record.assign_attributes(custom_data_elements_attributes: Array.wrap(cde_attributes)) @@ -233,7 +244,7 @@ def normalize_custom_field_value(cded, value) if cded.repeats Array.wrap(value).map do |val| normalize_single_custom_field_value(cded, val) - end.compact.presence + end.compact.uniq.presence # Else normalize the single element, and ensure its not an array else raise "Custom field '#{cded.key}' can't be an array" if value.is_a?(Array) @@ -290,6 +301,14 @@ def normalize_single_custom_field_value(cded, value) else raise "unexpected value \"#{value}\"" end + when 'file' + case value + when String + # value string should be either a File ID, or a signed ActiveStorage blob ID. + value + else + raise "unexpected value \"#{value}\"" + end else raise 'unsupported field type for custom data element' end @@ -300,4 +319,46 @@ def safe_parse_date(string) rescue ArgumentError raise "unexpected value for date \"#{string}\"" end + + private def process_files(cded, value, existing_cdes) + if cded.repeats? + Array.wrap(value).map do |val| + process_id_to_file(val, existing_cdes) + end + else + process_id_to_file(value, existing_cdes) + end + end + + private def process_id_to_file(value, existing_cdes) + return value unless value + + if value.to_i.to_s == value.to_s + # If value is a string representation of an integer, then it should be the ID of an existing File record. + # Check that this existing file is already associated with this processor. + raise 'Access denied' unless existing_cdes.pluck(:value_file_id).include?(value.to_i) + + Hmis::File.find(value) + else + # Otherwise, it should be a signed blob ID of a recently-uploaded file. We need to create the File record. + blob = ActiveStorage::Blob.find_signed(value) + + raise "could not find file blob #{value}" unless blob + + # Check if a File for this blob already exists (this likely won't happen, but just in case) + return Hmis::File.find(blob.attachments.first.record_id) unless blob.attachments.empty? + + enrollment = @processor.send(:enrollment_factory) + raise "cannot save file for blob #{value} without enrollment" unless enrollment + + file = Hmis::File.new + file.name = blob.filename + file.client = @processor.send(:client_factory) + file.enrollment = enrollment + file.client_file.attach(blob) + file.user = @processor.current_user + file.updated_by = @processor.current_user + file + end + end end diff --git a/drivers/hmis/app/models/hmis/hud/processors/file_processor.rb b/drivers/hmis/app/models/hmis/hud/processors/file_processor.rb index 3a6a1741ec..9d6ea1cdfa 100644 --- a/drivers/hmis/app/models/hmis/hud/processors/file_processor.rb +++ b/drivers/hmis/app/models/hmis/hud/processors/file_processor.rb @@ -23,12 +23,7 @@ def process(field, value) elsif attribute_name == 'file_blob_id' return if attribute_value.nil? - # TODO(#6208) - accept either unsigned or signed blob ID for now, for backwards compatibility - blob = if attribute_value.to_i.to_s == attribute_value.to_s - ActiveStorage::Blob.find_by(id: attribute_value) - else - ActiveStorage::Blob.find_signed(attribute_value) - end + blob = ActiveStorage::Blob.find_signed(attribute_value) return unless blob # this is invalid and will be rejected by model validations diff --git a/drivers/hmis/app/models/hmis/hud/processors/geolocation_processor.rb b/drivers/hmis/app/models/hmis/hud/processors/geolocation_processor.rb index b59ed06a16..0d8c77f540 100644 --- a/drivers/hmis/app/models/hmis/hud/processors/geolocation_processor.rb +++ b/drivers/hmis/app/models/hmis/hud/processors/geolocation_processor.rb @@ -13,51 +13,81 @@ def schema nil end - def process(field, value) - return @processor.send(factory_name).destroy if value.nil? || value.empty? + def relation_name + :clh_location + end + def process(field, value) attribute_name = ar_attribute_name(field) - + # The only expected attribute name is 'coordinates' raise ArgumentError, "Unexpected attribute for Geolocation: #{attribute_name}" unless attribute_name == 'coordinates' - attribute_value = JSON.parse(value, symbolize_names: true) + # if 'Geolocation.coordinates: nil' was submitted, destroy the clh location record + return destroy_record unless value.present? + + attribute_value = clean_coordinate_value(value).compact_blank latitude = attribute_value[:latitude] longitude = attribute_value[:longitude] not_collected_reason = attribute_value[:notCollectedReason] - raise ArgumentError, 'Geolocation coordinates in unexpected format' unless (latitude && longitude) || not_collected_reason - - return @processor.send(factory_name).destroy if not_collected_reason + return destroy_record if not_collected_reason # not collected reason is returned from external PIT form + return destroy_record unless latitude && longitude @processor.send(factory_name).assign_attributes(lat: latitude, lon: longitude) end + def clean_coordinate_value(value) + if value.is_a?(String) + JSON.parse(value, symbolize_names: true) + elsif value.is_a?(Hash) + value.symbolize_keys + else + raise ArgumentError, 'Geolocation coordinates in unexpected format' + end + end + def assign_metadata clh = @processor.send(factory_name, create: false) - return if clh&.destroyed? + return unless clh + return if clh.marked_for_destruction? + + processed_at = Time.current owner = @processor.owner_factory - located_on, located_at = case owner - when HmisExternalApis::ExternalForms::FormSubmission - [owner.submitted_at.to_date, owner.submitted_at] - when Hmis::Hud::CurrentLivingSituation - [nil, owner.InformationDate] - when Hmis::Hud::CustomAssessment - [nil, owner.AssessmentDate] - else - raise 'unable to determine located_on date for client location' + + # If Latitude or Longitude have changed (or are new), set attributes about location context. + if clh.lat_changed? || clh.lon_changed? + located_on, located_at = case owner + when HmisExternalApis::ExternalForms::FormSubmission + [owner.submitted_at.to_date, owner.submitted_at] + when Hmis::Hud::CurrentLivingSituation + [owner.InformationDate, processed_at] + when Hmis::Hud::CustomAssessment + # Use processing time (now) for located_at time. This could be wrong + # if the location was recorded and then the assessment was saved as WIP for a while before submission. + # However there's no way for us to know that, so just use the processing time. + [owner.AssessmentDate, processed_at] + else + raise "owner type not supported for geolocation collection: #{owner.class}" + end + + clh.located_on = located_on # Date + clh.located_at = located_at # DateTime (newer, added for HMIS) + clh.processed_at = processed_at end - clh&.assign_attributes( + clh.assign_attributes( source: @processor.enrollment_factory, collected_by: @processor.enrollment_factory.project.name, - located_on: located_on, - located_at: located_at, - processed_at: Time.current, ) end def information_date(_) end + + # This record type can be conditionally collected on CustomAssessments/CLS + def dependent_destroyable? + true + end end end diff --git a/drivers/hmis/app/models/hmis/role.rb b/drivers/hmis/app/models/hmis/role.rb index 19d3f19ab2..1d2608f586 100644 --- a/drivers/hmis/app/models/hmis/role.rb +++ b/drivers/hmis/app/models/hmis/role.rb @@ -436,7 +436,14 @@ def self.permissions_with_descriptions description: 'Grants the ability to manage public form submissions', administrative: false, access: [:editable], - category: 'Projects', + category: 'Project Access', + sub_category: 'Public Forms', + }, + can_view_enrollment_location_map: { + description: 'Access to view a Location Map, which shows the locations where the client was contacted during the Enrollment.', + administrative: false, + access: [:viewable], + category: 'Enrollment Access', sub_category: 'Access', }, } diff --git a/drivers/hmis/extensions/client_location_history/location_extension.rb b/drivers/hmis/extensions/client_location_history/location_extension.rb new file mode 100644 index 0000000000..cece1ce05e --- /dev/null +++ b/drivers/hmis/extensions/client_location_history/location_extension.rb @@ -0,0 +1,28 @@ +### +# Copyright 2016 - 2024 Green River Data Analysis, LLC +# +# License detail: https://github.com/greenriver/hmis-warehouse/blob/production/LICENSE.md +### + +module Hmis::ClientLocationHistory + module LocationExtension + extend ActiveSupport::Concern + + included do + has_one :form_processor, class_name: 'Hmis::Form::FormProcessor', foreign_key: :clh_location_id + + # HMIS FormProcessor relies on these hooks to ensure that location `source` + # gets saved with a reference to GrdaWarehouse:: record rather than Hmis:: record. + before_create :ensure_grda_warehouse_source + before_update :ensure_grda_warehouse_source + + private def ensure_grda_warehouse_source + # This somewhat hacky solution gets around the fact that during HMIS Form Processing, we haven't yet saved the + # Enrollment being generated, so we don't yet have an ID with which to get the Warehouse enrollment. + return unless source_type&.starts_with? 'Hmis::Hud::' + + self.source_type = source_type.sub('Hmis::Hud::', 'GrdaWarehouse::Hud::') + end + end + end +end diff --git a/drivers/hmis/spec/factories/hmis/form/definitions.rb b/drivers/hmis/spec/factories/hmis/form/definitions.rb index dc76e86483..0284e97417 100644 --- a/drivers/hmis/spec/factories/hmis/form/definitions.rb +++ b/drivers/hmis/spec/factories/hmis/form/definitions.rb @@ -872,4 +872,37 @@ JSON end end + + factory :hmis_current_living_situation_form_definition, parent: :hmis_form_definition do + identifier { 'hmis_current_living_situation_form_definition' } + role { :CURRENT_LIVING_SITUATION } + title { 'Current Living Situation Form' } + definition do + JSON.parse(<<~JSON) + { + "item": [ + { + "type": "DATE", + "link_id": "date", + "text": "Information Date", + "required": true, + "mapping": { + "field_name": "informationDate" + } + }, + { + "type": "CHOICE", + "required": true, + "link_id": "livingSituation", + "text": "Current Living Situation", + "pick_list_reference": "CURRENT_LIVING_SITUATION", + "mapping": { + "field_name": "currentLivingSituation" + } + } + ] + } + JSON + end + end end diff --git a/drivers/hmis/spec/jobs/migrate_assessments_job_spec.rb b/drivers/hmis/spec/jobs/migrate_assessments_job_spec.rb index 4d60966a8d..a1121aa28f 100644 --- a/drivers/hmis/spec/jobs/migrate_assessments_job_spec.rb +++ b/drivers/hmis/spec/jobs/migrate_assessments_job_spec.rb @@ -14,7 +14,6 @@ let!(:p1) { create :hmis_hud_project, data_source: ds1, organization: o1, user: u1 } let!(:c1) { create :hmis_hud_client, data_source: ds1, user: u1 } let!(:e1) { create :hmis_hud_enrollment, data_source: ds1, project: p1, client: c1 } - let(:time_fmt) { '%Y-%m-%d %T.%3N'.freeze } # Full record set for Entry and Annual let!(:records_by_data_collaction_stage) do @@ -74,9 +73,9 @@ # User should be the most recent updated expect(assessment.user).to eq(expected_records.max_by(&:date_updated).user) # Date created should be MIN from records - expect(assessment.date_created.strftime(time_fmt)).to eq(expected_records.map(&:date_created).min.strftime(time_fmt)) + expect(assessment.date_created.to_fs(:db)).to eq(expected_records.map(&:date_created).min.to_fs(:db)) # Date updated should be MAX from records - expect(assessment.date_updated.strftime(time_fmt)).to eq(expected_records.map(&:date_updated).max.strftime(time_fmt)) + expect(assessment.date_updated.to_fs(:db)).to eq(expected_records.map(&:date_updated).max.to_fs(:db)) related_records = [ :health_and_dv, diff --git a/drivers/hmis/spec/models/hmis/form/definition_spec.rb b/drivers/hmis/spec/models/hmis/form/definition_spec.rb index 9ecd524974..b65552258d 100644 --- a/drivers/hmis/spec/models/hmis/form/definition_spec.rb +++ b/drivers/hmis/spec/models/hmis/form/definition_spec.rb @@ -232,4 +232,44 @@ def expect_definition(expected_fd, project: nil) expect { fd1.destroy! }.to raise_error(ActiveRecord::DeleteRestrictionError) end end + + describe 'supports_save_in_progress' do + it 'returns false for non-assessments' do + fd = create :hmis_form_definition, role: :SERVICE + expect(fd.supports_save_in_progress?).to be false + end + + it 'returns false if it contains an item type of FILE' do + fd = create :hmis_form_definition, role: :CUSTOM_ASSESSMENT, append_items: [ + { + 'type': 'FILE', + 'link_id': 'file_blob_id', + 'text': 'Attachment', + 'mapping': { + 'field_name': 'fileBlobId', + }, + }, + ] + expect(fd.supports_save_in_progress?).to be false + end + + it 'returns false if it contains an item type of IMAGE' do + fd = create :hmis_form_definition, role: :CUSTOM_ASSESSMENT, append_items: [ + { + 'type': 'IMAGE', + 'link_id': 'photo', + 'text': 'Photo', + 'mapping': { + 'field_name': 'photo', + }, + }, + ] + expect(fd.supports_save_in_progress?).to be false + end + + it 'returns true for assessments that do not have any FILE or IMAGE items' do + fd = create :hmis_form_definition, role: :CUSTOM_ASSESSMENT + expect(fd.supports_save_in_progress?).to be true + end + end end diff --git a/drivers/hmis/spec/models/hmis/form/form_processor_file_spec.rb b/drivers/hmis/spec/models/hmis/form/form_processor_file_spec.rb new file mode 100644 index 0000000000..f749ab6eed --- /dev/null +++ b/drivers/hmis/spec/models/hmis/form/form_processor_file_spec.rb @@ -0,0 +1,203 @@ +### +# Copyright 2016 - 2024 Green River Data Analysis, LLC +# +# License detail: https://github.com/greenriver/hmis-warehouse/blob/production/LICENSE.md +### + +require 'rails_helper' +require_relative '../../../requests/hmis/login_and_permissions' +require_relative '../../../support/hmis_base_setup' + +RSpec.describe Hmis::Form::FormProcessor, type: :model do + include_context 'hmis base setup' + include_context 'file upload setup' + + let(:c1) { create :hmis_hud_client, data_source: ds1, user: u1 } + let!(:e1) { create :hmis_hud_enrollment, data_source: ds1, project: p1, client: c1, user: u1 } + + let(:definition_json) do + { + "item": [ + { + "type": 'STRING', + "link_id": 'unrelated', + "text": 'Another assessment field', + "mapping": { + "custom_field_key": 'unrelated', + }, + }, + { + "type": 'FILE', + "link_id": 'file_upload', + "repeats": true, + "text": 'Here is where you can upload a file', + "mapping": { + "custom_field_key": 'file_upload', + }, + }, + ], + } + end + let!(:definition) { create :hmis_form_definition, role: :CUSTOM_ASSESSMENT, definition: definition_json } + let!(:file_cded) { create :hmis_custom_data_element_definition, owner_type: 'Hmis::Hud::CustomAssessment', key: 'file_upload', data_source: ds1, field_type: :file, repeats: true } + let!(:string_cded) { create :hmis_custom_data_element_definition, owner_type: 'Hmis::Hud::CustomAssessment', key: 'unrelated', data_source: ds1, field_type: :string } + + let!(:file1) { File.open('drivers/hmis/spec/fixtures/files/TEST_PDF.pdf') } + let!(:blob1) do + ActiveStorage::Blob.create_and_upload!( + io: file1, + filename: 'TEST_PDF.pdf', + content_type: 'application/pdf', + ) + end + let!(:file2) { File.open('drivers/hmis/spec/fixtures/files/client_photo_00001.jpg') } + let!(:blob2) do + ActiveStorage::Blob.create_and_upload!( + io: file2, + filename: 'client_photo_00001.jpeg', + content_type: 'image/jpeg', + ) + end + + it 'processes nil file correctly' do + assessment = Hmis::Hud::CustomAssessment.new_with_defaults(enrollment: e1, user: u1, form_definition: definition, assessment_date: Date.yesterday) + assessment.form_processor.hud_values = { + 'file_upload' => nil, + 'unrelated' => nil, + } + expect do + assessment.form_processor.run!(user: hmis_user) + assessment.save_not_in_progress + end.not_to change(Hmis::Hud::CustomDataElement, :count) + end + + it 'processes newly submitted file' do + assessment = Hmis::Hud::CustomAssessment.new_with_defaults(enrollment: e1, user: u1, form_definition: definition, assessment_date: Date.yesterday) + assessment.form_processor.hud_values = { + 'file_upload' => blob1.signed_id.to_s, + 'unrelated' => 'Some string', + } + + expect do + assessment.form_processor.run!(user: hmis_user) + assessment.save_not_in_progress + end.to change(Hmis::Hud::CustomDataElement, :count).by(2) + + saved_file_record = Hmis::Hud::CustomDataElement.of_type(file_cded).sole.value_file + expect(saved_file_record.client_file.blob).to eq(blob1) + expect(saved_file_record.client).to eq(c1) + expect(saved_file_record.enrollment).to eq(e1) + expect(saved_file_record.name).to eq('TEST_PDF.pdf') + end + + it 'processes re-submit when file value has not changed' do + assessment = Hmis::Hud::CustomAssessment.new_with_defaults(enrollment: e1, user: u1, form_definition: definition, assessment_date: Date.yesterday) + assessment.form_processor.hud_values = { + 'file_upload' => blob1.signed_id.to_s, + 'unrelated' => 'first value', + } + assessment.form_processor.run!(user: hmis_user) + assessment.save_not_in_progress + saved_file_record = Hmis::Hud::CustomDataElement.of_type(file_cded).sole.value_file + + expect do + assessment.reload.form_processor.hud_values = { + 'file_upload' => saved_file_record.id.to_s, + 'unrelated' => 'second value!', + } + assessment.form_processor.run!(user: hmis_user) + assessment.form_processor.save! + assessment.save_not_in_progress + assessment.reload + saved_file_record.reload + end.to not_change(Hmis::Hud::CustomDataElement, :count). + and not_change(saved_file_record, :deleted_at). + and not_change(saved_file_record, :updated_at) + + expect(Hmis::Hud::CustomDataElement.of_type(string_cded).sole.value_string).to eq('second value!') + end + + it 'adds a file to an existing assessment' do + assessment = Hmis::Hud::CustomAssessment.new_with_defaults(enrollment: e1, user: u1, form_definition: definition, assessment_date: Date.yesterday) + assessment.form_processor.hud_values = { + 'file_upload' => blob1.signed_id.to_s, + 'unrelated' => 'first value', + } + assessment.form_processor.run!(user: hmis_user) + assessment.save_not_in_progress + saved_file_record = Hmis::Hud::CustomDataElement.of_type(file_cded).sole.value_file + + expect do + assessment.reload.form_processor.hud_values = { + 'file_upload' => [saved_file_record.id.to_s, blob2.signed_id.to_s], + 'unrelated' => 'first value', + } + assessment.form_processor.run!(user: hmis_user) + assessment.form_processor.save! + assessment.save_not_in_progress + assessment.reload + saved_file_record.reload + end.to change(Hmis::Hud::CustomDataElement, :count).by(1). + and not_change(saved_file_record, :deleted_at). + and not_change(saved_file_record, :updated_at) + + file_cdeds = Hmis::Hud::CustomDataElement.of_type(file_cded) + expect(file_cdeds.count).to eq(2) + expect(file_cdeds.first.value_file).to eq(saved_file_record) + expect(file_cdeds.second.value_file.client_file.blob).to eq(blob2) + expect(file_cdeds.second.value_file.name).to eq('client_photo_00001.jpeg') + end + + it 'removes a previously uploaded file' do + assessment = Hmis::Hud::CustomAssessment.new_with_defaults(enrollment: e1, user: u1, form_definition: definition, assessment_date: Date.yesterday) + assessment.form_processor.hud_values = { + 'file_upload' => [blob1.signed_id.to_s, blob2.signed_id.to_s], + 'unrelated' => 'first value', + } + expect do + assessment.form_processor.run!(user: hmis_user) + assessment.save_not_in_progress + end.to change(Hmis::Hud::CustomDataElement, :count).by(3). + and change(Hmis::File, :count).by(2) + + saved_file1 = Hmis::Hud::CustomDataElement.of_type(file_cded).first.value_file + saved_file2 = Hmis::Hud::CustomDataElement.of_type(file_cded).second.value_file + + expect do + assessment.reload.form_processor.hud_values = { + 'file_upload' => [saved_file1.id.to_s], # remove one file + 'unrelated' => 'first value', + } + assessment.form_processor.run!(user: hmis_user) + assessment.form_processor.save! + assessment.save_not_in_progress + assessment.reload + saved_file1.reload + saved_file2.reload + end.to change(Hmis::Hud::CustomDataElement, :count).from(3).to(2). + and not_change(saved_file1, :deleted_at). + and not_change(saved_file1, :updated_at). + and change(saved_file2, :deleted_at) + + file_cdeds = Hmis::Hud::CustomDataElement.of_type(file_cded) + expect(file_cdeds.count).to eq(1) + expect(file_cdeds.sole.value_file).to eq(saved_file1) + end + + context 'with existing file record' do + let(:c2) { create :hmis_hud_client, data_source: ds1, user: u1 } + let!(:existing_file_record) { create :file, client: c2, blob: blob1, user_id: hmis_user.id } + + it 'does not allow saving by file ID if not associated with this CustomAssessment already' do + assessment = Hmis::Hud::CustomAssessment.new_with_defaults(enrollment: e1, user: u1, form_definition: definition, assessment_date: Date.yesterday) + assessment.form_processor.hud_values = { + 'file_upload' => [existing_file_record.id.to_s], + } + expect do + assessment.form_processor.run!(user: hmis_user) + assessment.save_not_in_progress + end.to raise_error(RuntimeError, /Access denied/). + and not_change(Hmis::Hud::CustomDataElement, :count) + end + end +end diff --git a/drivers/hmis/spec/models/hmis/form/form_processor_geolocation_spec.rb b/drivers/hmis/spec/models/hmis/form/form_processor_geolocation_spec.rb new file mode 100644 index 0000000000..e8b82d77e7 --- /dev/null +++ b/drivers/hmis/spec/models/hmis/form/form_processor_geolocation_spec.rb @@ -0,0 +1,292 @@ +### +# Copyright 2016 - 2024 Green River Data Analysis, LLC +# +# License detail: https://github.com/greenriver/hmis-warehouse/blob/production/LICENSE.md +### + +require 'rails_helper' +require_relative '../../../support/hmis_base_setup' + +RSpec.describe 'geolocation processing', type: :model do + include_context 'hmis base setup' + + let(:c1) { create :hmis_hud_client, data_source: ds1 } + let!(:e1) { create :hmis_hud_enrollment, data_source: ds1, project: p1, client: c1 } + let!(:p2) { create :hmis_hud_project, data_source: ds1, organization: o1, user: u1, project_type: 7 } + + let(:geolocation_item) do + { + "type": 'GEOLOCATION', + "link_id": 'geolocation', + "text": 'Current Location', + "mapping": { + "record_type": 'GEOLOCATION', + "field_name": 'coordinates', + }, + } + end + let(:today) { Date.current } + + context 'on CustomAssessment' do + let!(:definition) do + create(:custom_assessment_with_custom_fields, data_source: ds1, append_items: geolocation_item, title: 'Custom with Geolocation') + end + + describe 'when processing new CustomAssessment' do + let(:assessment) { build(:hmis_custom_assessment, client: c1, enrollment: e1, data_source: ds1) } + let(:form_processor) { assessment.build_form_processor(definition: definition) } + + [ + # should create location records: + [{ 'latitude': 40.0001, 'longitude': -75.0002 }, true], + [{ 'latitude': 40.0001, 'longitude': -75.0002 }.to_json, true], + [{ 'latitude': 40.0001, 'longitude': -75.0002, 'accuracy': 10 }, true], + # should not create location records: + [{ 'notCollectedReason': 'error' }.to_json, false], + [nil, false], + [{}, false], + ['', false], + ].each do |coordinates, should_create| + it "#{should_create ? 'does' : 'does not'} process coordinates (#{coordinates}) into clh_locations" do + hud_values = { + 'assessmentDate' => today.strftime('%Y-%m-%d'), + 'Geolocation.coordinates' => coordinates, + } + form_processor.hud_values = hud_values + form_processor.run!(user: hmis_user) + form_processor.save! + + if should_create + expect(form_processor.clh_location).to be_persisted + expect(form_processor.clh_location.lat).to eq(40.0001) + expect(form_processor.clh_location.lon).to eq(-75.0002) + expect(form_processor.clh_location.source_type).to eq('GrdaWarehouse::Hud::Enrollment') + expect(form_processor.clh_location.source_id).to eq(e1.id) + expect(form_processor.clh_location.client_id).to eq(c1.id) + expect(form_processor.clh_location.collected_by).to eq(p1.project_name) + expect(form_processor.clh_location.located_on).to eq(today) + expect(form_processor.clh_location.processed_at).to be_present + else + expect(form_processor.clh_location).to be_nil + end + end + end + end + + describe 'when re-processing existing CustomAssessment' do + let!(:clh_location) { create(:clh_location, source: e1.as_warehouse, client_id: c1.id, collected_by: p1.project_name, located_on: 1.week.ago) } + let!(:assessment) do + assessment = create(:hmis_custom_assessment, client: c1, enrollment: e1, data_source: ds1, definition: definition) + assessment.form_processor.update!(clh_location: clh_location) + assessment + end + let(:form_processor) { assessment.form_processor } + let(:today) { Date.today } + let(:updated_lat) { 40.0001 } + let(:updated_lon) { -75.0002 } + + context 'when geolocation is updated' do + it 'updates the location record correctly' do + form_processor.hud_values = { + 'assessmentDate' => today.strftime('%Y-%m-%d'), + 'Geolocation.coordinates' => { latitude: updated_lat, longitude: updated_lon }, + } + + expect do + form_processor.run!(user: hmis_user) + form_processor.save! + end.to change { clh_location.lat }.to(updated_lat). + and change { clh_location.lon }.to(updated_lon). + and change { clh_location.located_on }.to(today). + and change { clh_location.updated_at }. + and(not_change { ClientLocationHistory::Location.count }). + and(not_change { clh_location.slice(:source_type, :source_id, :client_id, :collected_by) }) + end + end + + context 'when geolocation is removed' do + it 'destroys the location record' do + form_processor.hud_values = { + 'assessmentDate' => today.strftime('%Y-%m-%d'), + 'Geolocation.coordinates' => nil, + } + + expect do + form_processor.run!(user: hmis_user) + form_processor.save! + end.to change(ClientLocationHistory::Location, :count).by(-1). + and change { form_processor.clh_location_id }.from(clh_location.id).to(nil) + end + end + + context 'when geolocation is created' do + before(:each) do + clh_location.destroy! + form_processor.update!(clh_location_id: nil) + end + # similar to context above, but here we're operating on an existing CustomAssessment + it 'creates the location record' do + form_processor.hud_values = { + 'assessmentDate' => today.strftime('%Y-%m-%d'), + 'Geolocation.coordinates' => { latitude: updated_lat, longitude: updated_lon }, + } + + expect do + form_processor.run!(user: hmis_user) + form_processor.save! + end.to change(ClientLocationHistory::Location, :count).by(1) + end + end + + context 'when geolocation remains unchanged' do + it 'does not update the location record' do + form_processor.hud_values = { + 'assessmentDate' => today.strftime('%Y-%m-%d'), + 'Geolocation.coordinates' => { latitude: clh_location.lat, longitude: clh_location.lon }, + } + + old_attrs = clh_location.attributes + + expect do + form_processor.run!(user: hmis_user) + form_processor.save! + end.to(not_change { ClientLocationHistory::Location.count }) + + # The only attribute that should change on resubmission is 'updated_at' (for consistency with other Assessment-related records) + expect(clh_location.attributes.excluding('updated_at')).to match(old_attrs.excluding('updated_at')) + end + end + end + end + + context 'on CurrentLivingSituation' do + let!(:definition) do + create(:hmis_current_living_situation_form_definition, data_source: ds1, append_items: geolocation_item, title: 'Custom CLS with Geolocation') + end + + describe 'when processing new CurrentLivingSituation' do + let(:record) { build(:hmis_current_living_situation, client: c1, enrollment: e1, data_source: ds1) } + let(:form_processor) { record.build_form_processor(definition: definition) } + + it 'should create location record' do + hud_values = { + 'informationDate' => today.strftime('%Y-%m-%d'), + 'Geolocation.coordinates' => { 'latitude': 40.0001, 'longitude': -75.0002 }, + } + form_processor.hud_values = hud_values + form_processor.run!(user: hmis_user) + form_processor.save! + + expect(form_processor.clh_location).to be_persisted + expect(form_processor.clh_location.lat).to eq(40.0001) + expect(form_processor.clh_location.lon).to eq(-75.0002) + expect(form_processor.clh_location.source_type).to eq('GrdaWarehouse::Hud::Enrollment') + expect(form_processor.clh_location.source_id).to eq(e1.id) + expect(form_processor.clh_location.client_id).to eq(c1.id) + expect(form_processor.clh_location.collected_by).to eq(p1.project_name) + expect(form_processor.clh_location.located_on).to eq(today) + expect(form_processor.clh_location.processed_at).to be_present + expect(record.clh_location).to be_present + end + + it 'location should not be deleted during clean-up' do + hud_values = { + 'informationDate' => today.strftime('%Y-%m-%d'), + 'Geolocation.coordinates' => { 'latitude': 40.0001, 'longitude': -75.0002 }, + } + form_processor.hud_values = hud_values + form_processor.run!(user: hmis_user) + expect do + form_processor.save! + end.to change(ClientLocationHistory::Location, :count).by(1) + + expect do + GrdaWarehouse::Hud::Enrollment.maintain_location_histories + end.not_to change(ClientLocationHistory::Location, :count) + end + end + + describe 'when re-processing existing CurrentLivingSituation' do + let!(:clh_location) { create(:clh_location, source: e1.as_warehouse, client_id: c1.id, collected_by: p1.project_name, located_on: 1.week.ago) } + let(:record) { build(:hmis_current_living_situation, client: c1, enrollment: e1, data_source: ds1) } + let(:form_processor) { create(:hmis_form_processor, owner: record, definition: definition, clh_location: clh_location) } + let(:today) { Date.today } + let(:updated_lat) { 40.0001 } + let(:updated_lon) { -75.0002 } + + context 'when geolocation is updated' do + it 'updates the location record correctly' do + form_processor.hud_values = { + 'informationDate' => today.strftime('%Y-%m-%d'), + 'Geolocation.coordinates' => { latitude: updated_lat, longitude: updated_lon }, + } + + expect do + form_processor.run!(user: hmis_user) + form_processor.save! + end.to change { clh_location.lat }.to(updated_lat). + and change { clh_location.lon }.to(updated_lon). + and change { clh_location.located_on }.to(today). + and change { clh_location.updated_at }. + and(not_change { record.clh_location.id }). + and(not_change { ClientLocationHistory::Location.count }). + and(not_change { clh_location.slice(:source_type, :source_id, :client_id, :collected_by) }) + end + end + + context 'when geolocation is removed' do + it 'destroys the location record' do + form_processor.hud_values = { + 'informationDate' => today.strftime('%Y-%m-%d'), + 'Geolocation.coordinates' => nil, + } + + expect do + form_processor.run!(user: hmis_user) + form_processor.save! + end.to change(ClientLocationHistory::Location, :count).by(-1). + and change { form_processor.clh_location_id }.from(clh_location.id).to(nil) + end + end + + context 'when geolocation is created' do + before(:each) do + clh_location.destroy! + form_processor.update!(clh_location_id: nil) + end + # similar to context above, but here we're operating on an existing CurrentLivingSituation + it 'creates the location record' do + form_processor.hud_values = { + 'informationDate' => today.strftime('%Y-%m-%d'), + 'Geolocation.coordinates' => { latitude: updated_lat, longitude: updated_lon }, + } + + expect do + form_processor.run!(user: hmis_user) + form_processor.save! + end.to change(ClientLocationHistory::Location, :count).by(1). + and change(form_processor, :clh_location_id).from(nil) + end + end + + context 'when geolocation remains unchanged' do + it 'does not update the location record' do + form_processor.hud_values = { + 'informationDate' => today.strftime('%Y-%m-%d'), + 'Geolocation.coordinates' => { latitude: clh_location.lat, longitude: clh_location.lon }, + } + + old_attrs = clh_location.attributes + + expect do + form_processor.run!(user: hmis_user) + form_processor.save! + end.to(not_change { ClientLocationHistory::Location.count }) + + # The only attribute that should change on resubmission is 'updated_at' (for consistency with other Assessment-related records) + expect(clh_location.attributes.excluding('updated_at')).to match(old_attrs.excluding('updated_at')) + end + end + end + end +end diff --git a/drivers/hmis/spec/models/hmis/form/form_processor_spec.rb b/drivers/hmis/spec/models/hmis/form/form_processor_spec.rb index 05ecf48245..8cde50a802 100644 --- a/drivers/hmis/spec/models/hmis/form/form_processor_spec.rb +++ b/drivers/hmis/spec/models/hmis/form/form_processor_spec.rb @@ -1243,7 +1243,7 @@ def process_record(record:, hud_values:, user:, definition:, save: true) describe 'with imageBlobId' do let!(:file) { File.open('drivers/hmis/spec/fixtures/files/client_photo_00001.jpg') } let(:blob) { ActiveStorage::Blob.create_and_upload!(io: file, filename: 'client_photo_00001.jpg', content_type: 'image/jpeg') } - let(:hud_values) { complete_hud_values.merge('imageBlobId' => blob.id.to_s) } + let(:hud_values) { complete_hud_values.merge('imageBlobId' => blob.signed_id) } it 'creates a ClientFile tagged as a client headshot' do client = Hmis::Hud::Client.new(data_source: ds1, user: u1) @@ -1801,6 +1801,45 @@ def add_cde_item_to_definition expect(record.custom_data_elements.map(&:date_updated)).not_to include(old1.date_updated, old2.date_updated) end + it 'does not delete and replace when some values are the same, but some are different (repeats: true)' do + record = i1 + old_cded = create(:hmis_custom_data_element, owner: record, value_string: 'old value', data_element_definition: cded) + expect(record.custom_data_elements.size).to eq(1) + + hud_values = complete_hud_values.merge( + cded.key => [old_cded.value_string, 'new value'], + ) + + expect do + process_record(record: record, hud_values: hud_values, user: hmis_user, definition: definition) + record.reload + old_cded.reload + end.to change(old_cded, :date_updated).and not_change(old_cded, :date_deleted) + + expect(record.custom_data_elements.size).to eq(2) + expect(record.custom_data_elements.map(&:id)).to include(old_cded.id) + end + + it 'behaves correctly when given identical values' do + record = i1 + + hud_values = complete_hud_values.merge( + cded.key => ['foo', 'foo'], + ) + process_record(record: record, hud_values: hud_values, user: hmis_user, definition: definition) + + expect(record.custom_data_elements.size).to eq(1) + expect(record.custom_data_elements.map(&:value_string)).to contain_exactly('foo') + + hud_values = complete_hud_values.merge( + cded.key => ['foo', 'foo', 'foo', 'bar'], + ) + process_record(record: record, hud_values: hud_values, user: hmis_user, definition: definition) + + expect(record.custom_data_elements.size).to eq(2) + expect(record.custom_data_elements.map(&:value_string)).to contain_exactly('foo', 'bar') + end + [nil, HIDDEN, []].each do |value| it "doesnt error when receiving custom data element value #{value} (new record / existing record with no value)" do existing_record = i1 @@ -1959,7 +1998,7 @@ def add_cde_item_to_definition ], 'enrollmentId' => e1.id.to_s, 'confidential' => true, - 'fileBlobId' => blob.id.to_s, + 'fileBlobId' => blob.signed_id, } end diff --git a/drivers/hmis/spec/models/hmis/hud/household_spec.rb b/drivers/hmis/spec/models/hmis/hud/household_spec.rb index 4fc9f24a0c..6f13dd30f6 100644 --- a/drivers/hmis/spec/models/hmis/hud/household_spec.rb +++ b/drivers/hmis/spec/models/hmis/hud/household_spec.rb @@ -17,8 +17,11 @@ include_context 'hmis base setup' + let(:today) { Date.current } + let(:yesterday) { today - 1.day } + describe 'basic tests' do - let!(:e1) { create(:hmis_hud_enrollment, project: p1, client: c1, user: u1, data_source: ds1, household_id: '123', entry_date: Date.current) } + let!(:e1) { create(:hmis_hud_enrollment, project: p1, client: c1, user: u1, data_source: ds1, household_id: '123', entry_date: today) } it 'has the right associations' do hh = Hmis::Hud::Household.first @@ -31,19 +34,19 @@ describe 'scope tests' do let!(:c2) { create :hmis_hud_client, data_source: ds1, user: u1, first_name: 'Test', last_name: 'User' } - let!(:e2) { create :hmis_hud_enrollment, project: p1, client: c2, user: u1, data_source: ds1, household_id: '456', entry_date: Date.yesterday } + let!(:e2) { create :hmis_hud_enrollment, project: p1, client: c2, user: u1, data_source: ds1, household_id: '456', entry_date: yesterday } it 'should handle text search correctly' do expect(Hmis::Hud::Household.client_matches_search_term('user')).to contain_exactly(Hmis::Hud::Household.find_by(HouseholdID: e2.household_id)) end it 'should handle open on correctly' do - e3 = create(:hmis_hud_enrollment, project: p1, user: u1, data_source: ds1, household_id: '789', entry_date: Date.current - 1.week, client: c2) - create(:hmis_hud_exit, data_source: ds1, enrollment: e3, client: c2, exit_date: Date.yesterday) + e3 = create(:hmis_hud_enrollment, project: p1, user: u1, data_source: ds1, household_id: '789', entry_date: today - 1.week, client: c2) + create(:hmis_hud_exit, data_source: ds1, enrollment: e3, client: c2, exit_date: yesterday) - expect(Hmis::Hud::Household.open_on_date(Date.current)).to contain_exactly(e1.household, e2.household) - expect(Hmis::Hud::Household.open_on_date(Date.yesterday)).to contain_exactly(e2.household, e3.household) - expect(Hmis::Hud::Household.open_on_date(Date.current - 3.days)).to contain_exactly(e3.household) + expect(Hmis::Hud::Household.open_on_date(today)).to contain_exactly(e1.household, e2.household) + expect(Hmis::Hud::Household.open_on_date(yesterday)).to contain_exactly(e2.household, e3.household) + expect(Hmis::Hud::Household.open_on_date(today - 3.days)).to contain_exactly(e3.household) end it 'should handle enrollment limit correctly' do @@ -76,12 +79,12 @@ let!(:client_d) { create :hmis_hud_client, first_name: 'D', last_name: 'W', data_source: ds1, user: u1 } # A and D are enrolled together, A is the HoH - let!(:e_a) { create(:hmis_hud_enrollment, project: p1, client: client_a, user: u1, data_source: ds1, household_id: '1', RelationshipToHoH: 1, entry_date: Date.current) } - let!(:e_d) { create(:hmis_hud_enrollment, project: p1, client: client_d, user: u1, data_source: ds1, household_id: '1', RelationshipToHoH: 2, entry_date: Date.current) } + let!(:e_a) { create(:hmis_hud_enrollment, project: p1, client: client_a, user: u1, data_source: ds1, household_id: '1', RelationshipToHoH: 1, entry_date: today) } + let!(:e_d) { create(:hmis_hud_enrollment, project: p1, client: client_d, user: u1, data_source: ds1, household_id: '1', RelationshipToHoH: 2, entry_date: today) } # B and C are enrolled together, B is the HoH - let!(:e_b) { create(:hmis_hud_enrollment, project: p1, client: client_b, user: u1, data_source: ds1, household_id: '2', RelationshipToHoH: 1, entry_date: Date.current) } - let!(:e_c) { create(:hmis_hud_enrollment, project: p1, client: client_c, user: u1, data_source: ds1, household_id: '2', RelationshipToHoH: 2, entry_date: Date.current) } + let!(:e_b) { create(:hmis_hud_enrollment, project: p1, client: client_b, user: u1, data_source: ds1, household_id: '2', RelationshipToHoH: 1, entry_date: today) } + let!(:e_c) { create(:hmis_hud_enrollment, project: p1, client: client_c, user: u1, data_source: ds1, household_id: '2', RelationshipToHoH: 2, entry_date: today) } it 'should sort by head of household first name' do ordered = Hmis::Hud::Household.sort_by_option(:hoh_first_name_a_to_z) diff --git a/drivers/hmis/spec/requests/hmis/assessments/submit_hud_assessments_spec.rb b/drivers/hmis/spec/requests/hmis/assessments/submit_hud_assessments_spec.rb index 6124afd296..94d282412e 100644 --- a/drivers/hmis/spec/requests/hmis/assessments/submit_hud_assessments_spec.rb +++ b/drivers/hmis/spec/requests/hmis/assessments/submit_hud_assessments_spec.rb @@ -18,12 +18,11 @@ include_context 'hmis base setup' - TIME_FMT = '%Y-%m-%d %T.%3N'.freeze - let(:today) { Date.current } + let(:yesterday) { today - 1.day } let!(:access_control) { create_access_control(hmis_user, p1) } let(:c1) { create :hmis_hud_client, data_source: ds1, user: u1 } - let!(:e1) { create :hmis_hud_enrollment, data_source: ds1, project: p1, client: c1, user: u1 } + let!(:e1) { create :hmis_hud_enrollment, data_source: ds1, project: p1, client: c1, user: u1, entry_date: 2.weeks.ago, date_updated: Time.current - 6.hours } before(:each) do hmis_login(user) @@ -112,7 +111,6 @@ def expect_assessment_dates(assessment, expected_assessment_date:, expected_entr [:INTAKE, :UPDATE, :ANNUAL, :EXIT].each do |role| it "#{role}: sets and updates assessment date and entry/exit dates as appropriate" do definition = Hmis::Form::Definition.find_by(role: role) - e1.update(entry_date: 2.weeks.ago) enrollment_date_updated = e1.date_updated # Create the initial assessment (submit) @@ -134,30 +132,34 @@ def expect_assessment_dates(assessment, expected_assessment_date:, expected_entr expected_exit_date: role == :EXIT ? initial_assessment_date : nil, ) # DateUpdate on the Enrollment should have changed - expect(assessment.enrollment.date_updated.strftime(TIME_FMT)).not_to eq(enrollment_date_updated.strftime(TIME_FMT)) + expect(assessment.enrollment.date_updated.to_fs(:db)).not_to eq(enrollment_date_updated.to_fs(:db)) enrollment_date_updated = assessment.enrollment.date_updated # Update the assessment (submit) - new_assessment_date = Date.yesterday.strftime('%Y-%m-%d') + new_assessment_date = yesterday.strftime('%Y-%m-%d') input = { assessment_id: assessment.id, enrollment_id: assessment.enrollment.id, form_definition_id: definition.id, **build_minimum_values(definition, assessment_date: new_assessment_date), } - _resp, result = post_graphql(input: { input: input }) { submit_assessment_mutation } - errors = result.dig('data', 'submitAssessment', 'errors') - expect(errors).to be_empty - assessment.reload - expect_assessment_dates( - assessment, - expected_assessment_date: new_assessment_date, - expected_entry_date: role == :INTAKE ? new_assessment_date : e1.entry_date, - expected_exit_date: role == :EXIT ? new_assessment_date : nil, - ) - # DateUpdate on the Enrollment should have changed - expect(assessment.enrollment.date_updated.strftime(TIME_FMT)).not_to eq(enrollment_date_updated.strftime(TIME_FMT)) + # Jump ahead to make sure DateUpdated changes + Timecop.travel(Time.current + 5.minutes) do + _resp, result = post_graphql(input: { input: input }) { submit_assessment_mutation } + errors = result.dig('data', 'submitAssessment', 'errors') + expect(errors).to be_empty + + assessment.reload + expect_assessment_dates( + assessment, + expected_assessment_date: new_assessment_date, + expected_entry_date: role == :INTAKE ? new_assessment_date : e1.entry_date, + expected_exit_date: role == :EXIT ? new_assessment_date : nil, + ) + # DateUpdated on the Enrollment should have changed + expect(assessment.enrollment.date_updated.to_fs(:db)).not_to eq(enrollment_date_updated.to_fs(:db)) + end end end end @@ -166,7 +168,6 @@ def expect_assessment_dates(assessment, expected_assessment_date:, expected_entr [:INTAKE, :UPDATE, :ANNUAL, :EXIT].each do |role| it "#{role}: sets and updates assessment date and entry/exit dates as appropriate" do definition = Hmis::Form::Definition.find_by(role: role) - e1.update(entry_date: 2.weeks.ago) enrollment_date_updated = e1.date_updated # Create the initial assessment (save as WIP) @@ -187,10 +188,10 @@ def expect_assessment_dates(assessment, expected_assessment_date:, expected_entr expected_entry_date: e1.entry_date, expected_exit_date: nil, ) - expect(assessment.enrollment.date_updated.strftime(TIME_FMT)).to eq(enrollment_date_updated.strftime(TIME_FMT)) + expect(assessment.enrollment.date_updated.to_fs(:db)).to eq(enrollment_date_updated.to_fs(:db)) # Update the assessment (submit) - new_assessment_date = Date.yesterday.strftime('%Y-%m-%d') + new_assessment_date = yesterday.strftime('%Y-%m-%d') input = { assessment_id: assessment.id, enrollment_id: assessment.enrollment.id, @@ -208,28 +209,31 @@ def expect_assessment_dates(assessment, expected_assessment_date:, expected_entr expected_entry_date: role == :INTAKE ? new_assessment_date : e1.entry_date, expected_exit_date: role == :EXIT ? new_assessment_date : nil, ) - expect(assessment.enrollment.date_updated.strftime(TIME_FMT)).not_to eq(enrollment_date_updated.strftime(TIME_FMT)) + expect(assessment.enrollment.date_updated.to_fs(:db)).not_to eq(enrollment_date_updated.to_fs(:db)) # Update the assessment again (submit) - new_assessment_date = Date.yesterday.strftime('%Y-%m-%d') + new_assessment_date = yesterday.strftime('%Y-%m-%d') input = { assessment_id: assessment.id, enrollment_id: assessment.enrollment.id, form_definition_id: definition.id, **build_minimum_values(definition, assessment_date: new_assessment_date), } - _resp, result = post_graphql(input: { input: input }) { submit_assessment_mutation } - errors = result.dig('data', 'submitAssessment', 'errors') - expect(errors).to be_empty - - assessment = Hmis::Hud::CustomAssessment.find(assessment_id) - expect_assessment_dates( - assessment, - expected_assessment_date: new_assessment_date, - expected_entry_date: role == :INTAKE ? new_assessment_date : e1.entry_date, - expected_exit_date: role == :EXIT ? new_assessment_date : nil, - ) - expect(assessment.enrollment.date_updated.strftime(TIME_FMT)).not_to eq(enrollment_date_updated.strftime(TIME_FMT)) + # Jump ahead to make sure DateUpdated changes + Timecop.travel(Time.current + 5.minutes) do + _resp, result = post_graphql(input: { input: input }) { submit_assessment_mutation } + errors = result.dig('data', 'submitAssessment', 'errors') + expect(errors).to be_empty + + assessment = Hmis::Hud::CustomAssessment.find(assessment_id) + expect_assessment_dates( + assessment, + expected_assessment_date: new_assessment_date, + expected_entry_date: role == :INTAKE ? new_assessment_date : e1.entry_date, + expected_exit_date: role == :EXIT ? new_assessment_date : nil, + ) + expect(assessment.enrollment.date_updated.to_fs(:db)).not_to eq(enrollment_date_updated.to_fs(:db)) + end end end end @@ -240,7 +244,7 @@ def expect_assessment_dates(assessment, expected_assessment_date:, expected_entr it 'Can update the Exit Date when submitting a NEW Exit assessment on an Enrollment that has already been exited (edge case)' do definition = Hmis::Form::Definition.find_by(role: :EXIT) - new_exit_date = Date.yesterday.strftime('%Y-%m-%d') + new_exit_date = yesterday.strftime('%Y-%m-%d') input = { enrollment_id: exited_enrollment.id, form_definition_id: definition.id, @@ -267,7 +271,7 @@ def expect_assessment_dates(assessment, expected_assessment_date:, expected_entr ) expect do definition = Hmis::Form::Definition.find_by(role: :EXIT) - new_exit_date = Date.yesterday.strftime('%Y-%m-%d') + new_exit_date = yesterday.strftime('%Y-%m-%d') input = { enrollment_id: exited_enrollment.id, form_definition_id: definition.id, diff --git a/drivers/hmis/spec/requests/hmis/enrollment_locations_spec.rb b/drivers/hmis/spec/requests/hmis/enrollment_locations_spec.rb new file mode 100644 index 0000000000..92852cf9f2 --- /dev/null +++ b/drivers/hmis/spec/requests/hmis/enrollment_locations_spec.rb @@ -0,0 +1,107 @@ +### +# Copyright 2016 - 2024 Green River Data Analysis, LLC +# +# License detail: https://github.com/greenriver/hmis-warehouse/blob/production/LICENSE.md +### + +require 'rails_helper' +require_relative 'login_and_permissions' +require_relative '../../support/hmis_base_setup' + +RSpec.describe Hmis::GraphqlController, type: :request do + include_context 'hmis base setup' + + describe 'enrollment resolver' do + let!(:e1) { create :hmis_hud_enrollment, data_source: ds1, client: c1, project: p1, entry_date: 1.week.ago } + + # CurrentLivingSituation + let!(:cls) { create(:hmis_current_living_situation, client: c1, enrollment: e1, data_source: ds1) } + # ClientLocationHistory::Location that has Enrollment as a source + let!(:cls_location) { create(:clh_location, source: e1.as_warehouse, client_id: c1.id, collected_by: p1.project_name, located_on: 1.week.ago) } + # FormProcessor linking together the CLS and the Location + let!(:cls_definition) { create(:hmis_current_living_situation_form_definition) } + let!(:cls_form_processor) { create(:hmis_form_processor, owner: cls, clh_location: cls_location, definition: cls_definition) } + + # CustomAssessment + let!(:assessment) { create(:hmis_custom_assessment, client: c1, enrollment: e1, data_source: ds1) } + # ClientLocationHistory::Location that has Enrollment as a source + let!(:assessment_location) { create(:clh_location, source: e1.as_warehouse, client_id: c1.id, collected_by: p1.project_name, located_on: 1.month.ago) } + # FormProcessor linking together the CustomAssessment and the Location + let!(:assessment_definition) { create(:custom_assessment_with_custom_fields) } + let!(:assessment_form_processor) { assessment.form_processor.update!(clh_location: assessment_location, definition: assessment_definition) } + + let(:query) do + <<~GRAPHQL + query getEnrollment($id: ID!) { + enrollment(id: $id) { + id + geolocations { + id + locatedAt + projectName + sourceFormName + coordinates { + latitude + longitude + } + } + } + } + GRAPHQL + end + + before(:each) do + hmis_login(user) + end + + def perform_mutation(enrollment_id: e1.id) + response, result = post_graphql(id: enrollment_id) { query } + expect(response.status).to eq(200), result.inspect + result.dig('data', 'enrollment', 'geolocations') + end + + context 'when user lacks permission to view locations' do + let!(:access_control) { create_access_control(hmis_user, p1, without_permission: :can_view_enrollment_location_map) } + + it 'does not resolve locations' do + locations = perform_mutation + + expect(locations).to be_empty + end + end + context 'when user has permission to view locations' do + let!(:access_control) { create_access_control(hmis_user, p1) } + + it 'resolves locations' do + locations = perform_mutation + + expect(locations).to contain_exactly( + a_hash_including( + 'id' => cls_location.id.to_s, + 'sourceFormName' => 'Current Living Situation', + 'projectName' => p1.project_name, + ), + a_hash_including( + 'id' => assessment_location.id.to_s, + 'sourceFormName' => assessment_definition.title, + 'projectName' => p1.project_name, + ), + ) + end + + it 'excludes invalid locations' do + cls_location.update!(lat: nil) + + locations = perform_mutation + + expect(locations).to contain_exactly( + a_hash_including('id' => assessment_location.id.to_s), # cls_location is excluded + ) + end + end + end +end + +RSpec.configure do |c| + c.include GraphqlHelpers +end diff --git a/drivers/hmis/spec/requests/hmis/lookup_client_spec.rb b/drivers/hmis/spec/requests/hmis/lookup_client_spec.rb index 918adb864e..a21dc31941 100644 --- a/drivers/hmis/spec/requests/hmis/lookup_client_spec.rb +++ b/drivers/hmis/spec/requests/hmis/lookup_client_spec.rb @@ -80,7 +80,6 @@ name confidential redacted - fileBlobId tags updatedBy { id @@ -262,7 +261,6 @@ 'redacted' => true, 'name' => 'Confidential File', 'confidential' => true, - 'fileBlobId' => nil, 'tags' => [], 'updatedBy' => nil, 'uploadedBy' => nil, diff --git a/drivers/hmis/spec/requests/hmis/submit_form_spec.rb b/drivers/hmis/spec/requests/hmis/submit_form_spec.rb index 55d454ed1e..dcfd5d17bd 100644 --- a/drivers/hmis/spec/requests/hmis/submit_form_spec.rb +++ b/drivers/hmis/spec/requests/hmis/submit_form_spec.rb @@ -20,8 +20,6 @@ include_context 'hmis service setup' include_context 'file upload setup' - TIME_FMT = '%Y-%m-%d %T.%3N'.freeze - let(:today) { Date.current } let!(:access_control) { create_access_control(hmis_user, ds1) } let!(:c2) { create :hmis_hud_client_complete, data_source: ds1 } @@ -157,8 +155,8 @@ def submit_form(input) **mock_form_values_for_definition(definition) do |values| if role == :FILE # FIXME make this not depend on specific Link IDs in the file form - values[:values]['file_blob_id'] = blob.id.to_s - values[:hud_values]['fileBlobId'] = blob.id.to_s + values[:values]['file_blob_id'] = blob.signed_id + values[:hud_values]['fileBlobId'] = blob.signed_id end values end, diff --git a/drivers/hmis/spec/requests/hmis/update_external_form_submission_spec.rb b/drivers/hmis/spec/requests/hmis/update_external_form_submission_spec.rb index c9f9404247..12356b6ddc 100644 --- a/drivers/hmis/spec/requests/hmis/update_external_form_submission_spec.rb +++ b/drivers/hmis/spec/requests/hmis/update_external_form_submission_spec.rb @@ -417,13 +417,13 @@ and change(ClientLocationHistory::Location, :count).by(1) submission.reload - expect(submission.enrollment.entry_date).to eq(Date.current) + expect(submission.enrollment.entry_date).to eq(today) clh = submission.enrollment.as_warehouse.enrollment_location_histories.first expect(clh.client_id).to eq(submission.enrollment.client.id) expect(clh.lat).to eq(40.812497) expect(clh.lon).to eq(-77.882926) - expect(clh.located_on).to eq(Date.yesterday) + expect(clh.located_on).to eq(submission.submitted_at.to_date) expect(clh.located_at).to eq(submission.submitted_at) end diff --git a/drivers/hmis_data_quality_tool/app/controllers/hmis_data_quality_tool/warehouse_reports/reports_controller.rb b/drivers/hmis_data_quality_tool/app/controllers/hmis_data_quality_tool/warehouse_reports/reports_controller.rb index b36324b141..61bcf40512 100644 --- a/drivers/hmis_data_quality_tool/app/controllers/hmis_data_quality_tool/warehouse_reports/reports_controller.rb +++ b/drivers/hmis_data_quality_tool/app/controllers/hmis_data_quality_tool/warehouse_reports/reports_controller.rb @@ -25,7 +25,7 @@ def index @report = report_class.new(user_id: current_user.id) @filter.default_project_type_codes = @report.default_project_type_codes previous_report = report_scope.where(user_id: current_user.id).last - @filter.update(previous_report.options) if previous_report + @filter.update(previous_report.options) if previous_report && params[:filters].blank? # Make sure the form will work filters diff --git a/drivers/hmis_external_apis/app/models/hmis_external_apis/external_forms/form_submission.rb b/drivers/hmis_external_apis/app/models/hmis_external_apis/external_forms/form_submission.rb index 7d56d98f99..103b6ece6d 100644 --- a/drivers/hmis_external_apis/app/models/hmis_external_apis/external_forms/form_submission.rb +++ b/drivers/hmis_external_apis/app/models/hmis_external_apis/external_forms/form_submission.rb @@ -6,12 +6,14 @@ module HmisExternalApis::ExternalForms class FormSubmission < ::HmisExternalApis::HmisExternalApisBase + include ::Hmis::Hud::Concerns::FormSubmittable self.table_name = 'hmis_external_form_submissions' + belongs_to :definition, class_name: 'Hmis::Form::Definition' # Enrollment that was generated as a result of processing this form submission. Only applicable for certain external forms, like the PIT. belongs_to :enrollment, class_name: 'Hmis::Hud::Enrollment', optional: true has_one :client, through: :enrollment - has_one :form_processor, class_name: 'Hmis::Form::FormProcessor', as: :owner, dependent: :destroy + has_one :clh_location, through: :form_processor include HasPiiAttributes pii_attr :raw_data, as: :json, level: 1 @@ -24,8 +26,6 @@ class FormSubmission < ::HmisExternalApis::HmisExternalApisBase errors.add(:status, :invalid, full_message: 'Cannot change status from Reviewed to New') if status_was == 'reviewed' && status == 'new' end - include ::Hmis::Hud::Concerns::FormSubmittable - # The recaptcha spam score is a float between 0 (likely spam) and 1.0 (likely real) # For now we will start with 0.5 as the threshold, maybe we will adjust in future SPAM_THRESHOLD = 0.5 diff --git a/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_four.rb b/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_four.rb index b55ca63a5a..dc145e5246 100644 --- a/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_four.rb +++ b/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_four.rb @@ -75,10 +75,10 @@ def project_row(sheet, project) project.ProjectType, project.RRHSubType, # Coordinated Entry Access Point - (ce_participation&.AccessPoint || 0), + ce_participation&.AccessPoint || 0, # (If 2.02.6 =6 or (13 and 2.02.6A = 1)), then 0 or 1 (project.ProjectType == 6 || (project.ProjectType == 13 && project.RRHSubType == 1) ? project.ResidentialAffiliation : 0), - if project.ProjectType == 6 && project.ResidentialAffiliation == 1 then project.residential_affiliations.map(&:ResProjectID).join(', ') else ' ' end, + if project.ProjectType == 6 && project.ResidentialAffiliation == 1 then project.residential_projects.map(&:ProjectID).join(', ') else ' ' end, project.project_cocs.map(&:effective_coc_code).join(', '), project.project_cocs.map(&:effective_geocode).join(', '), if project.VictimServicesProvider.present? then project.VictimServicesProvider else 0 end, diff --git a/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_sixteen.rb b/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_sixteen.rb index 5bd8f323bf..4e4ddbf40a 100644 --- a/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_sixteen.rb +++ b/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_sixteen.rb @@ -67,7 +67,16 @@ def self.table_descriptions end private def income_levels(suffix) - not_collected = a_t["income_total_at_#{suffix}".to_sym].eq(nil) + not_collected = a_t["income_from_any_source_at_#{suffix}".to_sym].eq(nil). + or(a_t["income_from_any_source_at_#{suffix}".to_sym].eq(99)). + or( + a_t["income_total_at_#{suffix}"].eq(nil). + and( + # Responses of 8 & 9 are expected to have total income nil. + # These are filtered out to prevent duplicates. They are captured in a different row. + a_t["income_from_any_source_at_#{suffix}"].not_in([8, 9]), + ), + ) # for annual assessments, only count as missing if the annual assessment actually happened not_collected = not_collected.and(a_t[:annual_assessment_in_window].eq(true)) if suffix == :annual_assessment diff --git a/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_ten.rb b/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_ten.rb index 11531d9a3e..0ba19ece2d 100644 --- a/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_ten.rb +++ b/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_ten.rb @@ -42,7 +42,7 @@ def self.table_descriptions 'B' => Arel.sql('1=1'), 'C' => a_t[:age].between(0..17), 'D' => a_t[:age].between(18..24), - 'E' => a_t[:age].between(25..65), + 'E' => a_t[:age].between(25..64), 'F' => a_t[:age].gteq(65), 'G' => a_t[:dob_quality].in([8, 9]).and(a_t[:dob].eq(nil)), 'H' => a_t[:dob_quality].not_in([8, 9]). diff --git a/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_twenty_five.rb b/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_twenty_five.rb index 9303a49df5..7c2b6ae55f 100644 --- a/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_twenty_five.rb +++ b/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_twenty_five.rb @@ -71,54 +71,42 @@ def self.table_descriptions cols = (metadata[:first_column]..metadata[:last_column]).to_a rows = (metadata[:first_row]..metadata[:last_row]).to_a q25_populations.values.each_with_index do |population_clause, col_index| - households = Set.new # only count each household once + # https://airtable.com/appFAz3WpgFmIJMm6/shr8TvO6KfAZ3mOJd/tblYhwasMJptw5fjj/viw7VMUmDdyDL70a7/recT9z9YkbQtWwAmm + # "Report each household by type as described in Determining Each Client’s Household Type and Counting Distinct Households," + # which section in turn refers the user to "Unduplicated Household Counts by Individual Attribute" in the HMIS Reporting Glossary. + # The instructions in that section of the Reporting Glossary read "Unduplicated household counts should be determined by + # performing a distinct count of [personal IDs] of all heads of households (people who have [relationship to head of household] = Self) + # in the report range." All household counts in the APR rely on counts of heads of household rather than counts of Household ID. q25b_responses.values.each_with_index do |response_clause, row_index| cell = "#{cols[col_index]}#{rows[row_index]}" next if intentionally_blank.include?(cell) answer = @report.answer(question: table_name, cell: cell) + # limit members only to heads of households. If there is a data issue where ther are more than one HoH for the household, + # we want both heads of the household to be included. members = universe.members.where(hoh_clause.and(a_t[:household_type].not_eq('children_only'))). where.not(a_t[:age].eq(nil).and(a_t[:household_type].eq('unknown'))). # Special case from Datalab test? where(population_clause) ids = Set.new if response_clause.is_a?(Symbol) - # Count any households where any adult or HoH in the household members.preload(:universe_membership).find_each do |member| apr_client = member.universe_membership case response_clause when :chronic - if ! households.include?(apr_client.household_id) && household_veterans_chronically_homeless?(apr_client) - ids << member.id - households << apr_client.household_id - end + ids << member.id if household_veterans_chronically_homeless?(apr_client) when :not_chronic - if ! households.include?(apr_client.household_id) && household_veterans_non_chronically_homeless?(apr_client) - ids << member.id - households << apr_client.household_id - end + ids << member.id if household_veterans_non_chronically_homeless?(apr_client) when :veteran # NOTE: actually not-a-veteran - if ! households.include?(apr_client.household_id) && all_household_adults_non_veterans?(apr_client) - ids << member.id - households << apr_client.household_id - end + ids << member.id if all_household_adults_non_veterans?(apr_client) when :refused - if ! households.include?(apr_client.household_id) && household_adults_refused_veterans(apr_client).any? - ids << member.id - households << apr_client.household_id - end + ids << member.id if household_adults_refused_veterans(apr_client).any? when :not_collected - if ! households.include?(apr_client.household_id) && household_adults_missing_veterans(apr_client).any? - ids << member.id - households << apr_client.household_id - end + ids << member.id if household_adults_missing_veterans(apr_client).any? end end members = members.where(id: ids) - else - members = members.where(a_t[:household_id].in(households.to_a)) end - value = members.count answer.add_members(members) diff --git a/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_twenty_four.rb b/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_twenty_four.rb index 4caaaf79f8..ddb3821eee 100644 --- a/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_twenty_four.rb +++ b/drivers/hud_apr/app/models/hud_apr/generators/shared/fy2024/question_twenty_four.rb @@ -122,7 +122,7 @@ def q24d_language_of_persons_requiring_translation_assistance language_rows = [] grouped_members = relevant_members.preload(:universe_membership).group_by { |m| m.universe_membership.preferred_language } grouped_members.each_pair do |code, members| - if code + if code.present? && code != 21 language_rows << [code.to_i, members] else different_language_members = members @@ -167,9 +167,9 @@ def q24d_language_of_persons_requiring_translation_assistance 'Able to maintain the housing they had at project start--Only with financial assistance other than a subsidy' => a_t[:housing_assessment].eq(1). and(a_t[:subsidy_information].eq(4)), 'Moved to new housing unit--With on-going subsidy' => a_t[:housing_assessment].eq(2). - and(a_t[:subsidy_information].eq(3)), + and(a_t[:subsidy_information].eq(11)), 'Moved to new housing unit--Without an on-going subsidy' => a_t[:housing_assessment].eq(2). - and(a_t[:subsidy_information].eq(1)), + and(a_t[:subsidy_information].eq(12)), 'Moved in with family/friends on a temporary basis' => a_t[:housing_assessment].eq(3), 'Moved in with family/friends on a permanent basis' => a_t[:housing_assessment].eq(4), 'Moved to a transitional or temporary housing facility or program' => a_t[:housing_assessment].eq(5), @@ -178,7 +178,7 @@ def q24d_language_of_persons_requiring_translation_assistance 'Deceased' => a_t[:housing_assessment].eq(10), label_for(:dkptr) => a_t[:housing_assessment].in([8, 9]), 'Data not collected (no exit interview completed)' => a_t[:housing_assessment].eq(99).or(leavers_clause.and(a_t[:housing_assessment].eq(nil))), - 'Total' => leavers_clause, + 'Total' => a_t[:housing_assessment].eq(99).or(leavers_clause), }.freeze end diff --git a/drivers/hud_apr/spec/models/fy2024/datalab_apr/multiple_projects.rb b/drivers/hud_apr/spec/models/fy2024/datalab_apr/multiple_projects.rb index 884af20f32..baa06b8e4c 100644 --- a/drivers/hud_apr/spec/models/fy2024/datalab_apr/multiple_projects.rb +++ b/drivers/hud_apr/spec/models/fy2024/datalab_apr/multiple_projects.rb @@ -380,15 +380,11 @@ # Previous https://airtable.com/appFAz3WpgFmIJMm6/shr8TvO6KfAZ3mOJd/tblYhwasMJptw5fjj/viw7VMUmDdyDL70a7/recnAJsqhnXlGmmZG # Not counting children with HoH or adult in CH calculation - # Pending https://airtable.com/appFAz3WpgFmIJMm6/shr8TvO6KfAZ3mOJd/tblYhwasMJptw5fjj/viw7VMUmDdyDL70a7/recT9z9YkbQtWwAmm + # Previous https://airtable.com/appFAz3WpgFmIJMm6/shr8TvO6KfAZ3mOJd/tblYhwasMJptw5fjj/viw7VMUmDdyDL70a7/recT9z9YkbQtWwAmm it 'Q25b' do compare_results( file_path: result_file_prefix + results_dir, question: 'Q25b', - skip: [ - 'B4', # expected '323.0000' (323), got '322.0000' (322) - 'D4', # expected '70.0000' (70), got '69.0000' (69) - ], ) end diff --git a/drivers/hud_apr/spec/models/fy2024/datalab_apr/organization_s_rrh.rb b/drivers/hud_apr/spec/models/fy2024/datalab_apr/organization_s_rrh.rb index f929225b54..4460776987 100644 --- a/drivers/hud_apr/spec/models/fy2024/datalab_apr/organization_s_rrh.rb +++ b/drivers/hud_apr/spec/models/fy2024/datalab_apr/organization_s_rrh.rb @@ -364,10 +364,6 @@ compare_results( file_path: result_file_prefix + results_dir, question: 'Q25b', - skip: [ - 'B4', # expected '211.0000' (211), got '210.0000' (210) - 'D4', # expected '39.0000' (39), got '38.0000' (38) - ], ) end diff --git a/drivers/hud_apr/spec/models/fy2024/datalab_caper/organization_j_hp.rb b/drivers/hud_apr/spec/models/fy2024/datalab_caper/organization_j_hp.rb index 9d45963c53..8efe87715c 100644 --- a/drivers/hud_apr/spec/models/fy2024/datalab_caper/organization_j_hp.rb +++ b/drivers/hud_apr/spec/models/fy2024/datalab_caper/organization_j_hp.rb @@ -324,14 +324,6 @@ compare_results( file_path: result_file_prefix + results_dir, question: 'Q24a', - skip: [ - 'B6', # expected '26.0000' (26), got '0.0000' (0) - 'C6', # expected '2.0000' (2), got '0.0000' (0) - 'D6', # expected '24.0000' (24), got '0.0000' (0) - 'B7', # expected '24.0000' (24), got '0.0000' (0) - 'C7', # expected '1.0000' (1), got '0.0000' (0) - 'D7', # expected '23.0000' (23), got '0.0000' (0) - ], ) end diff --git a/spec/models/auth_policies/destination_client_policy_spec.rb b/spec/models/auth_policies/destination_client_policy_spec.rb index 28794e58b8..da5a7d1921 100644 --- a/spec/models/auth_policies/destination_client_policy_spec.rb +++ b/spec/models/auth_policies/destination_client_policy_spec.rb @@ -33,6 +33,19 @@ expect(policy.can_view_full_ssn?).to be false expect(policy.can_view_hiv_status?).to be false end + + context 'with self-referencing warehouse client' do + before do + warehouse_client.update!(source_id: destination_client.id) + end + it 'denies all PII permissions' do + expect(policy.can_view_name?).to be false + expect(policy.can_view_photo?).to be false + expect(policy.can_view_full_dob?).to be false + expect(policy.can_view_full_ssn?).to be false + expect(policy.can_view_hiv_status?).to be false + end + end end shared_examples 'pii permission checks without access' do @@ -82,7 +95,6 @@ before do collection.set_viewables({ projects: [project.id] }) end - include_examples 'pii permission checks with access' end diff --git a/spec/models/auth_policies/source_client_policy_spec.rb b/spec/models/auth_policies/source_client_policy_spec.rb index eeaa27afd6..0d676a0faa 100644 --- a/spec/models/auth_policies/source_client_policy_spec.rb +++ b/spec/models/auth_policies/source_client_policy_spec.rb @@ -118,14 +118,42 @@ create(:warehouse_client, source: window_client, data_source: window_data_source) create(:client_roi_authorization, destination_client: window_client.destination_client) end - it 'grants access through window data source' do - expect(policy.can_view_name?).to be true - end + include_examples 'pii permission checks with access' end context 'without release' do - it 'denies access' do - expect(policy.can_view?).to be false + include_examples 'pii permission checks without access' + + context 'when user has "can_view_clients" permission' do + let(:permissions) do + { + can_view_clients: true, + can_view_client_name: true, + can_view_full_ssn: true, + can_view_full_dob: false, + } + end + it 'has expected PII permissions' do + expect(policy.can_view_name?).to be true + expect(policy.can_view_full_ssn?).to be true + expect(policy.can_view_full_dob?).to be false + end + end + + context 'when user has "can_search_all_clients" permission' do + let(:permissions) do + { + can_search_all_clients: true, + can_view_client_name: true, + can_view_full_ssn: true, + can_view_full_dob: false, + } + end + it 'has expected PII permissions' do + expect(policy.can_view_name?).to be true + expect(policy.can_view_full_ssn?).to be false + expect(policy.can_view_full_dob?).to be false + end end end end @@ -135,9 +163,7 @@ allow(GrdaWarehouse::Config).to receive(:get).with(:window_access_requires_release).and_return(false) end - it 'grants access through window data source' do - expect(policy.can_view_name?).to be true - end + include_examples 'pii permission checks with access' end end end @@ -179,9 +205,7 @@ context 'with window data source' do let(:policy) { user.policy_for(window_client) } - it 'denies access' do - expect(policy.can_view_name?).to be false - end + include_examples 'pii permission checks without access' end end end diff --git a/spec/models/grda_warehouse/tasks/generate_client_roi_authorizations_task_spec.rb b/spec/models/grda_warehouse/tasks/generate_client_roi_authorizations_task_spec.rb index 60ffa54001..1f355787b2 100644 --- a/spec/models/grda_warehouse/tasks/generate_client_roi_authorizations_task_spec.rb +++ b/spec/models/grda_warehouse/tasks/generate_client_roi_authorizations_task_spec.rb @@ -1,81 +1,153 @@ -# spec/models/grda_warehouse/tasks/generate_client_roi_authorizations_task_spec.rb require 'rails_helper' RSpec.describe GrdaWarehouse::Tasks::GenerateClientRoiAuthorizationsTask, type: :model do let(:task) { described_class.new } + let(:today) { Date.current } - describe '#process_client' do - let(:client) { create(:hud_client) } + # Shared contexts for common test setups + shared_context 'with release duration settings' do |duration, period = nil| + before do + allow(GrdaWarehouse::Hud::Client).to receive(:release_duration).and_return(duration) + allow(GrdaWarehouse::Hud::Client).to receive(:consent_validity_period).and_return(period) if period + end + end - context 'when client has valid release' do - before do - allow(client).to receive(:release_valid?).and_return(true) - allow(client).to receive(:revoked_consent?).and_return(false) - allow(client).to receive(:partial_release?).and_return(false) - end + describe '#perform' do + let!(:destination_clients) do + 5.times.map { create(:hud_client, consent_form_signed_on: today) } + end + + # set a batch size lower than total number of clients to check interactions + let(:batch_size) { 3 } + + before do + allow(task).to receive(:roi_status).and_return('full_status') + end - it 'returns authorization attributes with full status' do - result = task.send(:process_client, client) - expect(result[:status]).to eq(GrdaWarehouse::ClientRoiAuthorization::FULL_STATUS) + context 'with no existing ROI records' do + it 'creates appropriate auth records' do + expect do + task.perform(batch_size: batch_size) + end.to change { GrdaWarehouse::ClientRoiAuthorization.count }.by(5) end end - context 'when client has revoked consent' do + context 'with existing ROI records' do before do - allow(client).to receive(:revoked_consent?).and_return(true) + destination_clients.map do |client| + GrdaWarehouse::ClientRoiAuthorization.create!( + destination_client_id: client.id, + status: 'full_status', + ) + end end - it 'returns authorization attributes with revoked status' do - result = task.send(:process_client, client) - expect(result[:status]).to eq(GrdaWarehouse::ClientRoiAuthorization::REVOKED_STATUS) + it 'does not change valid records' do + expect do + task.perform(batch_size: batch_size) + end.to(not_change { GrdaWarehouse::ClientRoiAuthorization.count }) end - end - context 'when client has partial release' do - before do - allow(client).to receive(:revoked_consent?).and_return(false) - allow(client).to receive(:partial_release?).and_return(true) + context 'when a client is orphaned' do + before do + GrdaWarehouse::Hud::Client.where(id: destination_clients.last.id).delete_all + end + + it 'removes the orphaned auth record' do + expect do + task.perform(batch_size: batch_size) + end.to change { GrdaWarehouse::ClientRoiAuthorization.count }.by(-1) + end end - it 'returns authorization attributes with partial status' do - result = task.send(:process_client, client) - expect(result[:status]).to eq(GrdaWarehouse::ClientRoiAuthorization::PARTIAL_STATUS) + context 'when client loses roi status' do + before do + allow(task).to receive(:roi_status) do |client| + client.id == destination_clients.last.id ? nil : 'full_status' + end + end + + it 'removes the auth record' do + expect do + task.perform(batch_size: batch_size) + end.to change { GrdaWarehouse::ClientRoiAuthorization.count }.by(-1) + end end end end - describe '#roi_expiry_date' do - let(:client) { create(:hud_client, consent_form_signed_on: Date.current) } + describe '#process_client' do + let(:client) { create(:hud_client, consent_form_signed_on: today) } + subject(:processed_result) { task.send(:process_client, client) } - context 'when release duration is One Year' do - before do - allow(GrdaWarehouse::Hud::Client).to receive(:release_duration).and_return('One Year') - allow(GrdaWarehouse::Hud::Client).to receive(:consent_validity_period).and_return(1.year) - end + context 'with different release statuses' do + [ + { + scenario: 'full release', + release_valid: true, + revoked_consent: false, + partial_release: false, + expected_status: 'full', + }, + { + scenario: 'revoked consent', + release_valid: false, + revoked_consent: true, + partial_release: false, + expected_status: 'revoked', + }, + { + scenario: 'partial release', + release_valid: false, + revoked_consent: false, + partial_release: true, + expected_status: 'partial', + }, + ].each do |test_case| + context "when client has #{test_case[:scenario]}" do + before do + allow(client).to receive(:release_valid?).and_return(test_case[:release_valid]) + allow(client).to receive(:revoked_consent?).and_return(test_case[:revoked_consent]) + allow(client).to receive(:partial_release?).and_return(test_case[:partial_release]) + end - it 'returns date one year from signing' do - expect(task.send(:roi_expiry_date, client)).to eq(client.consent_form_signed_on + 1.year) + it 'returns correct status' do + expect(processed_result[:status]).to eq(test_case[:expected_status]) + end + end end end + end - context 'when release duration is Use Expiration Date' do - before do - allow(GrdaWarehouse::Hud::Client).to receive(:release_duration).and_return('Use Expiration Date') - client.consent_expires_on = Date.current + 6.months - end + describe '#roi_expiry_date' do + let(:client) { create(:hud_client, consent_form_signed_on: today) } + subject(:expiry_date) { task.send(:roi_expiry_date, client) } - it 'returns the explicit expiration date' do - expect(task.send(:roi_expiry_date, client)).to eq(client.consent_expires_on) - end + context 'with one year duration' do + include_context 'with release duration settings', 'One Year', 1.year + + it { is_expected.to eq(client.consent_form_signed_on + 1.year) } end - context 'when release duration is Indefinite' do - before do - allow(GrdaWarehouse::Hud::Client).to receive(:release_duration).and_return('Indefinite') - end + context 'with explicit expiration date' do + include_context 'with release duration settings', 'Use Expiration Date' + + before { client.consent_expires_on = today + 6.months } + + it { is_expected.to eq(client.consent_expires_on) } + end + + context 'with indefinite duration' do + include_context 'with release duration settings', 'Indefinite' + + it { is_expected.to be_nil } + end + + context 'with invalid duration' do + include_context 'with release duration settings', 'Invalid Duration' - it 'returns nil' do - expect(task.send(:roi_expiry_date, client)).to be_nil + it 'raises an error' do + expect { expiry_date }.to raise_error(/unknown release duration/) end end end diff --git a/spec/models/talentlms/facade_spec.rb b/spec/models/talentlms/facade_spec.rb index b966ed456d..b29e273916 100644 --- a/spec/models/talentlms/facade_spec.rb +++ b/spec/models/talentlms/facade_spec.rb @@ -73,6 +73,64 @@ end end + describe 'active_user?' do + it 'returns true if user is active and no api_response data is included' do + expect(lms.active_user?(config, lms_login)).to be_truthy + end + + it 'returns true if user is active in provided api response' do + api_stub_response = lms.get_lms_account_data(config, lms_login) + expect(lms.active_user?(nil, nil, api_stub_response)).to be_truthy + end + + it 'returns false if user is not active' do + stub_so_api_user_is_inactive(config: config) + expect(lms.active_user?(config, lms_login)).to be_falsey + end + + it 'returns false if user is not active in provided api response' do + stub_so_api_user_is_inactive(config: config) + api_stub_response = lms.get_lms_account_data(config, lms_login) + expect(lms.active_user?(nil, nil, api_stub_response)).to be_falsey + end + end + + describe 'get_lms_account_data' do + it 'returns api data when no login data is sent' do + expected = { + 'email' => DEFAULT_LMS_EMAIL, + 'login' => DEFAULT_LMS_USERNAME, + 'id' => DEFAULT_LMS_USER_ID, + 'status' => 'active', + } + response = lms.get_lms_account_data(config, nil) + expect(response).to eq(expected) + end + + it 'returns api data when local data exists that does not match api data' do + stub_so_api_user_does_not_matches_local_user(config: config) + expected = { + 'email' => UPDATED_LMS_EMAIL, + 'login' => UPDATED_LMS_USERNAME, + 'id' => UPDATED_LMS_USER_ID, + 'status' => 'active', + } + response = lms.get_lms_account_data(config, lms_login) + expect(response).to eq(expected) + end + + it 'returns api data when local data exists that matches api data' do + expected = { + 'email' => DEFAULT_LMS_EMAIL, + 'login' => DEFAULT_LMS_USERNAME, + 'id' => DEFAULT_LMS_USER_ID, + 'status' => 'active', + } + response = lms.get_lms_account_data(config, lms_login) + expect(response).to eq(expected) + end + end + describe 'sync_lms_account' do it 'local data remains the same when user data matches api data' do login = Talentlms::Login.where(user: user).first @@ -360,6 +418,7 @@ def setup_default_config_stubs(config:) 'email' => DEFAULT_LMS_EMAIL, 'login' => DEFAULT_LMS_USERNAME, 'id' => DEFAULT_LMS_USER_ID, + 'status' => 'active', }, ) @@ -371,6 +430,7 @@ def setup_default_config_stubs(config:) 'email' => DEFAULT_LMS_EMAIL, 'login' => DEFAULT_LMS_USERNAME, 'id' => DEFAULT_LMS_USER_ID, + 'status' => 'active', }, ) end @@ -395,6 +455,21 @@ def stub_so_api_user_does_not_matches_local_user(config:) 'email' => UPDATED_LMS_EMAIL, 'login' => UPDATED_LMS_USERNAME, 'id' => UPDATED_LMS_USER_ID, + 'status' => 'active', + }, + ) + end + + def stub_so_api_user_is_inactive(config:) + allow(config).to receive(:post).with( + 'users', + anything, + ).and_return( + { + 'email' => UPDATED_LMS_EMAIL, + 'login' => UPDATED_LMS_USERNAME, + 'id' => UPDATED_LMS_USER_ID, + 'status' => 'This is anything but "active"', }, ) end